* [bug#38128] [PATCH] gnu: Add boost-with-python3
@ 2019-11-08 10:59 goodoldpaul
2019-11-10 21:50 ` bug#38128: " Marius Bakke
0 siblings, 1 reply; 8+ messages in thread
From: goodoldpaul @ 2019-11-08 10:59 UTC (permalink / raw)
To: 38128
[-- Attachment #1: Type: text/plain, Size: 474 bytes --]
Hello Guixers!
Given the recent discussion about dropping python 2 completely I thought
it's time to build our libboost against python 3. I didn't have the time
to check if every boost dependency (there are a lot ;) ) supported
python 3, so I added a new variable "boost-with-python3". I'm not sure
if I should have made it hidden or if I should have update directly
boost definition so any feedback is welcome.
Thanks for your patience reviewing this patch,
Giacomo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-boost-with-python3.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-boost-with-python3.patch, Size: 4295 bytes --]
From 6eef72ea2bc904ff1371fbbe1211a3890625d99c Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Fri, 8 Nov 2019 11:52:42 +0100
Subject: [PATCH] gnu: Add boost-with-python3.
* gnu/packages/boost.scm (boost-with-python3): New variable.
---
gnu/packages/boost.scm | 55 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index a2253a9efc..4007c34993 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -128,6 +129,60 @@ across a broad spectrum of applications.")
(license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"
"Some components have other similar licences."))))
+(define-public boost-with-python3
+ (package
+ (inherit boost)
+ (source (origin
+ (inherit (package-source boost))))
+ (native-inputs
+ `(("perl" ,perl)
+ ("python" ,python)
+ ("tcsh" ,tcsh)))
+ (arguments (substitute-keyword-arguments (package-arguments boost)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (replace 'configure
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let ((icu (assoc-ref inputs "icu4c"))
+ (python (assoc-ref inputs "python"))
+ (out (assoc-ref outputs "out")))
+ (substitute* '("libs/config/configure"
+ "libs/spirit/classic/phoenix/test/runtest.sh"
+ "tools/build/src/engine/execunix.c"
+ "tools/build/src/engine/Jambase"
+ "tools/build/src/engine/jambase.c")
+ (("/bin/sh") (which "sh")))
+
+ (setenv "SHELL" (which "sh"))
+ (setenv "CONFIG_SHELL" (which "sh"))
+
+ (substitute* "tools/build/src/tools/python.jam"
+ (("include/python\\$\\(version\\)")
+ "include/python$(version)m"))
+
+ (invoke "./bootstrap.sh"
+ (string-append "--prefix=" out)
+ ;; Auto-detection looks for dependencies only
+ ;; in traditional install locations.
+ (string-append "--with-icu=" icu)
+ (string-append "--with-python=" python "/bin/python3")
+ (string-append "--with-python-root=" python)
+ "--with-python-version=3.7"
+ "--with-toolset=gcc"))))
+ (replace 'provide-libboost_python
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (with-directory-excursion (string-append out "/lib")
+ ;; Boost can build support for both Python 2 and Python 3 since
+ ;; version 1.67.0, and suffixes each library with the Python
+ ;; version. Many consumers only check for libboost_python
+ ;; however, so we provide it here as suggested in
+ ;; <https://github.com/boostorg/python/issues/203>.
+ (symlink "libboost_python37.so" "libboost_python.so")
+ ;; Some packages also look for libboost_python3.so
+ (symlink "libboost_python37.so" "libboost_python3.so"))
+ #t)))))))))
+
(define-public boost-for-mysql
;; Older version for MySQL 5.7.23.
(package
--
2.24.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#38128: [PATCH] gnu: Add boost-with-python3
2019-11-08 10:59 [bug#38128] [PATCH] gnu: Add boost-with-python3 goodoldpaul
@ 2019-11-10 21:50 ` Marius Bakke
2019-11-11 9:36 ` [bug#38128] " Efraim Flashner
0 siblings, 1 reply; 8+ messages in thread
From: Marius Bakke @ 2019-11-10 21:50 UTC (permalink / raw)
To: goodoldpaul, 38128-done
[-- Attachment #1: Type: text/plain, Size: 2459 bytes --]
Giacomo,
goodoldpaul@autistici.org writes:
> Hello Guixers!
>
> Given the recent discussion about dropping python 2 completely I thought
> it's time to build our libboost against python 3. I didn't have the time
> to check if every boost dependency (there are a lot ;) ) supported
> python 3, so I added a new variable "boost-with-python3". I'm not sure
> if I should have made it hidden or if I should have update directly
> boost definition so any feedback is welcome.
Thank you for this patch! Have you tried building anything with this
new Boost yet?
Boost has 4623 dependent packages according to 'guix refresh -l boost',
so we can not change the package definition on the master branch. Such
changes has to go through the 'core-updates' branch. Adding a separate
variable was the right choice.
It would be great if you could work on a follow-up patch for
'core-updates' that merges this variant with the regular 'Boost'. I
left that as a TODO comment. :-)
> From 6eef72ea2bc904ff1371fbbe1211a3890625d99c Mon Sep 17 00:00:00 2001
> From: Giacomo Leidi <goodoldpaul@autistici.org>
> Date: Fri, 8 Nov 2019 11:52:42 +0100
> Subject: [PATCH] gnu: Add boost-with-python3.
>
> * gnu/packages/boost.scm (boost-with-python3): New variable.
[...]
> +(define-public boost-with-python3
> + (package
> + (inherit boost)
> + (source (origin
> + (inherit (package-source boost))))
I removed this part, as the source is already inherited.
I also gave it a different name (boost-python3) to avoid a naming
conflict on the CLI.
[...]
> + (replace 'provide-libboost_python
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let ((out (assoc-ref outputs "out")))
> + (with-directory-excursion (string-append out "/lib")
> + ;; Boost can build support for both Python 2 and Python 3 since
> + ;; version 1.67.0, and suffixes each library with the Python
> + ;; version. Many consumers only check for libboost_python
> + ;; however, so we provide it here as suggested in
> + ;; <https://github.com/boostorg/python/issues/203>.
...and dropped this comment, since it is already explained in the
regular Boost package.
Applied, thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#38128] [PATCH] gnu: Add boost-with-python3
2019-11-10 21:50 ` bug#38128: " Marius Bakke
@ 2019-11-11 9:36 ` Efraim Flashner
2019-11-12 0:06 ` goodoldpaul
0 siblings, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2019-11-11 9:36 UTC (permalink / raw)
To: 38128, mbakke, goodoldpaul
[-- Attachment #1.1: Type: text/plain, Size: 576 bytes --]
I'm going to re-open this one, sorry.
Can we replace the '--with-python-version=3.7' and 'libboost_python37.so'
with parameterized python variables so we don't have to bump it when we
get a new python version?
Also, I've attached a package that I've never actually built that uses
boost built with python3 if you want something to test it out with :)
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #1.2: epour.scm --]
[-- Type: text/plain, Size: 4839 bytes --]
;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is an addendum to GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (wip epour)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
#:use-module (gnu packages bittorrent)
#:use-module (gnu packages boost)
#:use-module (gnu packages enlightenment)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages glib) ; intltool
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (srfi srfi-1))
(define-public epour
(package
(name "epour")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://download.enlightenment.org/rel/apps/epour"
"/epour-" version ".tar.xz"))
(sha256
(base32
"0g9f9p01hsq6dcf4cs1pwq95g6fpkyjgwqlvdjk1km1i5gj5ygqw"))))
(build-system python-build-system)
(arguments
`(#:tests? #f ; no test target
#:phases
(modify-phases %standard-phases
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(invoke "python" "setup.py" "install" (string-append "--prefix=" out))
#t))))))
(native-inputs `(("intltool" ,intltool)))
(propagated-inputs
`(("libtorrent-rasterbar-local" ,libtorrent-rasterbar-local)
("python-dbus" ,python-dbus)
("python-distutils-extra" ,python-distutils-extra)
("python-efl" ,python-efl)
;("python-parse" ,python-parse)
("python-pyxdg" ,python-pyxdg)
;("python-urllib3" ,python-urllib3)
))
(home-page "https://www.enlightenment.org")
(synopsis "EFL Bittorrent client")
(description "Epour is a BitTorrent client based on the @dfn{Enlightenment
Foundation Libraries} (EFL) and rb-libtorrent.")
(license license:gpl3+)))
(define libtorrent-rasterbar-local
(package
(inherit libtorrent-rasterbar)
(inputs
`(("boost" ,boost-with-python3)
,@(alist-delete "boost"
(package-inputs libtorrent-rasterbar))))
(native-inputs
`(("python" ,python-3)
,@(alist-delete "python"
(package-native-inputs libtorrent-rasterbar))))))
(define boost-local
(package
(inherit boost)
(arguments
`(#:imported-modules (,@%gnu-build-system-modules
(guix build python-build-system))
,@(substitute-keyword-arguments (package-arguments boost)
((#:phases phases)
`(modify-phases ,phases
(replace 'provide-libboost_python
(lambda* (#:key outputs inputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(py-version ((@@ (guix build python-build-system)
get-python-version) (assoc-ref inputs "python")))
(py-suffix (string-join (string-split py-version #\.) "")))
;; Boost can build support for both Python 2 and Python 3 since
;; version 1.67.0, and suffixes each library with the Python
;; version. Many consumers only check for libboost_python
;; however, so we provide it here as suggested in
;; <https://github.com/boostorg/python/issues/203>.
(with-directory-excursion (string-append out "/lib")
(symlink (string-append "libboost_python" py-suffix ".so")
"libboost_python.so"))
#t))))))))
(native-inputs
`(("python" ,python-wrapper)
,@(alist-delete "python"
(package-native-inputs boost))))))
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#38128] [PATCH] gnu: Add boost-with-python3
2019-11-11 9:36 ` [bug#38128] " Efraim Flashner
@ 2019-11-12 0:06 ` goodoldpaul
2019-11-16 9:04 ` [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3 goodoldpaul
0 siblings, 1 reply; 8+ messages in thread
From: goodoldpaul @ 2019-11-12 0:06 UTC (permalink / raw)
To: Efraim Flashner; +Cc: mbakke, 38128
[-- Attachment #1: Type: text/plain, Size: 1369 bytes --]
On 2019-11-11 09:36, Efraim Flashner wrote:
> I'm going to re-open this one, sorry.
>
> Can we replace the '--with-python-version=3.7' and
> 'libboost_python37.so'
> with parameterized python variables so we don't have to bump it when we
> get a new python version?
>
> Also, I've attached a package that I've never actually built that uses
> boost built with python3 if you want something to test it out with :)
I'm not sure how to send a patch for core-updates, I never did it so I
attached it here. Please tell me if I should open another patch.
The patch builds boost with python3 and parameterizes the python
version, as Efraim suggested. I built it successfully on core updates.
When I tried building Epour on core-updates and saw that Guix was
starting to build Bash 5.0 I renounced (:D) and I built it on master
with boost-with-python3 .
Libtorrent-rasterbar seems to build fine on master but some tests fail
to pass and they all seem to be network related but then again this is
torrent we are talking about. I didn't investigate further but I attach
the log.
I also tried boost-with-python3 with Malmo (
https://github.com/microsoft/malmo ) and it seemed to compile fine just
but that package has other problems such as trying to start gradle so I
nerver managed to actually run it.
Let me know what you think about the patch,
Bye
Giacomo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-boost-Build-with-python3.patch --]
[-- Type: text/x-diff; name=0001-gnu-boost-Build-with-python3.patch, Size: 4232 bytes --]
From 91a25fb143ad0e2e20e8ddadea0c0610849adf92 Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Tue, 12 Nov 2019 00:24:49 +0100
Subject: [PATCH] gnu: boost: Build with python3.
* gnu/packages/boost.scm (boost):
[arguments]: Parameterize python version.
[native-inputs]: Use python3.
---
gnu/packages/boost.scm | 41 +++++++++++++++++++++++++++++------------
1 file changed, 29 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index a2253a9efc..389fd1fdb6 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -62,10 +62,13 @@
("zlib" ,zlib)))
(native-inputs
`(("perl" ,perl)
- ("python" ,python-2)
+ ("python" ,python)
("tcsh" ,tcsh)))
(arguments
- `(#:tests? #f
+ `(#:modules ((guix build gnu-build-system)
+ (guix build utils)
+ (srfi srfi-1))
+ #:tests? #f
#:make-flags
(list "threading=multi" "link=shared"
@@ -83,6 +86,9 @@
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((icu (assoc-ref inputs "icu4c"))
+ (python (assoc-ref inputs "python"))
+ (python-version
+ (take (string-split ,(package-version python) #\.) 2))
(out (assoc-ref outputs "out")))
(substitute* '("libs/config/configure"
"libs/spirit/classic/phoenix/test/runtest.sh"
@@ -94,11 +100,19 @@
(setenv "SHELL" (which "sh"))
(setenv "CONFIG_SHELL" (which "sh"))
+ (substitute* "tools/build/src/tools/python.jam"
+ (("include/python\\$\\(version\\)")
+ "include/python$(version)m"))
+
(invoke "./bootstrap.sh"
(string-append "--prefix=" out)
- ;; Auto-detection looks for ICU only in traditional
- ;; install locations.
+ ;; Auto-detection looks for dependencies only
+ ;; in traditional install locations.
(string-append "--with-icu=" icu)
+ (string-append "--with-python=" python "/bin/python3")
+ (string-append "--with-python-root=" python)
+ (string-append "--with-python-version="
+ (string-join python-version "."))
"--with-toolset=gcc"))))
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
@@ -109,15 +123,18 @@
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2" "install" make-flags)))
(add-after 'install 'provide-libboost_python
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- ;; Boost can build support for both Python 2 and Python 3 since
- ;; version 1.67.0, and suffixes each library with the Python
- ;; version. Many consumers only check for libboost_python
- ;; however, so we provide it here as suggested in
- ;; <https://github.com/boostorg/python/issues/203>.
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (python (assoc-ref inputs "python"))
+ (python-version
+ (take (string-split ,(package-version python) #\.) 2))
+ (libboost.so (string-append "libboost_python"
+ (string-join python-version "")
+ ".so")))
(with-directory-excursion (string-append out "/lib")
- (symlink "libboost_python27.so" "libboost_python.so"))
+ (symlink libboost.so "libboost_python.so")
+ ;; Some packages also look for libboost_python3.so
+ (symlink libboost.so "libboost_python3.so"))
#t))))))
(home-page "https://www.boost.org")
--
2.24.0
[-- Attachment #3: epour.log --]
[-- Type: text/plain, Size: 300558 bytes --]
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/bin'
environment variable `PYTHONPATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/python3.7/site-packages'
environment variable `PKG_CONFIG_PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/pkgconfig:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib/pkgconfig:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib/pkgconfig'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `CPATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/include:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/include:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/include:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/include:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/include:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/include:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/include:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/include:/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/include:/gnu/store/7czrqpi0kwazras6pgyx0bhdn89pg0jl-linux-libre-headers-4.19.56/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/lib:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/lib:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/lib:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/lib:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/lib:/gnu/store/qky1x5bb2jygy58bn6y95ygfsmpakf52-glibc-2.29-static/lib:/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib:/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib/locale'
environment variable `SSL_CERT_DIR' unset
environment variable `SSL_CERT_FILE' unset
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
libtorrent-rasterbar-1.1.13/
libtorrent-rasterbar-1.1.13/docs/
libtorrent-rasterbar-1.1.13/docs/stats_counters.rst
libtorrent-rasterbar-1.1.13/docs/index.rst
libtorrent-rasterbar-1.1.13/docs/reference-Bencoding.html
libtorrent-rasterbar-1.1.13/docs/python_binding.rst
libtorrent-rasterbar-1.1.13/docs/tutorial.html
libtorrent-rasterbar-1.1.13/docs/ip_id_v4.png
libtorrent-rasterbar-1.1.13/docs/dht_extensions.rst
libtorrent-rasterbar-1.1.13/docs/our_delay_base_thumb.png
libtorrent-rasterbar-1.1.13/docs/troubleshooting.rst
libtorrent-rasterbar-1.1.13/docs/projects.html
libtorrent-rasterbar-1.1.13/docs/merkle_tree.png
libtorrent-rasterbar-1.1.13/docs/dht_sec.rst
libtorrent-rasterbar-1.1.13/docs/rst.css
libtorrent-rasterbar-1.1.13/docs/todo.html
libtorrent-rasterbar-1.1.13/docs/tuning.rst
libtorrent-rasterbar-1.1.13/docs/examples.html
libtorrent-rasterbar-1.1.13/docs/reference-Settings.html
libtorrent-rasterbar-1.1.13/docs/our_delay_base.png
libtorrent-rasterbar-1.1.13/docs/tutorial.rst
libtorrent-rasterbar-1.1.13/docs/reference-Utility.html
libtorrent-rasterbar-1.1.13/docs/client_test.html
libtorrent-rasterbar-1.1.13/docs/complete_bit_prefixes.png
libtorrent-rasterbar-1.1.13/docs/streaming.rst
libtorrent-rasterbar-1.1.13/docs/manual-ref.rst
libtorrent-rasterbar-1.1.13/docs/read_disk_buffers.diagram
libtorrent-rasterbar-1.1.13/docs/troubleshooting.dot
libtorrent-rasterbar-1.1.13/docs/storage.png
libtorrent-rasterbar-1.1.13/docs/cwnd_thumb.png
libtorrent-rasterbar-1.1.13/docs/tuning.html
libtorrent-rasterbar-1.1.13/docs/reference-Alerts.html
libtorrent-rasterbar-1.1.13/docs/dht_store.rst
libtorrent-rasterbar-1.1.13/docs/contributing.rst
libtorrent-rasterbar-1.1.13/docs/ip_id_v6.png
libtorrent-rasterbar-1.1.13/docs/contributing.html
libtorrent-rasterbar-1.1.13/docs/img/
libtorrent-rasterbar-1.1.13/docs/img/blue_bottom.png
libtorrent-rasterbar-1.1.13/docs/img/bg.png
libtorrent-rasterbar-1.1.13/docs/img/orange.png
libtorrent-rasterbar-1.1.13/docs/img/dotline.gif
libtorrent-rasterbar-1.1.13/docs/img/minus.gif
libtorrent-rasterbar-1.1.13/docs/img/blue_top.png
libtorrent-rasterbar-1.1.13/docs/python_binding.html
libtorrent-rasterbar-1.1.13/docs/troubleshooting.png
libtorrent-rasterbar-1.1.13/docs/reference-ed25519.html
libtorrent-rasterbar-1.1.13/docs/examples.rst
libtorrent-rasterbar-1.1.13/docs/reference-Storage.html
libtorrent-rasterbar-1.1.13/docs/manual-ref.html
libtorrent-rasterbar-1.1.13/docs/reference-Plugins.html
libtorrent-rasterbar-1.1.13/docs/reference.html
libtorrent-rasterbar-1.1.13/docs/dht_extensions.html
libtorrent-rasterbar-1.1.13/docs/single-page-ref.html
libtorrent-rasterbar-1.1.13/docs/reference-Filter.html
libtorrent-rasterbar-1.1.13/docs/building.html
libtorrent-rasterbar-1.1.13/docs/reference-Bdecoding.html
libtorrent-rasterbar-1.1.13/docs/utp.html
libtorrent-rasterbar-1.1.13/docs/features.rst
libtorrent-rasterbar-1.1.13/docs/dht_store.html
libtorrent-rasterbar-1.1.13/docs/projects.rst
libtorrent-rasterbar-1.1.13/docs/features.html
libtorrent-rasterbar-1.1.13/docs/bitcoin.png
libtorrent-rasterbar-1.1.13/docs/write_disk_buffers.diagram
libtorrent-rasterbar-1.1.13/docs/read_disk_buffers.png
libtorrent-rasterbar-1.1.13/docs/settings.rst
libtorrent-rasterbar-1.1.13/docs/reference-Create_Torrents.html
libtorrent-rasterbar-1.1.13/docs/utp_stack.diagram
libtorrent-rasterbar-1.1.13/docs/troubleshooting_thumb.png
libtorrent-rasterbar-1.1.13/docs/reference-Error_Codes.html
libtorrent-rasterbar-1.1.13/docs/building.rst
libtorrent-rasterbar-1.1.13/docs/dht_sec.html
libtorrent-rasterbar-1.1.13/docs/troubleshooting.html
libtorrent-rasterbar-1.1.13/docs/udp_tracker_protocol.html
libtorrent-rasterbar-1.1.13/docs/reference-Custom_Storage.html
libtorrent-rasterbar-1.1.13/docs/index.html
libtorrent-rasterbar-1.1.13/docs/delays.png
libtorrent-rasterbar-1.1.13/docs/disk_cache.diagram
libtorrent-rasterbar-1.1.13/docs/hash_distribution.png
libtorrent-rasterbar-1.1.13/docs/udp_tracker_protocol.rst
libtorrent-rasterbar-1.1.13/docs/extension_protocol.rst
libtorrent-rasterbar-1.1.13/docs/extension_protocol.html
libtorrent-rasterbar-1.1.13/docs/write_disk_buffers.png
libtorrent-rasterbar-1.1.13/docs/delays_thumb.png
libtorrent-rasterbar-1.1.13/docs/style.css
libtorrent-rasterbar-1.1.13/docs/dht_rss.rst
libtorrent-rasterbar-1.1.13/docs/client_test.rst
libtorrent-rasterbar-1.1.13/docs/hacking.diagram
libtorrent-rasterbar-1.1.13/docs/utp.rst
libtorrent-rasterbar-1.1.13/docs/hacking.png
libtorrent-rasterbar-1.1.13/docs/hacking.html
libtorrent-rasterbar-1.1.13/docs/disk_cache.png
libtorrent-rasterbar-1.1.13/docs/streaming.html
libtorrent-rasterbar-1.1.13/docs/client_test.png
libtorrent-rasterbar-1.1.13/docs/cwnd.png
libtorrent-rasterbar-1.1.13/docs/dht_rss.html
libtorrent-rasterbar-1.1.13/docs/reference-Core.html
libtorrent-rasterbar-1.1.13/docs/utp_stack.png
libtorrent-rasterbar-1.1.13/LibtorrentRasterbarConfig.cmake.in
libtorrent-rasterbar-1.1.13/cmake/
libtorrent-rasterbar-1.1.13/cmake/Modules/
libtorrent-rasterbar-1.1.13/cmake/Modules/ucm_flags.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/FindLibGcrypt.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/LibtorrentMacros.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/pkg-config.cmake.in
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/target-compile-settings.cmake.in
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/generate-pkg-config.cmake.in
libtorrent-rasterbar-1.1.13/configure.ac
libtorrent-rasterbar-1.1.13/build-aux/
libtorrent-rasterbar-1.1.13/build-aux/missing
libtorrent-rasterbar-1.1.13/build-aux/config.guess
libtorrent-rasterbar-1.1.13/build-aux/ltmain.sh
libtorrent-rasterbar-1.1.13/build-aux/depcomp
libtorrent-rasterbar-1.1.13/build-aux/config.sub
libtorrent-rasterbar-1.1.13/build-aux/config.rpath
libtorrent-rasterbar-1.1.13/build-aux/compile
libtorrent-rasterbar-1.1.13/build-aux/test-driver
libtorrent-rasterbar-1.1.13/build-aux/install-sh
libtorrent-rasterbar-1.1.13/bindings/
libtorrent-rasterbar-1.1.13/bindings/README.txt
libtorrent-rasterbar-1.1.13/bindings/python/
libtorrent-rasterbar-1.1.13/bindings/python/compile_flags.in
libtorrent-rasterbar-1.1.13/bindings/python/client.py
libtorrent-rasterbar-1.1.13/bindings/python/setup.py
libtorrent-rasterbar-1.1.13/bindings/python/make_torrent.py
libtorrent-rasterbar-1.1.13/bindings/python/setup.py.cmake.in
libtorrent-rasterbar-1.1.13/bindings/python/Jamfile
libtorrent-rasterbar-1.1.13/bindings/python/Makefile.am
libtorrent-rasterbar-1.1.13/bindings/python/CMakeLists.txt
libtorrent-rasterbar-1.1.13/bindings/python/simple_client.py
libtorrent-rasterbar-1.1.13/bindings/python/link_flags.in
libtorrent-rasterbar-1.1.13/bindings/python/src/
libtorrent-rasterbar-1.1.13/bindings/python/src/optional.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/version.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/utility.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/gil.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/string.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/alert.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/module.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/bytes.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.cpp
libtorrent-rasterbar-1.1.13/bindings/python/Makefile.in
libtorrent-rasterbar-1.1.13/bindings/Makefile.am
libtorrent-rasterbar-1.1.13/bindings/CMakeLists.txt
libtorrent-rasterbar-1.1.13/bindings/Makefile.in
libtorrent-rasterbar-1.1.13/m4/
libtorrent-rasterbar-1.1.13/m4/libtool.m4
libtorrent-rasterbar-1.1.13/m4/ltversion.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_base.m4
libtorrent-rasterbar-1.1.13/m4/lt~obsolete.m4
libtorrent-rasterbar-1.1.13/m4/ax_python_devel.m4
libtorrent-rasterbar-1.1.13/m4/iconv.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_python.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_random.m4
libtorrent-rasterbar-1.1.13/m4/gettext-lib.m4
libtorrent-rasterbar-1.1.13/m4/ax_check_openssl.m4
libtorrent-rasterbar-1.1.13/m4/ltoptions.m4
libtorrent-rasterbar-1.1.13/m4/pkgconfig.m4
libtorrent-rasterbar-1.1.13/m4/ltsugar.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_chrono.m4
libtorrent-rasterbar-1.1.13/m4/ax_pthread.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_system.m4
libtorrent-rasterbar-1.1.13/COPYING
libtorrent-rasterbar-1.1.13/tools/
libtorrent-rasterbar-1.1.13/tools/parse_session_stats.py
libtorrent-rasterbar-1.1.13/tools/parse_peer_log.py
libtorrent-rasterbar-1.1.13/tools/parse_sample.py
libtorrent-rasterbar-1.1.13/tools/parse_buffer_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_stats.py
libtorrent-rasterbar-1.1.13/tools/parse_disk_log.py
libtorrent-rasterbar-1.1.13/tools/Jamfile
libtorrent-rasterbar-1.1.13/tools/parse_disk_buffer_log.py
libtorrent-rasterbar-1.1.13/tools/Makefile.am
libtorrent-rasterbar-1.1.13/tools/parse_utp_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_rtt.py
libtorrent-rasterbar-1.1.13/tools/parse_bandwidth_log.py
libtorrent-rasterbar-1.1.13/tools/parse_memory_log.py
libtorrent-rasterbar-1.1.13/tools/Makefile.in
libtorrent-rasterbar-1.1.13/configure
libtorrent-rasterbar-1.1.13/libtorrent-rasterbar.pc.in
libtorrent-rasterbar-1.1.13/setup.py
libtorrent-rasterbar-1.1.13/NEWS
libtorrent-rasterbar-1.1.13/test/
libtorrent-rasterbar-1.1.13/test/setup_transfer.cpp
libtorrent-rasterbar-1.1.13/test/test_checking.cpp
libtorrent-rasterbar-1.1.13/test/swarm_suite.hpp
libtorrent-rasterbar-1.1.13/test/test_primitives.cpp
libtorrent-rasterbar-1.1.13/test/main.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_http.cpp
libtorrent-rasterbar-1.1.13/test/test_ip_voter.cpp
libtorrent-rasterbar-1.1.13/test/test_resume.cpp
libtorrent-rasterbar-1.1.13/test/test_ssl.cpp
libtorrent-rasterbar-1.1.13/test/test_peer_list.cpp
libtorrent-rasterbar-1.1.13/test/swarm_suite.cpp
libtorrent-rasterbar-1.1.13/test/test_auto_unchoke.cpp
libtorrent-rasterbar-1.1.13/test/test_ip_filter.cpp
libtorrent-rasterbar-1.1.13/test/test_piece_picker.cpp
libtorrent-rasterbar-1.1.13/test/settings.hpp
libtorrent-rasterbar-1.1.13/test/test_linked_list.cpp
libtorrent-rasterbar-1.1.13/test/test_tracker.cpp
libtorrent-rasterbar-1.1.13/test/test_packet_buffer.cpp
libtorrent-rasterbar-1.1.13/test/test_remap_files.cpp
libtorrent-rasterbar-1.1.13/test/test_string.cpp
libtorrent-rasterbar-1.1.13/test/test_timestamp_history.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5_pw.cpp
libtorrent-rasterbar-1.1.13/test/test_buffer.cpp
libtorrent-rasterbar-1.1.13/test/settings.cpp
libtorrent-rasterbar-1.1.13/test/peer_server.cpp
libtorrent-rasterbar-1.1.13/test/test_random.cpp
libtorrent-rasterbar-1.1.13/test/test_bandwidth_limiter.cpp
libtorrent-rasterbar-1.1.13/test/test_torrents/
libtorrent-rasterbar-1.1.13/test/test_torrents/symlink_zero_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/missing_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_path_multi.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/unordered.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/hidden_parent_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/unaligned_pieces.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/creation_date.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/string.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_root_hash2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi_space.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/symlink1.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_symlink.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/httpseed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/no_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/base.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_httpseed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/parent_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_root_hash.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_pieces.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/whitespace_url.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/no_creation_date.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/backslash_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_filename.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_merkle.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/duplicate_files.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/missing_path_list.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi_space_nolist.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/pad_file_no_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/duplicate_web_seeds.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/pad_file.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_file_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_file_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_filename2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/root_hash.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/single_multi_file.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/long_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/sample.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_info.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_path_list.torrent
libtorrent-rasterbar-1.1.13/test/test_ed25519.cpp
libtorrent-rasterbar-1.1.13/test/test_upnp.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_http_pw.cpp
libtorrent-rasterbar-1.1.13/test/http.py
libtorrent-rasterbar-1.1.13/test/test_gzip.cpp
libtorrent-rasterbar-1.1.13/test/dht_server.cpp
libtorrent-rasterbar-1.1.13/test/udp_tracker.cpp
libtorrent-rasterbar-1.1.13/test/test_url_seed.cpp
libtorrent-rasterbar-1.1.13/test/test_direct_dht.cpp
libtorrent-rasterbar-1.1.13/test/make_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_http_connection.cpp
libtorrent-rasterbar-1.1.13/test/bdecode_benchmark.cpp
libtorrent-rasterbar-1.1.13/test/test_merkle.cpp
libtorrent-rasterbar-1.1.13/test/enum_if.cpp
libtorrent-rasterbar-1.1.13/test/zeroes.gz
libtorrent-rasterbar-1.1.13/test/udp_tracker.hpp
libtorrent-rasterbar-1.1.13/test/web_server.py
libtorrent-rasterbar-1.1.13/test/test_identify_client.cpp
libtorrent-rasterbar-1.1.13/test/test_tailqueue.cpp
libtorrent-rasterbar-1.1.13/test/test_xml.cpp
libtorrent-rasterbar-1.1.13/test/corrupt.gz
libtorrent-rasterbar-1.1.13/test/test.cpp
libtorrent-rasterbar-1.1.13/test/make_torrent.hpp
libtorrent-rasterbar-1.1.13/test/test_http_parser.cpp
libtorrent-rasterbar-1.1.13/test/test_priority.cpp
libtorrent-rasterbar-1.1.13/test/test_file_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_bdecode.cpp
libtorrent-rasterbar-1.1.13/test/test_stat_cache.cpp
libtorrent-rasterbar-1.1.13/test/test_stack_allocator.cpp
libtorrent-rasterbar-1.1.13/test/bittorrent_peer.cpp
libtorrent-rasterbar-1.1.13/test/web_seed_suite.hpp
libtorrent-rasterbar-1.1.13/test/test_peer_priority.cpp
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_single.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_single_padded.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test2_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test3.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test2.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test3_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1.torrent
libtorrent-rasterbar-1.1.13/test/dht_server.hpp
libtorrent-rasterbar-1.1.13/test/utf8_test.txt
libtorrent-rasterbar-1.1.13/test/test_pex.cpp
libtorrent-rasterbar-1.1.13/test/print_alerts.hpp
libtorrent-rasterbar-1.1.13/test/test_pe_crypto.cpp
libtorrent-rasterbar-1.1.13/test/bittorrent_peer.hpp
libtorrent-rasterbar-1.1.13/test/test_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_magnet.cpp
libtorrent-rasterbar-1.1.13/test/test_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_socket_io.cpp
libtorrent-rasterbar-1.1.13/test/test_torrent_info.cpp
libtorrent-rasterbar-1.1.13/test/test_block_cache.cpp
libtorrent-rasterbar-1.1.13/test/test_fast_extension.cpp
libtorrent-rasterbar-1.1.13/test/test_utp.cpp
libtorrent-rasterbar-1.1.13/test/test_utils.hpp
libtorrent-rasterbar-1.1.13/test/test_heterogeneous_queue.cpp
libtorrent-rasterbar-1.1.13/test/test_threads.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_chunked.cpp
libtorrent-rasterbar-1.1.13/test/test_utils.cpp
libtorrent-rasterbar-1.1.13/test/test_sha1_hash.cpp
libtorrent-rasterbar-1.1.13/test/test_time.cpp
libtorrent-rasterbar-1.1.13/test/Jamfile
libtorrent-rasterbar-1.1.13/test/test_file_progress.cpp
libtorrent-rasterbar-1.1.13/test/test_file.cpp
libtorrent-rasterbar-1.1.13/test/Makefile.am
libtorrent-rasterbar-1.1.13/test/test_sliding_average.cpp
libtorrent-rasterbar-1.1.13/test/test_bloom_filter.cpp
libtorrent-rasterbar-1.1.13/test/setup_transfer.hpp
libtorrent-rasterbar-1.1.13/test/test_create_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_bitfield.cpp
libtorrent-rasterbar-1.1.13/test/CMakeLists.txt
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5_no_peers.cpp
libtorrent-rasterbar-1.1.13/test/test_privacy.cpp
libtorrent-rasterbar-1.1.13/test/test_peer_classes.cpp
libtorrent-rasterbar-1.1.13/test/socks.py
libtorrent-rasterbar-1.1.13/test/test_hasher.cpp
libtorrent-rasterbar-1.1.13/test/test_session.cpp
libtorrent-rasterbar-1.1.13/test/print_alerts.cpp
libtorrent-rasterbar-1.1.13/test/test_crc32.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_ban.cpp
libtorrent-rasterbar-1.1.13/test/test_lsd.cpp
libtorrent-rasterbar-1.1.13/test/test_settings_pack.cpp
libtorrent-rasterbar-1.1.13/test/test_dht.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5.cpp
libtorrent-rasterbar-1.1.13/test/test_dos_blocker.cpp
libtorrent-rasterbar-1.1.13/test/peer_server.hpp
libtorrent-rasterbar-1.1.13/test/test_alert_manager.cpp
libtorrent-rasterbar-1.1.13/test/test_bencoding.cpp
libtorrent-rasterbar-1.1.13/test/test_resolve_links.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks4.cpp
libtorrent-rasterbar-1.1.13/test/test_recheck.cpp
libtorrent-rasterbar-1.1.13/test/test_utf8.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_redirect.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed.cpp
libtorrent-rasterbar-1.1.13/test/web_seed_suite.cpp
libtorrent-rasterbar-1.1.13/test/test_remove_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_enum_net.cpp
libtorrent-rasterbar-1.1.13/test/test_read_piece.cpp
libtorrent-rasterbar-1.1.13/test/test_transfer.cpp
libtorrent-rasterbar-1.1.13/test/test_part_file.cpp
libtorrent-rasterbar-1.1.13/test/test_receive_buffer.cpp
libtorrent-rasterbar-1.1.13/test/test.hpp
libtorrent-rasterbar-1.1.13/test/Makefile.in
libtorrent-rasterbar-1.1.13/test/test_dht_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_fence.cpp
libtorrent-rasterbar-1.1.13/test/test_time_critical.cpp
libtorrent-rasterbar-1.1.13/ChangeLog
libtorrent-rasterbar-1.1.13/Jamroot.jam
libtorrent-rasterbar-1.1.13/ed25519/
libtorrent-rasterbar-1.1.13/ed25519/test.c
libtorrent-rasterbar-1.1.13/ed25519/src/
libtorrent-rasterbar-1.1.13/ed25519/src/sha512.h
libtorrent-rasterbar-1.1.13/ed25519/src/fe.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/sign.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/fixedint.h
libtorrent-rasterbar-1.1.13/ed25519/src/ge.h
libtorrent-rasterbar-1.1.13/ed25519/src/sc.h
libtorrent-rasterbar-1.1.13/ed25519/src/sc.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/ge.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/precomp_data.h
libtorrent-rasterbar-1.1.13/ed25519/src/add_scalar.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/sha512.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/verify.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/seed.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/key_exchange.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/keypair.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/fe.h
libtorrent-rasterbar-1.1.13/ed25519/readme.md
libtorrent-rasterbar-1.1.13/README.rst
libtorrent-rasterbar-1.1.13/include/
libtorrent-rasterbar-1.1.13/include/libtorrent/
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/escape_string.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/alert_manager_variadic_emplace.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/cpuid.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_impl.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/disable_warnings_pop.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/openssl.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/proxy_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/time.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/byteswap.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/merkle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/route.h
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/file_progress.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/allocating_handler.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_call.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/disable_warnings_push.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_superclass.h
libtorrent-rasterbar-1.1.13/include/libtorrent/tailqueue.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/uncork_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_io.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/udp_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/string_util.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/chained_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_private.h
libtorrent-rasterbar-1.1.13/include/libtorrent/stat_cache.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/config.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/performance_counters.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_class.h
libtorrent-rasterbar-1.1.13/include/libtorrent/resolver_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/thread_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/error_code.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/packet_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/lazy_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_status.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_stats.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/piece_picker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/natpmp.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_tracker_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/upnp.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utf8.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/network_thread_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utp_socket_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_limit.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/block_cache.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_buffer_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ed25519.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/ut_metadata.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/lt_trackers.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/smart_ban.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/metadata_transfer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/ut_pex.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/piece_block_progress.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/rss.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ConvertUTF.h
libtorrent-rasterbar-1.1.13/include/libtorrent/sha1_hash.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/enum_net.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_job_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/instantiate_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/stack_allocator.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/build_config.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/traversal_algorithm.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dos_blocker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/get_peers.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/direct_request.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/msg.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node_id.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/rpc_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/routing_table.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/find_data.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/put_data.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_tracker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/get_item.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/refresh.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/item.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/gzip.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bdecode.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bloom_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/assert.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/xml_parse.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/link.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_peer_allocator.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/puff.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/lsd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/error.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/timestamp_history.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/time.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/settings_pack.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_id.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/platform_util.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/union_endpoint.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/address.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/proxy_base.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/magnet_uri.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/create_torrent.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/thread.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/hex.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/operations.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/vector_utils.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_status.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_seed_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/linked_list.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bencode.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/random.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io_service_fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/stat.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_list.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_type.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath.h
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/announce_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bitfield.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/heterogeneous_queue.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_parser.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/copy_ptr.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/broadcast_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/identify_client.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socks5_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/request_blocks.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/deadline_timer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/Makefile.am
libtorrent-rasterbar-1.1.13/include/libtorrent/hasher.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/receive_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/file_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/debug.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bt_peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io_service.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert_types.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/max.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class_set.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/part_file.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/version.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/export.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/close_reason.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/choker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/fingerprint.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/i2p_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_io_job.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/crc32c.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class_type_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_io_thread.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_peer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/resolve_links.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/file.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_buffer_holder.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ip_voter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utp_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/sha1.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tracker_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_info.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/parse_url.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/pe_crypto.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/udp_tracker_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/add_torrent_params.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/sliding_average.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alloca.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/web_connection_base.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_info.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_request.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/storage_defs.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/web_peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/resolver.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/Makefile.in
libtorrent-rasterbar-1.1.13/include/libtorrent/file_storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/invariant_check.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ssl_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_type_fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ip_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_queue_entry.hpp
libtorrent-rasterbar-1.1.13/Jamfile
libtorrent-rasterbar-1.1.13/Makefile.am
libtorrent-rasterbar-1.1.13/CMakeLists.txt
libtorrent-rasterbar-1.1.13/aclocal.m4
libtorrent-rasterbar-1.1.13/examples/
libtorrent-rasterbar-1.1.13/examples/cmake/
libtorrent-rasterbar-1.1.13/examples/cmake/FindLibtorrentRasterbar.cmake
libtorrent-rasterbar-1.1.13/examples/dump_torrent.cpp
libtorrent-rasterbar-1.1.13/examples/bt-get.cpp
libtorrent-rasterbar-1.1.13/examples/print.cpp
libtorrent-rasterbar-1.1.13/examples/print.hpp
libtorrent-rasterbar-1.1.13/examples/make_torrent.cpp
libtorrent-rasterbar-1.1.13/examples/simple_client.cpp
libtorrent-rasterbar-1.1.13/examples/session_view.cpp
libtorrent-rasterbar-1.1.13/examples/bt-get2.cpp
libtorrent-rasterbar-1.1.13/examples/connection_tester.cpp
libtorrent-rasterbar-1.1.13/examples/client_test.cpp
libtorrent-rasterbar-1.1.13/examples/run_cmake.sh.in
libtorrent-rasterbar-1.1.13/examples/torrent_view.hpp
libtorrent-rasterbar-1.1.13/examples/torrent_view.cpp
libtorrent-rasterbar-1.1.13/examples/Jamfile
libtorrent-rasterbar-1.1.13/examples/Makefile.am
libtorrent-rasterbar-1.1.13/examples/upnp_test.cpp
libtorrent-rasterbar-1.1.13/examples/session_view.hpp
libtorrent-rasterbar-1.1.13/examples/CMakeLists.txt
libtorrent-rasterbar-1.1.13/examples/stats_counters.cpp
libtorrent-rasterbar-1.1.13/examples/Makefile.in
libtorrent-rasterbar-1.1.13/AUTHORS
libtorrent-rasterbar-1.1.13/src/
libtorrent-rasterbar-1.1.13/src/performance_counters.cpp
libtorrent-rasterbar-1.1.13/src/ut_metadata.cpp
libtorrent-rasterbar-1.1.13/src/instantiate_connection.cpp
libtorrent-rasterbar-1.1.13/src/version.cpp
libtorrent-rasterbar-1.1.13/src/ut_pex.cpp
libtorrent-rasterbar-1.1.13/src/hasher.cpp
libtorrent-rasterbar-1.1.13/src/disk_buffer_pool.cpp
libtorrent-rasterbar-1.1.13/src/peer_class_set.cpp
libtorrent-rasterbar-1.1.13/src/fingerprint.cpp
libtorrent-rasterbar-1.1.13/src/puff.cpp
libtorrent-rasterbar-1.1.13/src/crc32c.cpp
libtorrent-rasterbar-1.1.13/src/ConvertUTF.cpp
libtorrent-rasterbar-1.1.13/src/resolve_links.cpp
libtorrent-rasterbar-1.1.13/src/string_util.cpp
libtorrent-rasterbar-1.1.13/src/timestamp_history.cpp
libtorrent-rasterbar-1.1.13/src/socks5_stream.cpp
libtorrent-rasterbar-1.1.13/src/bdecode.cpp
libtorrent-rasterbar-1.1.13/src/session_handle.cpp
libtorrent-rasterbar-1.1.13/src/peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/gzip.cpp
libtorrent-rasterbar-1.1.13/src/disk_buffer_holder.cpp
libtorrent-rasterbar-1.1.13/src/torrent_info.cpp
libtorrent-rasterbar-1.1.13/src/magnet_uri.cpp
libtorrent-rasterbar-1.1.13/src/upnp.cpp
libtorrent-rasterbar-1.1.13/src/part_file.cpp
libtorrent-rasterbar-1.1.13/src/utp_socket_manager.cpp
libtorrent-rasterbar-1.1.13/src/packet_buffer.cpp
libtorrent-rasterbar-1.1.13/src/session.cpp
libtorrent-rasterbar-1.1.13/src/session_settings.cpp
libtorrent-rasterbar-1.1.13/src/natpmp.cpp
libtorrent-rasterbar-1.1.13/src/storage.cpp
libtorrent-rasterbar-1.1.13/src/http_tracker_connection.cpp
libtorrent-rasterbar-1.1.13/src/session_impl.cpp
libtorrent-rasterbar-1.1.13/src/peer_connection_handle.cpp
libtorrent-rasterbar-1.1.13/src/sha1.cpp
libtorrent-rasterbar-1.1.13/src/http_stream.cpp
libtorrent-rasterbar-1.1.13/src/disk_job_pool.cpp
libtorrent-rasterbar-1.1.13/src/mpi.cpp
libtorrent-rasterbar-1.1.13/src/cpuid.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/
libtorrent-rasterbar-1.1.13/src/kademlia/get_peers.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/item.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/get_item.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node_entry.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/traversal_algorithm.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/refresh.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/routing_table.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/put_data.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node_id.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/rpc_manager.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dos_blocker.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/msg.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dht_storage.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/find_data.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dht_tracker.cpp
libtorrent-rasterbar-1.1.13/src/i2p_stream.cpp
libtorrent-rasterbar-1.1.13/src/disk_io_job.cpp
libtorrent-rasterbar-1.1.13/src/socket_io.cpp
libtorrent-rasterbar-1.1.13/src/file_pool.cpp
libtorrent-rasterbar-1.1.13/src/assert.cpp
libtorrent-rasterbar-1.1.13/src/thread.cpp
libtorrent-rasterbar-1.1.13/src/torrent.cpp
libtorrent-rasterbar-1.1.13/src/rss.cpp
libtorrent-rasterbar-1.1.13/src/choker.cpp
libtorrent-rasterbar-1.1.13/src/resolver.cpp
libtorrent-rasterbar-1.1.13/src/request_blocks.cpp
libtorrent-rasterbar-1.1.13/src/web_connection_base.cpp
libtorrent-rasterbar-1.1.13/src/broadcast_socket.cpp
libtorrent-rasterbar-1.1.13/src/utp_stream.cpp
libtorrent-rasterbar-1.1.13/src/bloom_filter.cpp
libtorrent-rasterbar-1.1.13/src/hex.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_queue_entry.cpp
libtorrent-rasterbar-1.1.13/src/stat.cpp
libtorrent-rasterbar-1.1.13/src/ip_filter.cpp
libtorrent-rasterbar-1.1.13/src/close_reason.cpp
libtorrent-rasterbar-1.1.13/src/xml_parse.cpp
libtorrent-rasterbar-1.1.13/src/ip_voter.cpp
libtorrent-rasterbar-1.1.13/src/lsd.cpp
libtorrent-rasterbar-1.1.13/src/proxy_settings.cpp
libtorrent-rasterbar-1.1.13/src/lazy_bdecode.cpp
libtorrent-rasterbar-1.1.13/src/udp_tracker_connection.cpp
libtorrent-rasterbar-1.1.13/src/stat_cache.cpp
libtorrent-rasterbar-1.1.13/src/peer_class.cpp
libtorrent-rasterbar-1.1.13/src/platform_util.cpp
libtorrent-rasterbar-1.1.13/src/error_code.cpp
libtorrent-rasterbar-1.1.13/src/metadata_transfer.cpp
libtorrent-rasterbar-1.1.13/src/alert_manager.cpp
libtorrent-rasterbar-1.1.13/src/bt_peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/torrent_peer.cpp
libtorrent-rasterbar-1.1.13/src/receive_buffer.cpp
libtorrent-rasterbar-1.1.13/src/peer_list.cpp
libtorrent-rasterbar-1.1.13/src/utf8.cpp
libtorrent-rasterbar-1.1.13/src/time.cpp
libtorrent-rasterbar-1.1.13/src/Makefile.am
libtorrent-rasterbar-1.1.13/src/piece_picker.cpp
libtorrent-rasterbar-1.1.13/src/torrent_peer_allocator.cpp
libtorrent-rasterbar-1.1.13/src/torrent_handle.cpp
libtorrent-rasterbar-1.1.13/src/identify_client.cpp
libtorrent-rasterbar-1.1.13/src/session_call.cpp
libtorrent-rasterbar-1.1.13/src/file_progress.cpp
libtorrent-rasterbar-1.1.13/src/lt_trackers.cpp
libtorrent-rasterbar-1.1.13/src/session_stats.cpp
libtorrent-rasterbar-1.1.13/src/random.cpp
libtorrent-rasterbar-1.1.13/src/web_peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/smart_ban.cpp
libtorrent-rasterbar-1.1.13/src/create_torrent.cpp
libtorrent-rasterbar-1.1.13/src/escape_string.cpp
libtorrent-rasterbar-1.1.13/src/disk_io_thread.cpp
libtorrent-rasterbar-1.1.13/src/tracker_manager.cpp
libtorrent-rasterbar-1.1.13/src/http_seed_connection.cpp
libtorrent-rasterbar-1.1.13/src/alert.cpp
libtorrent-rasterbar-1.1.13/src/announce_entry.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_limit.cpp
libtorrent-rasterbar-1.1.13/src/settings_pack.cpp
libtorrent-rasterbar-1.1.13/src/proxy_base.cpp
libtorrent-rasterbar-1.1.13/src/http_parser.cpp
libtorrent-rasterbar-1.1.13/src/enum_net.cpp
libtorrent-rasterbar-1.1.13/src/pe_crypto.cpp
libtorrent-rasterbar-1.1.13/src/udp_socket.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_manager.cpp
libtorrent-rasterbar-1.1.13/src/bitfield.cpp
libtorrent-rasterbar-1.1.13/src/file_storage.cpp
libtorrent-rasterbar-1.1.13/src/http_connection.cpp
libtorrent-rasterbar-1.1.13/src/entry.cpp
libtorrent-rasterbar-1.1.13/src/block_cache.cpp
libtorrent-rasterbar-1.1.13/src/parse_url.cpp
libtorrent-rasterbar-1.1.13/src/file.cpp
libtorrent-rasterbar-1.1.13/src/chained_buffer.cpp
libtorrent-rasterbar-1.1.13/src/Makefile.in
libtorrent-rasterbar-1.1.13/src/socket_type.cpp
libtorrent-rasterbar-1.1.13/src/torrent_status.cpp
libtorrent-rasterbar-1.1.13/src/merkle.cpp
libtorrent-rasterbar-1.1.13/LICENSE
libtorrent-rasterbar-1.1.13/Makefile.in
phase `unpack' succeeded after 0.1 seconds
starting phase `bootstrap'
GNU build system bootstrapping not needed
phase `bootstrap' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
phase `patch-usr-bin-file' succeeded after 0.1 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./bindings/python/client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/make_torrent.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/setup.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/simple_client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./build-aux/compile: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.guess: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.rpath: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.sub: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/depcomp: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/install-sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/ltmain.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/missing: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/test-driver: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./examples/run_cmake.sh.in: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./setup.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/socks.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/web_server.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_bandwidth_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_rtt.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_memory_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_peer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_sample.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_session_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_utp_log.py: warning: no binary for interpreter `python' found in $PATH
phase `patch-source-shebangs' succeeded after 0.1 seconds
starting phase `configure'
source directory: "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13" (relative from build: ".")
build directory: "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13"
configure flags: ("CONFIG_SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "--prefix=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu" "--with-boost-libdir=/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib" "--enable-python-binding" "--enable-tests")
checking whether make supports nested variables... yes
Building libtorrent-rasterbar 1.1.13
Checking for a C/C++ compiler to use:
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 how to run the C preprocessor... gcc -E
checking whether gcc and cc understand -c and -o together... yes
checking for g++... g++
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 g++ understands -c and -o together... yes
Checking system type:
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
Initializing Automake:
checking for a BSD-compatible install... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking dependency style of g++... gcc3
checking whether to enable maintainer-specific portions of Makefiles... yes
Initializing Libtool:
checking how to print strings... printf
checking for a sed that does not truncate output... /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for grep that handles long lines and -e... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep
checking for egrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -E
checking for fgrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -F
checking for ld used by gcc... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B
checking the name lister (/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/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-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
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 /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd
checking how to truncate binary pipes... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
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 (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 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... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 posix thread support:
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -lpthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking whether to check for GCC pthread/shared inconsistencies... yes
checking whether -lpthread fixes that... yes
Checking for visibility support:
checking for __attribute__((visibility("hidden")))... found
yes
Checking for boost libraries:
checking for boostlib >= 1.53... yes
checking whether the Boost::System library is available... yes
checking for exit in -lboost_system... yes
checking whether the Boost::Chrono library is available... yes
checking for exit in -lboost_chrono... yes
checking whether the Boost::Random library is available... yes
checking for exit in -lboost_random... yes
Checking for pkg-config:
checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking pkg-config is at least version 0.20... yes
Checking for functions and headers:
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) no
checking for clock_gettime... yes
Checking build options:
checking whether deprecated functions should be enabled... yes
checking whether debug build should be enabled... no
checking whether invariant check should be enabled... no
checking whether logging to disk should be enabled... yes
checking whether disk activity logging should be enabled... no
Checking features to be enabled:
checking whether encryption support should be enabled... yes
configure: encryption support: now checking for the OpenSSL library...
checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking whether compiling and linking against OpenSSL works... yes
checking whether dht support should be enabled... yes
checking whether pool allocators should be enabled... yes
Checking for extra build files:
checking whether example files should be built... no
checking whether test files should be built... yes
checking whether python bindings should be built... yes
checking for a Python interpreter with version >= 2.4... python3
checking for python3... /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
checking for python3 version... 3.7
checking for python3 platform... linux
checking for python3 script directory... ${prefix}/lib/python3.7/site-packages
checking for python3 extension module directory... ${exec_prefix}/lib/python3.7/site-packages
checking for python3.7... (cached) /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
checking for a version of Python >= '2.1.0'... yes
checking for a version of Python >= '2.4'... yes
checking for the distutils Python package... grep: Trailing backslash
yes
checking for Python include path... -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m
checking for Python library path... -L/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -lpython3.7m
checking for Python site-packages path... /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/python3.7/site-packages
checking python extra libraries... -lcrypt -lpthread -ldl -lutil -lm
checking python extra linking flags... -Xlinker -export-dynamic
checking consistency of all components of python development environment... yes
checking whether the Boost::Python library is available... yes
checking whether boost_python is the correct library... yes
Checking for external libraries:
checking whether to link against system libiconv... checking for shared library run path origin... done
Generating Makefiles:
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating include/libtorrent/Makefile
config.status: creating examples/Makefile
config.status: creating test/Makefile
config.status: creating tools/Makefile
config.status: creating bindings/Makefile
config.status: creating bindings/python/Makefile
config.status: creating bindings/python/link_flags
config.status: creating bindings/python/compile_flags
config.status: creating libtorrent-rasterbar.pc
config.status: executing depfiles commands
config.status: executing libtool commands
Configure script has finished system check.
Config results:
-=-=-=-=-=-=-=-=-
Package:
name: libtorrent-rasterbar
version: 1.1.13
git revision: 9b0ebc207
Build environment:
build system: x86_64-unknown-linux-gnu
host system: x86_64-unknown-linux-gnu
target system: x86_64-unknown-linux-gnu
Compiler and linker flags:
CPPFlags:
CFlags: -lpthread -g -O2 -fvisibility=hidden
CXXFlags: -g -O2 -ftemplate-depth=120 -Wno-format-zero-length -fvisibility=hidden -fvisibility-inlines-hidden
LDFlags: -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -fvisibility=hidden -fvisibility-inlines-hidden
Libs: -lboost_chrono -lboost_random -lpthread
Defs: -DPACKAGE_NAME=\"libtorrent-rasterbar\" -DPACKAGE_TARNAME=\"libtorrent-rasterbar\" -DPACKAGE_VERSION=\"1.1.13\" -DPACKAGE_STRING=\"libtorrent-rasterbar\ 1.1.13\" -DPACKAGE_BUGREPORT=\"arvid@libtorrent.org\" -DPACKAGE_URL=\"http://www.libtorrent.org\" -DPACKAGE=\"libtorrent-rasterbar\" -DVERSION=\"1.1.13\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_CHRONO=/\*\*/ -DHAVE_BOOST_RANDOM=/\*\*/ -DHAVE_CLOCK_GETTIME=1 -DNDEBUG=1 -DTORRENT_USE_OPENSSL=1 -DTORRENT_EXPORT_EXTRA=1 -DHAVE_PYTHON=\"3.7\" -DHAVE_BOOST_PYTHON=/\*\*/ -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE=1 -DBOOST_ASIO_ENABLE_CANCELIO=1 -DTORRENT_BUILDING_SHARED=1
Build options:
deprecated functions: yes
debug build: no
invariant checks: no
logging support: yes
disk statistics: no
Features:
encryption support: yes
dht support: yes
pool allocators: yes
Extra builds:
examples: no
tests: yes
python bindings: yes
Pthread library:
CFlags: -lpthread
Libs: -lpthread
Boost libraries:
version:
CPPFlags:
LDFlags: -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib
boost.system: -lboost_system
boost.chrono: -lboost_chrono
boost.random: -lboost_random
boost.python: -lboost_python
Python environment:
-automake-
binary: /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
version: 3.7
platform: linux
prefix: ${prefix}
exec_prefix: ${exec_prefix}
pythondir: ${prefix}/lib/python3.7/site-packages
pkgpythondir: ${pythondir}/libtorrent-rasterbar
pyexecdir: ${exec_prefix}/lib/python3.7/site-packages
pkgpyexecdir: ${pyexecdir}/libtorrent-rasterbar
-m4-
cppflags: -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m
ldflags:
extra libs: -Xlinker -export-dynamic
External libraries:
system libiconv: no
OpenSSL library:
OpenSSL Libs: -lssl -lcrypto
OpenSSL LDFlags: -L/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib
OpenSSL Includes:
Type 'make' to compile libtorrent-rasterbar 1.1.13
or type 'make V=1' for verbose compiling
and then 'make install' to install it into /gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13
phase `configure' succeeded after 5.7 seconds
starting phase `patch-generated-file-shebangs'
patch-shebang: ./bindings/python/client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/make_torrent.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/simple_client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/socks.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/web_server.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_bandwidth_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_rtt.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_memory_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_peer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_sample.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_session_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_utp_log.py: warning: no binary for interpreter `python' found in $PATH
phase `patch-generated-file-shebangs' succeeded after 0.0 seconds
starting phase `build'
Making all in include/libtorrent
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
Making all in src
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
CXX web_connection_base.lo
CXX alert.lo
CXX alert_manager.lo
CXX announce_entry.lo
CXX bandwidth_limit.lo
CXX assert.lo
CXX bandwidth_manager.lo
CXX bandwidth_queue_entry.lo
CXX bdecode.lo
CXX bitfield.lo
CXX bloom_filter.lo
CXX broadcast_socket.lo
CXX block_cache.lo
CXX bt_peer_connection.lo
CXX chained_buffer.lo
CXX choker.lo
CXX close_reason.lo
CXX ConvertUTF.lo
CXX cpuid.lo
CXX crc32c.lo
CXX create_torrent.lo
CXX disk_buffer_holder.lo
CXX disk_buffer_pool.lo
CXX disk_io_job.lo
CXX disk_io_thread.lo
CXX disk_job_pool.lo
CXX entry.lo
CXX enum_net.lo
CXX error_code.lo
CXX escape_string.lo
CXX file.lo
CXX file_pool.lo
CXX file_storage.lo
CXX fingerprint.lo
CXX gzip.lo
CXX hasher.lo
CXX hex.lo
CXX http_connection.lo
CXX http_parser.lo
CXX http_seed_connection.lo
CXX http_stream.lo
CXX http_tracker_connection.lo
CXX i2p_stream.lo
CXX identify_client.lo
CXX instantiate_connection.lo
CXX ip_filter.lo
CXX ip_voter.lo
CXX lazy_bdecode.lo
CXX lsd.lo
CXX lt_trackers.lo
CXX magnet_uri.lo
CXX merkle.lo
CXX metadata_transfer.lo
CXX mpi.lo
CXX natpmp.lo
CXX parse_url.lo
CXX part_file.lo
CXX pe_crypto.lo
CXX performance_counters.lo
CXX peer_connection.lo
CXX peer_connection_handle.lo
CXX peer_class.lo
CXX peer_class_set.lo
CXX piece_picker.lo
CXX platform_util.lo
CXX packet_buffer.lo
CXX proxy_base.lo
CXX peer_list.lo
CXX puff.lo
CXX random.lo
CXX receive_buffer.lo
CXX request_blocks.lo
CXX resolve_links.lo
CXX resolver.lo
CXX rss.lo
CXX session.lo
CXX session_call.lo
CXX session_handle.lo
CXX session_impl.lo
CXX session_settings.lo
CXX proxy_settings.lo
CXX settings_pack.lo
CXX smart_ban.lo
CXX socket_io.lo
CXX socket_type.lo
CXX socks5_stream.lo
CXX stat.lo
CXX stat_cache.lo
CXX storage.lo
CXX session_stats.lo
CXX string_util.lo
CXX thread.lo
CXX torrent.lo
CXX torrent_handle.lo
CXX torrent_info.lo
CXX torrent_peer.lo
CXX torrent_peer_allocator.lo
CXX torrent_status.lo
CXX time.lo
CXX timestamp_history.lo
CXX tracker_manager.lo
CXX udp_socket.lo
CXX udp_tracker_connection.lo
CXX upnp.lo
CXX ut_metadata.lo
CXX ut_pex.lo
CXX utf8.lo
CXX utp_socket_manager.lo
CXX utp_stream.lo
CXX web_peer_connection.lo
CXX xml_parse.lo
CXX version.lo
CXX file_progress.lo
CXX kademlia/dht_storage.lo
CXX kademlia/dht_tracker.lo
CXX kademlia/find_data.lo
CXX kademlia/put_data.lo
CXX kademlia/msg.lo
CXX kademlia/node.lo
CXX kademlia/node_entry.lo
CXX kademlia/node_id.lo
CXX kademlia/refresh.lo
CXX kademlia/routing_table.lo
CXX kademlia/rpc_manager.lo
CXX kademlia/traversal_algorithm.lo
CXX kademlia/dos_blocker.lo
CXX kademlia/get_peers.lo
CXX kademlia/get_item.lo
CXX kademlia/item.lo
CXX ../ed25519/src/add_scalar.lo
CXX ../ed25519/src/fe.lo
CXX ../ed25519/src/ge.lo
CXX ../ed25519/src/key_exchange.lo
CXX ../ed25519/src/keypair.lo
CXX ../ed25519/src/sc.lo
CXX ../ed25519/src/seed.lo
CXX ../ed25519/src/sha512.lo
CXX ../ed25519/src/sign.lo
CXX ../ed25519/src/verify.lo
CXXLD libtorrent-rasterbar.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
Making all in examples
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
Making all in test
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
CXX main.lo
CXX test.lo
CXX setup_transfer.lo
CXX peer_server.lo
CXX dht_server.lo
CXX udp_tracker.lo
CXX make_torrent.lo
CXX bittorrent_peer.lo
CXX web_seed_suite.lo
CXX swarm_suite.lo
CXX test_utils.lo
CXX settings.lo
CXX print_alerts.lo
CXXLD libtest.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
Making all in bindings
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
Making all in python
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python'
/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3 ./setup.py build
running build
running build_ext
building 'libtorrent' extension
creating build
creating build/temp.linux-x86_64-3.7
creating build/temp.linux-x86_64-3.7/tmp
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function âstatic void tuple_to_pair<T1, T2>::construct(PyObject*, boost::python::converter::rvalue_from_python_stage1_data*) [with T1 = int; T2 = int]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function âstatic libtorrent::entry entry_from_python::construct0(boost::python::api::object)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:124:18: required from âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:124:18: required from âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair(first_param_type x, second_param_type y) : base(x, y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:81: required from âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x, second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:81: required from âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]â
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In destructor âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âboost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp: At global scope:
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:206:1: note: synthesized method âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â first required here
}
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In destructor âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âboost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp: At global scope:
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:206:1: note: synthesized method âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â first required here
}
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:213:29: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::first_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:216:30: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::second_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:213:29: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::first_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:216:30: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::second_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return *this;}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:47:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:61,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:84:18: warning: mangled name for âPyObject* boost::python::detail::invoke(boost::python::detail::invoke_tag_<false, true>, const RC&, F&, TC&) [with RC = boost::python::to_python_value<const int&>; F = int (boost::system::error_code::*)() const noexcept; TC = boost::python::arg_from_python<boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline PyObject* invoke(invoke_tag_<false,true>, RC const& rc, F& f, TC& tc BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(1, N, AC, & ac) )
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:381:26: warning: mangled name for âboost::compressed_pair<T1, T2>::first_reference boost::compressed_pair<T1, T2>::first() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:384:27: warning: mangled name for âboost::compressed_pair<T1, T2>::second_reference boost::compressed_pair<T1, T2>::second() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return base::second();}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:47:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:61,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:90:18: warning: mangled name for âPyObject* boost::python::detail::invoke(boost::python::detail::invoke_tag_<true, true>, const RC&, F&, TC&) [with RC = int; F = void (boost::system::error_code::*)() noexcept; TC = boost::python::arg_from_python<boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline PyObject* invoke(invoke_tag_<true,true>, RC const&, F& f, TC& tc BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(1, N, AC, & ac) )
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:381:26: warning: mangled name for âboost::compressed_pair<T1, T2>::first_reference boost::compressed_pair<T1, T2>::first() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:384:27: warning: mangled name for âboost::compressed_pair<T1, T2>::second_reference boost::compressed_pair<T1, T2>::second() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return base::second();}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:245:34: warning: mangled name for âstatic boost::python::detail::py_func_sig_info boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::signature() [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static py_func_sig_info signature()
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:243:25: warning: mangled name for âstatic unsigned int boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::min_arity() [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static unsigned min_arity() { return N; }
^~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:211:19: warning: mangled name for âPyObject* boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::operator()(PyObject*, PyObject*) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args_, PyObject*) // eliminate
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:245:34: warning: mangled name for âstatic boost::python::detail::py_func_sig_info boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::signature() [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static py_func_sig_info signature()
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:243:25: warning: mangled name for âstatic unsigned int boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::min_arity() [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static unsigned min_arity() { return N; }
^~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:211:19: warning: mangled name for âPyObject* boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::operator()(PyObject*, PyObject*) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args_, PyObject*) // eliminate
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:46:46: warning: mangled name for âboost::python::detail::py_func_sig_info boost::python::objects::caller_py_function_impl<Caller>::signature() const [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual python::detail::py_func_sig_info signature() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:41:22: warning: mangled name for âunsigned int boost::python::objects::caller_py_function_impl<Caller>::min_arity() const [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual unsigned min_arity() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:36:15: warning: mangled name for âPyObject* boost::python::objects::caller_py_function_impl<Caller>::operator()(PyObject*, PyObject*) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args, PyObject* kw)
^~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:46:46: warning: mangled name for âboost::python::detail::py_func_sig_info boost::python::objects::caller_py_function_impl<Caller>::signature() const [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual python::detail::py_func_sig_info signature() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:41:22: warning: mangled name for âunsigned int boost::python::objects::caller_py_function_impl<Caller>::min_arity() const [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual unsigned min_arity() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:36:15: warning: mangled name for âPyObject* boost::python::objects::caller_py_function_impl<Caller>::operator()(PyObject*, PyObject*) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args, PyObject* kw)
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:72:25: warning: mangled name for âboost::details::compressed_pair_switch<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, false, false, true>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
{static const int value = 2;};
^~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/config.hpp:61:0,
from ../../include/libtorrent/config.hpp:50,
from ../../include/libtorrent/error_code.hpp:37,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:33:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:58:33: warning: mangled name for âboost::detail::empty_helper<void (boost::system::error_code::*)() noexcept, false>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = false);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_class.hpp:99:33: warning: mangled name for âboost::detail::is_class_impl<void (boost::system::error_code::*)() noexcept>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_CLASS(T));
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:75:9: warning: mangled name for âboost::detail::is_empty_impl<void (boost::system::error_code::*)() noexcept>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
value = ( ::boost::detail::empty_helper<cvt,::boost::is_class<T>::value>::value || BOOST_INTERNAL_IS_EMPTY(cvt)));
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:72:25: warning: mangled name for âboost::details::compressed_pair_switch<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, false, false, true>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
{static const int value = 2;};
^~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/config.hpp:61:0,
from ../../include/libtorrent/config.hpp:50,
from ../../include/libtorrent/error_code.hpp:37,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:33:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:58:33: warning: mangled name for âboost::detail::empty_helper<int (boost::system::error_code::*)() const noexcept, false>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = false);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_class.hpp:99:33: warning: mangled name for âboost::detail::is_class_impl<int (boost::system::error_code::*)() const noexcept>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_CLASS(T));
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:75:9: warning: mangled name for âboost::detail::is_empty_impl<int (boost::system::error_code::*)() const noexcept>::valueâ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
value = ( ::boost::detail::empty_helper<cvt,::boost::is_class<T>::value>::value || BOOST_INTERNAL_IS_EMPTY(cvt)));
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âvirtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x, second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair(first_param_type x, second_param_type y) : base(x, y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for âboost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for âboost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for âboost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for âboost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:46:10: warning: mangled name for âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function_aux(
^~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:46:10: warning: mangled name for âboost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:530:17: warning: mangled name for âvoid boost::python::class_<T, X1, X2, X3>::def_default(const char*, Fn, const Helper&, mpl_::bool_<false>) [with Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_default(char const*, Fn, Helper const&, mpl::bool_<false>)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:133:8: warning: mangled name for âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function(
^~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:530:17: warning: mangled name for âvoid boost::python::class_<T, X1, X2, X3>::def_default(const char*, Fn, const Helper&, mpl_::bool_<false>) [with Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_default(char const*, Fn, Helper const&, mpl::bool_<false>)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:133:8: warning: mangled name for âboost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function(
^~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:482:17: warning: mangled name for âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_impl(
^~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:482:17: warning: mangled name for âvoid boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:229:11: warning: mangled name for âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
self& def(char const* name, F f)
^~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:229:11: warning: mangled name for âboost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âconstexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::caller_py_function_impl(const boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >&)â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âconstexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::caller_py_function_impl(boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >&&)â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âconstexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::caller_py_function_impl(const boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >&)â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for âconstexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::caller_py_function_impl(boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >&&)â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:387:9: warning: mangled name for âvoid boost::compressed_pair<T1, T2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(compressed_pair& y) { base::swap(y); }
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:385:27: warning: mangled name for âboost::compressed_pair<T1, T2>::second_const_reference boost::compressed_pair<T1, T2>::second() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return base::second();}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:382:26: warning: mangled name for âboost::compressed_pair<T1, T2>::first_const_reference boost::compressed_pair<T1, T2>::first() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:379:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(second_param_type y) : base(y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:378:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(first_param_type x) : base(x) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:376:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair() : base() {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:219:12: warning: mangled name for âvoid boost::details::compressed_pair_imp<T1, T2, 2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(::boost::compressed_pair<T1,T2>& y)
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:217:30: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::second_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:214:29: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::first_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:210:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:207:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:202:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp() {}
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:387:9: warning: mangled name for âvoid boost::compressed_pair<T1, T2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(compressed_pair& y) { base::swap(y); }
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:385:27: warning: mangled name for âboost::compressed_pair<T1, T2>::second_const_reference boost::compressed_pair<T1, T2>::second() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return base::second();}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:382:26: warning: mangled name for âboost::compressed_pair<T1, T2>::first_const_reference boost::compressed_pair<T1, T2>::first() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:379:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(second_param_type y) : base(y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:378:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(first_param_type x) : base(x) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:376:13: warning: mangled name for âboost::compressed_pair<T1, T2>::compressed_pair() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair() : base() {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:219:12: warning: mangled name for âvoid boost::details::compressed_pair_imp<T1, T2, 2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(::boost::compressed_pair<T1,T2>& y)
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:217:30: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::second_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:214:29: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::first_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:210:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:207:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:202:7: warning: mangled name for âboost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]â will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp() {}
^~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function âstatic void {anonymous}::ec_pickle_suite::setstate(libtorrent::error_code&, boost::python::tuple)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp:36:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid {anonymous}::add_dht_node(libtorrent::session&, boost::python::tuple)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid {anonymous}::set_peer_class(libtorrent::session&, int, boost::python::dict)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid dict_to_add_torrent_params(boost::python::dict, libtorrent::add_torrent_params&)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid {anonymous}::dict_to_feed_settings(boost::python::dict, libtorrent::feed_settings&)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid dict_to_announce_entry(boost::python::dict, libtorrent::announce_entry&)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid prioritize_pieces(libtorrent::torrent_handle&, boost::python::api::object)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid prioritize_files(libtorrent::torrent_handle&, boost::python::api::object)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp:7:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function âvoid {anonymous}::set_web_seeds(libtorrent::torrent_info&, boost::python::list)â:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: â*((void*)&<anonymous> +24)â may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
creating build/lib.linux-x86_64-3.7
g++ -pthread -shared -Wl,-rpath=/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -Wl,-rpath=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13/lib build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.o -L../../src/.libs -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -L/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib -L/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -ltorrent-rasterbar -lboost_chrono -lboost_random -lpthread -lboost_system -lboost_python -lpthread -lssl -lcrypto -lpython3.7m -o build/lib.linux-x86_64-3.7/libtorrent.cpython-37m-x86_64-linux-gnu.so -fvisibility=hidden -fvisibility-inlines-hidden
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python'
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
Making all in tools
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/tools'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/tools'
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13'
phase `build' succeeded after 568.6 seconds
starting phase `check'
Making check in include/libtorrent
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
Making check in src
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
Making check in examples
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
Making check in test
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make test_primitives test_recheck test_stat_cache test_file test_privacy test_priority test_remove_torrent test_auto_unchoke test_checking test_fast_extension test_http_connection test_lsd test_pe_crypto test_pex test_read_piece test_receive_buffer test_resume test_ssl test_stack_allocator test_storage test_time_critical test_torrent test_tracker test_transfer test_create_torrent enum_if test_utp test_session test_web_seed test_web_seed_ban test_web_seed_chunked test_web_seed_http test_web_seed_http_pw test_web_seed_redirect test_web_seed_socks4 test_web_seed_socks5 test_web_seed_socks5_no_peers test_web_seed_socks5_pw test_url_seed test_remap_files test_enum_net test_file_progress test_linked_list test_direct_dht test_ed25519 bdecode_benchmark
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
CXX test_primitives.o
CXX test_packet_buffer.o
CXX test_bloom_filter.o
CXX test_timestamp_history.o
CXX test_sha1_hash.o
CXX test_identify_client.o
CXX test_merkle.o
CXX test_alert_manager.o
CXX test_resolve_links.o
CXX test_crc32.o
CXX test_heterogeneous_queue.o
CXX test_ip_voter.o
CXX test_sliding_average.o
CXX test_socket_io.o
CXX test_random.o
CXX test_utf8.o
CXX test_gzip.o
CXX test_bitfield.o
CXX test_part_file.o
CXX test_peer_list.o
CXX test_torrent_info.o
CXX test_time.o
CXX test_file_storage.o
CXX test_peer_priority.o
CXX test_threads.o
CXX test_tailqueue.o
CXX test_bandwidth_limiter.o
CXX test_buffer.o
CXX test_piece_picker.o
CXX test_bencoding.o
CXX test_bdecode.o
CXX test_http_parser.o
CXX test_string.o
CXX test_magnet.o
CXX test_xml.o
CXX test_ip_filter.o
CXX test_hasher.o
CXX test_dht_storage.o
CXX test_dht.o
CXX test_block_cache.o
CXX test_peer_classes.o
CXX test_settings_pack.o
CXX test_fence.o
CXX test_dos_blocker.o
CXX test_upnp.o
CXX test_recheck.o
CXX test_stat_cache.o
CXX test_file.o
CXX test_privacy.o
CXX test_priority.o
CXX test_remove_torrent.o
CXX test_auto_unchoke.o
CXX test_checking.o
CXX test_fast_extension.o
CXX test_http_connection.o
CXX test_lsd.o
CXX test_pe_crypto.o
CXX test_pex.o
CXX test_read_piece.o
CXX test_receive_buffer.o
CXX test_resume.o
CXX test_ssl.o
CXX test_stack_allocator.o
CXX test_storage.o
CXX test_time_critical.o
CXX test_torrent.o
CXX test_tracker.o
CXX test_transfer.o
CXX test_create_torrent.o
CXX enum_if.o
CXX test_utp.o
CXX test_session.o
CXX test_web_seed.o
CXX test_web_seed_ban.o
CXX test_web_seed_chunked.o
CXX test_web_seed_http.o
CXX test_web_seed_http_pw.o
CXX test_web_seed_redirect.o
CXX test_web_seed_socks4.o
CXX test_web_seed_socks5.o
CXX test_web_seed_socks5_no_peers.o
CXX test_web_seed_socks5_pw.o
CXX test_url_seed.o
CXX test_remap_files.o
CXX test_enum_net.o
CXX test_file_progress.o
CXX test_linked_list.o
CXX test_direct_dht.o
CXX test_ed25519.o
CXX bdecode_benchmark.o
CXXLD test_recheck
CXXLD test_stat_cache
CXXLD test_file
CXXLD test_privacy
CXXLD test_priority
CXXLD test_remove_torrent
CXXLD test_auto_unchoke
CXXLD test_checking
CXXLD test_fast_extension
CXXLD test_http_connection
CXXLD test_lsd
CXXLD test_pe_crypto
CXXLD test_pex
CXXLD test_read_piece
CXXLD test_receive_buffer
CXXLD test_resume
CXXLD test_ssl
CXXLD test_stack_allocator
CXXLD test_storage
CXXLD test_time_critical
CXXLD test_torrent
CXXLD test_tracker
CXXLD test_transfer
CXXLD test_create_torrent
CXXLD enum_if
CXXLD test_utp
CXXLD test_session
CXXLD test_web_seed
CXXLD test_web_seed_ban
CXXLD test_web_seed_chunked
CXXLD test_web_seed_http
CXXLD test_web_seed_http_pw
CXXLD test_web_seed_redirect
CXXLD test_web_seed_socks4
CXXLD test_web_seed_socks5
CXXLD test_web_seed_socks5_no_peers
CXXLD test_web_seed_socks5_pw
CXXLD test_url_seed
CXXLD test_remap_files
CXXLD test_enum_net
CXXLD test_file_progress
CXXLD test_linked_list
CXXLD test_direct_dht
CXXLD test_ed25519
CXXLD bdecode_benchmark
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/aux_/integral_wrapper.hpp:22:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/int.hpp:20,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/lambda_fwd.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/aux_/na_spec.hpp:18,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/if.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/constrained_value.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/greg_weekday.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/greg_calendar.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/gregorian_types.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_config.hpp:18,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_system.hpp:13,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/ptime.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_types.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/time_traits.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/detail/timer_queue_ptime.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/detail/deadline_timer_service.hpp:29,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_waitable_timer.hpp:21,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/steady_timer.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_socket_streambuf.hpp:36,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_socket_iostream.hpp:24,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/ip/tcp.hpp:20,
from ../include/libtorrent/socket.hpp:55,
from ../include/libtorrent/torrent_peer.hpp:38,
from test_piece_picker.cpp:34:
test_piece_picker.cpp: In function âvoid unit_test_piece_picker()â:
test.hpp:102:27: note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without
static void BOOST_PP_CAT(unit_test_, test_name)()
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/cat.hpp:29:34: note: in definition of macro âBOOST_PP_CAT_Iâ
# define BOOST_PP_CAT_I(a, b) a ## b
^
test.hpp:102:14: note: in expansion of macro âBOOST_PP_CATâ
static void BOOST_PP_CAT(unit_test_, test_name)()
^~~~~~~~~~~~
test_piece_picker.cpp:282:1: note: in expansion of macro âTORRENT_TESTâ
TORRENT_TEST(piece_picker)
^
CXXLD test_primitives
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make check-TESTS
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[3]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
FAIL: test_privacy
PASS: test_stat_cache
PASS: test_recheck
FAIL: test_http_connection
PASS: test_file
PASS: test_pe_crypto
PASS: test_auto_unchoke
FAIL: test_primitives
PASS: test_receive_buffer
PASS: test_read_piece
PASS: test_priority
PASS: test_stack_allocator
PASS: test_pex
PASS: test_checking
PASS: test_fast_extension
PASS: test_storage
PASS: test_torrent
PASS: test_create_torrent
PASS: enum_if
PASS: test_remove_torrent
FAIL: test_tracker
FAIL: test_web_seed
FAIL: test_web_seed_ban
FAIL: test_web_seed_chunked
FAIL: test_web_seed_http
FAIL: test_web_seed_http_pw
FAIL: test_web_seed_redirect
FAIL: test_web_seed_socks4
FAIL: test_web_seed_socks5
FAIL: test_web_seed_socks5_no_peers
FAIL: test_web_seed_socks5_pw
FAIL: test_url_seed
PASS: test_utp
PASS: test_enum_net
PASS: test_file_progress
PASS: test_linked_list
PASS: test_time_critical
PASS: test_ed25519
FAIL: test_transfer
PASS: test_resume
PASS: test_session
PASS: test_remap_files
SKIP: test_lsd
PASS: test_direct_dht
SKIP: test_ssl
============================================================================
Testsuite summary for libtorrent-rasterbar 1.1.13
============================================================================
# TOTAL: 45
# PASS: 27
# SKIP: 2
# XFAIL: 0
# FAIL: 16
# XPASS: 0
# ERROR: 0
============================================================================
See test/test-suite.log
Please report to arvid@libtorrent.org
============================================================================
make[3]: *** [Makefile:1580: test-suite.log] Error 1
make[3]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[2]: *** [Makefile:1688: check-TESTS] Error 2
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[1]: *** [Makefile:2067: check-am] Error 2
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make: *** [Makefile:626: check-recursive] Error 1
Test suite failed, dumping logs.
--- ./test/test-suite.log ---------------------------------------------------
======================================================
libtorrent-rasterbar 1.1.13: test/test-suite.log
======================================================
# TOTAL: 45
# PASS: 27
# SKIP: 2
# XFAIL: 0
# FAIL: 16
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_primitives
=====================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_7888"
^[[1m[test_upnp.cpp.upnp]^[[0m
00:00:00.000 starting web_server on port 2361...
python ../web_server.py 2361 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_primitives (exit status: 134)
FAIL: test_privacy
==================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_7891"
^[[1m[test_privacy.cpp.no_proxy]^[[0m
=== TEST == proxy: none anonymous-mode: no
00:00:00.000 starting web_server on port 5369...
python ../web_server.py 5369 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_privacy (exit status: 134)
FAIL: test_http_connection
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8093"
^[[1m[test_http_connection.cpp.no_proxy_ssl]^[[0m
00:00:00.000 starting web_server on port 5473...
python ../web_server.py 5473 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_http_connection (exit status: 134)
SKIP: test_lsd
==============
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8113"
^[[1m[test_lsd.cpp.lsd]^[[0m
generated torrent: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 tmp1_lsd/temporary
00:00:00.000: ses1: [lsd_error_alert] Local Service Discovery error: No such device
00:00:00.000: ses1: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses1: [torrent_added_alert] temporary added
00:00:00.000: ses1: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: seed-mode apply-ip-filter update-subscribe save-path: tmp1_lsd
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses1: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses1: [torrent_log_alert] temporary: init, async_check_fastresume
00:00:00.000: ses2: [lsd_error_alert] Local Service Discovery error: No such device
00:00:00.000: ses2: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses2: [torrent_added_alert] temporary added
00:00:00.000: ses2: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: apply-ip-filter update-subscribe save-path: tmp2_lsd
00:00:00.000: ses2: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses2: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses2: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses2: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses2: [torrent_log_alert] temporary: init, async_check_fastresume
0.0s | 0kB/s 0kB/s 100% 0 cc:0 : 0.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:01.000: ses1: [torrent_log_alert] temporary: fastresume data rejected: ret: -2 (0) Success
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: finished
00:00:01.000: ses1: [torrent_finished_alert] temporary torrent finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 4
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: seeding
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 5
00:00:01.000: ses1: [torrent_checked_alert] temporary checked
00:00:01.000: ses1: [torrent_log_alert] temporary: *** announce: no trackers
00:00:01.000: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:01.000: ses1: [cache_flushed_alert] temporary
00:00:01.000: ses2: [torrent_log_alert] temporary: fastresume data accepted
00:00:01.000: ses2: [state_changed_alert] temporary: state changed to: downloading
00:00:01.000: ses2: [torrent_log_alert] temporary: set_state() 3
00:00:01.000: ses2: [torrent_checked_alert] temporary checked
00:00:01.000: ses2: [torrent_log_alert] temporary: *** announce: no trackers
00:00:01.000: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
1.0s | 0kB/s 0kB/s 100% 0 cc:0 : 1.0s | 0kB/s 0kB/s 0% 0 cc:0
2.0s | 0kB/s 0kB/s 100% 0 cc:0 : 2.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:03.001: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:03.001: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
3.0s | 0kB/s 0kB/s 100% 0 cc:0 : 3.0s | 0kB/s 0kB/s 0% 0 cc:0
4.0s | 0kB/s 0kB/s 100% 0 cc:0 : 4.0s | 0kB/s 0kB/s 0% 0 cc:0
5.0s | 0kB/s 0kB/s 100% 0 cc:0 : 5.0s | 0kB/s 0kB/s 0% 0 cc:0
6.0s | 0kB/s 0kB/s 100% 0 cc:0 : 6.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:07.003: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:07.003: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
7.0s | 0kB/s 0kB/s 100% 0 cc:0 : 7.0s | 0kB/s 0kB/s 0% 0 cc:0
8.0s | 0kB/s 0kB/s 100% 0 cc:0 : 8.0s | 0kB/s 0kB/s 0% 0 cc:0
9.0s | 0kB/s 0kB/s 100% 0 cc:0 : 9.0s | 0kB/s 0kB/s 0% 0 cc:0
10.0s | 0kB/s 0kB/s 100% 0 cc:0 : 10.0s | 0kB/s 0kB/s 0% 0 cc:0
11.0s | 0kB/s 0kB/s 100% 0 cc:0 : 11.0s | 0kB/s 0kB/s 0% 0 cc:0
12.0s | 0kB/s 0kB/s 100% 0 cc:0 : 12.0s | 0kB/s 0kB/s 0% 0 cc:0
13.0s | 0kB/s 0kB/s 100% 0 cc:0 : 13.0s | 0kB/s 0kB/s 0% 0 cc:0
14.0s | 0kB/s 0kB/s 100% 0 cc:0 : 14.0s | 0kB/s 0kB/s 0% 0 cc:0
15.0s | 0kB/s 0kB/s 100% 0 cc:0 : 15.0s | 0kB/s 0kB/s 0% 0 cc:0
16.0s | 0kB/s 0kB/s 100% 0 cc:0 : 16.0s | 0kB/s 0kB/s 0% 0 cc:0
17.0s | 0kB/s 0kB/s 100% 0 cc:0 : 17.0s | 0kB/s 0kB/s 0% 0 cc:0
18.0s | 0kB/s 0kB/s 100% 0 cc:0 : 18.0s | 0kB/s 0kB/s 0% 0 cc:0
19.0s | 0kB/s 0kB/s 100% 0 cc:0 : 19.0s | 0kB/s 0kB/s 0% 0 cc:0
20.0s | 0kB/s 0kB/s 100% 0 cc:0 : 20.0s | 0kB/s 0kB/s 0% 0 cc:0
21.0s | 0kB/s 0kB/s 100% 0 cc:0 : 21.0s | 0kB/s 0kB/s 0% 0 cc:0
22.0s | 0kB/s 0kB/s 100% 0 cc:0 : 22.0s | 0kB/s 0kB/s 0% 0 cc:0
23.0s | 0kB/s 0kB/s 100% 0 cc:0 : 23.0s | 0kB/s 0kB/s 0% 0 cc:0
24.0s | 0kB/s 0kB/s 100% 0 cc:0 : 24.0s | 0kB/s 0kB/s 0% 0 cc:0
25.0s | 0kB/s 0kB/s 100% 0 cc:0 : 25.0s | 0kB/s 0kB/s 0% 0 cc:0
26.0s | 0kB/s 0kB/s 100% 0 cc:0 : 26.0s | 0kB/s 0kB/s 0% 0 cc:0
27.0s | 0kB/s 0kB/s 100% 0 cc:0 : 27.0s | 0kB/s 0kB/s 0% 0 cc:0
28.0s | 0kB/s 0kB/s 100% 0 cc:0 : 28.0s | 0kB/s 0kB/s 0% 0 cc:0
29.0s | 0kB/s 0kB/s 100% 0 cc:0 : 29.0s | 0kB/s 0kB/s 0% 0 cc:0
^[[41m***** test_lsd.cpp:92 "TEST_CHECK failed: "tor2.status().is_seeding"" *****^[[0m
^[[31m[test_lsd.cpp.lsd] 1 FAILURES
^[[0m
^[[41m == 1 TEST(S) FAILED ==^[[0m
SKIP test_lsd (exit status: 77)
SKIP: test_ssl
==============
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8460"
^[[1m[test_ssl.cpp.malicious_peer]^[[0m
00:00:00.000: ses1: [log_alert] start session
00:00:00.000: ses1: [log_alert] config: ipv6_deprecated_ version: 1.1.13.0 revision: 9b0ebc207
00:00:00.000: ses1: [log_alert] max connections: 200
00:00:00.000: ses1: [log_alert] max files: 1024
00:00:00.000: ses1: [log_alert] *** session thread init
00:00:00.000: ses1: [log_alert] session stats header: peer.error_peers, peer.disconnected_peers, peer.eof_peers, peer.connreset_peers, peer.connrefused_peers, peer.connaborted_peers, peer.notconnected_peers, peer.perm_peers, peer.buffer_peers, peer.unreachable_peers, peer.broken_pipe_peers, peer.addrinuse_peers, peer.no_access_peers, peer.invalid_arg_peers, peer.aborted_peers, peer.piece_requests, peer.max_piece_requests, peer.invalid_piece_requests, peer.choked_piece_requests, peer.cancelled_piece_requests, peer.piece_rejects, peer.error_incoming_peers, peer.error_outgoing_peers, peer.error_rc4_peers, peer.error_encrypted_peers, peer.error_tcp_peers, peer.error_utp_peers, picker.reject_piece_picks, picker.unchoke_piece_picks, picker.incoming_redundant_piece_picks, picker.incoming_piece_picks, picker.end_game_piece_picks, picker.snubbed_piece_picks, picker.interesting_piece_picks, picker.hash_fail_piece_picks, picker.piece_picker_partial_loops, picker.piece_picker_suggest_loops, picker.piece_picker_sequential_loops, picker.piece_picker_reverse_rare_loops, picker.piece_picker_rare_loops, picker.piece_picker_rand_start_loops, picker.piece_picker_rand_loops, picker.piece_picker_busy_loops, peer.connect_timeouts, peer.uninteresting_peers, peer.timeout_peers, peer.no_memory_peers, peer.too_many_peers, peer.transport_timeout_peers, peer.num_banned_peers, peer.banned_for_hash_failure, peer.connection_attempts, peer.connection_attempt_loops, peer.incoming_connections, net.on_read_counter, net.on_write_counter, net.on_tick_counter, net.on_lsd_counter, net.on_lsd_peer_counter, net.on_udp_counter, net.on_accept_counter, net.on_disk_queue_counter, net.on_disk_counter, ses.torrent_evicted_counter, ses.num_incoming_choke, ses.num_incoming_unchoke, ses.num_incoming_interested, ses.num_incoming_not_interested, ses.num_incoming_have, ses.num_incoming_bitfield, ses.num_incoming_request, ses.num_incoming_piece, ses.num_incoming_cancel, ses.num_incoming_dht_port, ses.num_incoming_suggest, ses.num_incoming_have_all, ses.num_incoming_have_none, ses.num_incoming_reject, ses.num_incoming_allowed_fast, ses.num_incoming_ext_handshake, ses.num_incoming_pex, ses.num_incoming_metadata, ses.num_incoming_extended, ses.num_outgoing_choke, ses.num_outgoing_unchoke, ses.num_outgoing_interested, ses.num_outgoing_not_interested, ses.num_outgoing_have, ses.num_outgoing_bitfield, ses.num_outgoing_request, ses.num_outgoing_piece, ses.num_outgoing_cancel, ses.num_outgoing_dht_port, ses.num_outgoing_suggest, ses.num_outgoing_have_all, ses.num_outgoing_have_none, ses.num_outgoing_reject, ses.num_outgoing_allowed_fast, ses.num_outgoing_ext_handshake, ses.num_outgoing_pex, ses.num_outgoing_metadata, ses.num_outgoing_extended, ses.num_piece_passed, ses.num_piece_failed, ses.num_have_pieces, ses.num_total_pieces_added, disk.num_blocks_written, disk.num_blocks_read, disk.num_blocks_hashed, disk.num_blocks_cache_hits, disk.num_write_ops, disk.num_read_ops, disk.num_read_back, disk.disk_read_time, disk.disk_write_time, disk.disk_hash_time, disk.disk_job_time, ses.waste_piece_timed_out, ses.waste_piece_cancelled, ses.waste_piece_unknown, ses.waste_piece_seed, ses.waste_piece_end_game, ses.waste_piece_closing, net.sent_payload_bytes, net.sent_bytes, net.sent_ip_overhead_bytes, net.sent_tracker_bytes, net.recv_payload_bytes, net.recv_bytes, net.recv_ip_overhead_bytes, net.recv_tracker_bytes, net.recv_failed_bytes, net.recv_redundant_bytes, dht.dht_messages_in, dht.dht_messages_out, dht.dht_messages_out_dropped, dht.dht_bytes_in, dht.dht_bytes_out, dht.dht_ping_in, dht.dht_ping_out, dht.dht_find_node_in, dht.dht_find_node_out, dht.dht_get_peers_in, dht.dht_get_peers_out, dht.dht_announce_peer_in, dht.dht_announce_peer_out, dht.dht_get_in, dht.dht_get_out, dht.dht_put_in, dht.dht_put_out, dht.dht_invalid_announce, dht.dht_invalid_get_peers, dht.dht_invalid_put, dht.dht_invalid_get, utp.utp_packet_loss, utp.utp_timeout, utp.utp_packets_in, utp.utp_packets_out, utp.utp_fast_retransmit, utp.utp_packet_resend, utp.utp_samples_above_target, utp.utp_samples_below_target, utp.utp_payload_pkts_in, utp.utp_payload_pkts_out, utp.utp_invalid_pkts_in, utp.utp_redundant_pkts_in, sock_bufs.socket_send_size3, sock_bufs.socket_send_size4, sock_bufs.socket_send_size5, sock_bufs.socket_send_size6, sock_bufs.socket_send_size7, sock_bufs.socket_send_size8, sock_bufs.socket_send_size9, sock_bufs.socket_send_size10, sock_bufs.socket_send_size11, sock_bufs.socket_send_size12, sock_bufs.socket_send_size13, sock_bufs.socket_send_size14, sock_bufs.socket_send_size15, sock_bufs.socket_send_size16, sock_bufs.socket_send_size17, sock_bufs.socket_send_size18, sock_bufs.socket_send_size19, sock_bufs.socket_send_size20, sock_bufs.socket_recv_size3, sock_bufs.socket_recv_size4, sock_bufs.socket_recv_size5, sock_bufs.socket_recv_size6, sock_bufs.socket_recv_size7, sock_bufs.socket_recv_size8, sock_bufs.socket_recv_size9, sock_bufs.socket_recv_size10, sock_bufs.socket_recv_size11, sock_bufs.socket_recv_size12, sock_bufs.socket_recv_size13, sock_bufs.socket_recv_size14, sock_bufs.socket_recv_size15, sock_bufs.socket_recv_size16, sock_bufs.socket_recv_size17, sock_bufs.socket_recv_size18, sock_bufs.socket_recv_size19, sock_bufs.socket_recv_size20, ses.num_checking_torrents, ses.num_stopped_torrents, ses.num_upload_only_torrents, ses.num_downloading_torrents, ses.num_seeding_torrents, ses.num_queued_seeding_torrents, ses.num_queued_download_torrents, ses.num_error_torrents, ses.non_filter_torrents, ses.num_loaded_torrents, ses.num_pinned_torrents, peer.num_tcp_peers, peer.num_socks5_peers, peer.num_http_proxy_peers, peer.num_utp_peers, peer.num_i2p_peers, peer.num_ssl_peers, peer.num_ssl_socks5_peers, peer.num_ssl_http_proxy_peers, peer.num_ssl_utp_peers, peer.num_peers_half_open, peer.num_peers_connected, peer.num_peers_up_interested, peer.num_peers_down_interested, peer.num_peers_up_unchoked_all, peer.num_peers_up_unchoked_optimistic, peer.num_peers_up_unchoked, peer.num_peers_down_unchoked, peer.num_peers_up_requests, peer.num_peers_down_requests, peer.num_peers_up_disk, peer.num_peers_down_disk, peer.num_peers_end_game, disk.write_cache_blocks, disk.read_cache_blocks, disk.request_latency, disk.pinned_blocks, disk.disk_blocks_in_use, disk.queued_disk_jobs, disk.num_running_disk_jobs, disk.num_read_jobs, disk.num_write_jobs, disk.num_jobs, disk.num_writing_threads, disk.num_running_threads, disk.blocked_disk_jobs, disk.queued_write_bytes, ses.num_unchoke_slots, disk.num_fenced_read, disk.num_fenced_write, disk.num_fenced_hash, disk.num_fenced_move_storage, disk.num_fenced_release_files, disk.num_fenced_delete_files, disk.num_fenced_check_fastresume, disk.num_fenced_save_resume_data, disk.num_fenced_rename_file, disk.num_fenced_stop_torrent, disk.num_fenced_cache_piece, disk.num_fenced_flush_piece, disk.num_fenced_flush_hashed, disk.num_fenced_flush_storage, disk.num_fenced_trim_cache, disk.num_fenced_file_priority, disk.num_fenced_load_torrent, disk.num_fenced_clear_piece, disk.num_fenced_tick_storage, disk.arc_mru_size, disk.arc_mru_ghost_size, disk.arc_mfu_size, disk.arc_mfu_ghost_size, disk.arc_write_size, disk.arc_volatile_size, dht.dht_nodes, dht.dht_node_cache, dht.dht_torrents, dht.dht_peers, dht.dht_immutable_data, dht.dht_mutable_data, dht.dht_allocated_observers, net.has_incoming_connections, net.limiter_up_queue, net.limiter_down_queue, net.limiter_up_bytes, net.limiter_down_bytes, utp.num_utp_idle, utp.num_utp_syn_sent, utp.num_utp_connected, utp.num_utp_fin_sent, utp.num_utp_close_wait, utp.num_utp_deleted
00:00:00.000: ses1: [log_alert] not starting DHT announce timer: m_dht == NULL
00:00:00.000: ses1: [log_alert] done starting session
00:00:00.000: ses1: [log_alert] update listen interfaces: 0.0.0.0:48075
00:00:00.000: ses1: [log_alert] >>> SET_TOS [ udp_socket tos: 20 e: Bad file descriptor ]
00:00:00.000: ses1: [log_alert] not starting DHT announce timer: m_dht == NULL
00:00:00.000: ses1: [log_alert] force-proxy disabled
00:00:00.000: ses1: [log_alert] RECALCULATE UNCHOKE SLOTS: [ peers: 0 eligible-peers: 0 max_upload_rate: 0 allowed-slots: 8 ]
00:00:00.000: ses1: [log_alert] update listen interfaces: 0.0.0.0:48075
00:00:00.000: ses1: [log_alert] open listen port
00:00:00.000: ses1: [log_alert] failed to bind to interface [0.0.0.0 48075] "::" : system (98) : Address already in use (retries: 100)
00:00:00.000: ses1: [log_alert] listening on: [::]:48076 external port: 48076
00:00:00.000: ses1: [log_alert] listening on: [::]:40407 external port: 40407
00:00:00.000: ses1: [log_alert] failed to bind to interface [0.0.0.0 48075] "0.0.0.0" : system (98) : Address already in use (retries: 100)
00:00:00.000: ses1: [log_alert] listening on: 0.0.0.0:48076 external port: 48076
00:00:00.000: ses1: [log_alert] listening on: 0.0.0.0:40407 external port: 40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [TCP] [::]:48076
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/TCP] [::]:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [TCP] 0.0.0.0:48076
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/TCP] 0.0.0.0:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/uTP] 0.0.0.0:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [UDP] 0.0.0.0:48076
00:00:00.000: ses1: [log_alert] >>> SET_TOS [ udp_socket tos: 20 e: Success ]
failed to load SSL certificate: No such file or directory
^[[41m***** test_ssl.cpp:562 "TEST_CHECK failed: "!t->ssl_cert().empty()"" *****^[[0m
00:00:00.000: ses1: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses1: [torrent_added_alert] temporary added
00:00:00.000: ses1: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: apply-ip-filter update-subscribe save-path: tmp3_ssl
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses1: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses1: [torrent_log_alert] temporary: init, async_check_fastresume
00:00:00.000: ses1: [torrent_error_alert] temporary ERROR: not an SSL torrent
00:00:00.500: ses1: [torrent_log_alert] temporary: fastresume data rejected: ret: -2 (0) Success
00:00:00.500: ses1: [state_changed_alert] temporary: state changed to: checking
00:00:00.500: ses1: [torrent_log_alert] temporary: set_state() 1
00:00:00.500: ses1: [torrent_log_alert] temporary: start_checking, m_checking_piece: 13
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 0 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 1 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 2 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 3 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 4 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 5 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 6 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 7 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 8 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 9 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 10 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 11 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 12 finished downloading
00:00:01.000: ses1: [file_completed_alert] temporary: file 0 finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: on_piece_hashed, completed
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: finished
00:00:01.000: ses1: [torrent_finished_alert] temporary torrent finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 4
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: seeding
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 5
00:00:01.000: ses1: [torrent_checked_alert] temporary checked
00:00:01.000: ses1: [torrent_log_alert] temporary: *** announce: no trackers
MALICIOUS PEER TEST: valid-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
^[[41m***** test_ssl.cpp:589 "TEST_EQUAL_ERROR: success: 0 expected: 1" *****^[[0m
MALICIOUS PEER TEST: valid-certificate invalid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: valid-certificate no-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: no-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
connecting 127.0.0.1:40407
SNI: 31c1aacc9d38f852a635ae98aa45b6cac6b213ac
SSL handshake
00:00:01.001: ses1: [log_alert] *** peer SSL handshake done [ ip: 127.0.0.1:40906 ec: callback failed socket: SSL/TCP ]
00:00:01.001: ses1: [peer_error_alert] - peer (127.0.0.1:40906, Unknown) peer error [ssl_handshake] [asio.ssl]: callback failed
Failed SSL handshake: tlsv1 unrecognized name
MALICIOUS PEER TEST: invalid-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/invalid_peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: valid-certificate valid-SNI-hash invalid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
SKIP test_ssl (exit status: 77)
FAIL: test_tracker
==================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8812"
^[[1m[test_tracker.cpp.http_peers]^[[0m
00:00:04.003 starting web_server on port 3836...
python ../web_server.py 3836 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
00:00:04.004: UDP tracker, stop
00:00:04.004: UDP tracker, read failed: Operation canceled
UDP exiting UDP tracker thread
FAIL test_tracker (exit status: 134)
FAIL: test_transfer
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8867"
^[[1m[test_transfer.cpp.socks5_pw]^[[0m
==== TESTING SOCKS5 password proxy ==== disk-full: false
00:00:05.500 starting proxy on port 2082 (socks5 --username testuser --password testpass)...
python ../socks.py --port 2082 --username testuser --password testpass
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_transfer (exit status: 134)
FAIL: test_web_seed
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9037"
^[[1m[test_web_seed.cpp.web_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 2145...
python ../web_server.py 2145 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed (exit status: 134)
FAIL: test_web_seed_ban
=======================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9057"
^[[1m[test_web_seed_ban.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 5350...
python ../web_server.py 5350 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_ban (exit status: 134)
FAIL: test_web_seed_chunked
===========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9077"
^[[1m[test_web_seed_chunked.cpp.web_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 3396...
python ../web_server.py 3396 1 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_chunked (exit status: 134)
FAIL: test_web_seed_http
========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9097"
^[[1m[test_web_seed_http.cpp.web_seed_http]^[[0m
00:00:00.000 starting web_server on port 6145...
python ../web_server.py 6145 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_http (exit status: 134)
FAIL: test_web_seed_http_pw
===========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9123"
^[[1m[test_web_seed_http_pw.cpp.web_seed_http_pw]^[[0m
00:00:00.000 starting web_server on port 3082...
python ../web_server.py 3082 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_http_pw (exit status: 134)
FAIL: test_web_seed_redirect
============================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9143"
^[[1m[test_web_seed_redirect.cpp.web_seed_redirect]^[[0m
00:00:00.000 starting web_server on port 6566...
python ../web_server.py 6566 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_redirect (exit status: 134)
FAIL: test_web_seed_socks4
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9163"
^[[1m[test_web_seed_socks4.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 7356...
python ../web_server.py 7356 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks4 (exit status: 134)
FAIL: test_web_seed_socks5
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9183"
^[[1m[test_web_seed_socks5.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 2816...
python ../web_server.py 2816 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5 (exit status: 134)
FAIL: test_web_seed_socks5_no_peers
===================================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9203"
^[[1m[test_web_seed_socks5_no_peers.cpp.web_seed_socks5_no_peers_ssl]^[[0m
00:00:00.000 starting web_server on port 4856...
python ../web_server.py 4856 0 1 0
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5_no_peers (exit status: 134)
FAIL: test_web_seed_socks5_pw
=============================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9223"
^[[1m[test_web_seed_socks5_pw.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 4052...
python ../web_server.py 4052 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5_pw (exit status: 134)
FAIL: test_url_seed
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9243"
^[[1m[test_url_seed.cpp.url_seed_ssl_keepalive]^[[0m
00:00:00.000 starting web_server on port 2704...
python ../web_server.py 2704 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_url_seed (exit status: 134)
command "make" "check" "-j" "8" "LDFLAGS=-Wl,-rpath=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13/lib" failed with status 2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3
2019-11-12 0:06 ` goodoldpaul
@ 2019-11-16 9:04 ` goodoldpaul
2019-11-20 0:01 ` Marius Bakke
0 siblings, 1 reply; 8+ messages in thread
From: goodoldpaul @ 2019-11-16 9:04 UTC (permalink / raw)
To: 38228
[-- Attachment #1: Type: text/plain, Size: 1851 bytes --]
Hello I'm opening another thread ( old one was
http://issues.guix.gnu.org/issue/38128 ) to build boost in core-updates
with python3. The new patch also parameterizes python versions across
the package definition.
WDYT?
Bye,
Giacomo
-------- Original Message --------
Subject: Re: bug#38128: [PATCH] gnu: Add boost-with-python3
Date: 2019-11-12 00:06
From: goodoldpaul@autistici.org
To: Efraim Flashner <efraim@flashner.co.il>
Cc: 38128@debbugs.gnu.org, mbakke@fastmail.com
On 2019-11-11 09:36, Efraim Flashner wrote:
> I'm going to re-open this one, sorry.
>
> Can we replace the '--with-python-version=3.7' and
> 'libboost_python37.so'
> with parameterized python variables so we don't have to bump it when we
> get a new python version?
>
> Also, I've attached a package that I've never actually built that uses
> boost built with python3 if you want something to test it out with :)
I'm not sure how to send a patch for core-updates, I never did it so I
attached it here. Please tell me if I should open another patch.
The patch builds boost with python3 and parameterizes the python
version, as Efraim suggested. I built it successfully on core updates.
When I tried building Epour on core-updates and saw that Guix was
starting to build Bash 5.0 I renounced (:D) and I built it on master
with boost-with-python3 .
Libtorrent-rasterbar seems to build fine on master but some tests fail
to pass and they all seem to be network related but then again this is
torrent we are talking about. I didn't investigate further but I attach
the log.
I also tried boost-with-python3 with Malmo (
https://github.com/microsoft/malmo ) and it seemed to compile fine just
but that package has other problems such as trying to start gradle so I
nerver managed to actually run it.
Let me know what you think about the patch,
Bye
Giacomo
[-- Attachment #2: 0001-gnu-boost-Build-with-python3.patch --]
[-- Type: text/x-diff, Size: 4232 bytes --]
From 91a25fb143ad0e2e20e8ddadea0c0610849adf92 Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Tue, 12 Nov 2019 00:24:49 +0100
Subject: [PATCH] gnu: boost: Build with python3.
* gnu/packages/boost.scm (boost):
[arguments]: Parameterize python version.
[native-inputs]: Use python3.
---
gnu/packages/boost.scm | 41 +++++++++++++++++++++++++++++------------
1 file changed, 29 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index a2253a9efc..389fd1fdb6 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -62,10 +62,13 @@
("zlib" ,zlib)))
(native-inputs
`(("perl" ,perl)
- ("python" ,python-2)
+ ("python" ,python)
("tcsh" ,tcsh)))
(arguments
- `(#:tests? #f
+ `(#:modules ((guix build gnu-build-system)
+ (guix build utils)
+ (srfi srfi-1))
+ #:tests? #f
#:make-flags
(list "threading=multi" "link=shared"
@@ -83,6 +86,9 @@
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((icu (assoc-ref inputs "icu4c"))
+ (python (assoc-ref inputs "python"))
+ (python-version
+ (take (string-split ,(package-version python) #\.) 2))
(out (assoc-ref outputs "out")))
(substitute* '("libs/config/configure"
"libs/spirit/classic/phoenix/test/runtest.sh"
@@ -94,11 +100,19 @@
(setenv "SHELL" (which "sh"))
(setenv "CONFIG_SHELL" (which "sh"))
+ (substitute* "tools/build/src/tools/python.jam"
+ (("include/python\\$\\(version\\)")
+ "include/python$(version)m"))
+
(invoke "./bootstrap.sh"
(string-append "--prefix=" out)
- ;; Auto-detection looks for ICU only in traditional
- ;; install locations.
+ ;; Auto-detection looks for dependencies only
+ ;; in traditional install locations.
(string-append "--with-icu=" icu)
+ (string-append "--with-python=" python "/bin/python3")
+ (string-append "--with-python-root=" python)
+ (string-append "--with-python-version="
+ (string-join python-version "."))
"--with-toolset=gcc"))))
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
@@ -109,15 +123,18 @@
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2" "install" make-flags)))
(add-after 'install 'provide-libboost_python
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- ;; Boost can build support for both Python 2 and Python 3 since
- ;; version 1.67.0, and suffixes each library with the Python
- ;; version. Many consumers only check for libboost_python
- ;; however, so we provide it here as suggested in
- ;; <https://github.com/boostorg/python/issues/203>.
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (python (assoc-ref inputs "python"))
+ (python-version
+ (take (string-split ,(package-version python) #\.) 2))
+ (libboost.so (string-append "libboost_python"
+ (string-join python-version "")
+ ".so")))
(with-directory-excursion (string-append out "/lib")
- (symlink "libboost_python27.so" "libboost_python.so"))
+ (symlink libboost.so "libboost_python.so")
+ ;; Some packages also look for libboost_python3.so
+ (symlink libboost.so "libboost_python3.so"))
#t))))))
(home-page "https://www.boost.org")
--
2.24.0
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: epour.log --]
[-- Type: text/plain; charset=us-ascii; name=epour.log, Size: 300558 bytes --]
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
environment variable `PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin:/gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin:/gnu/store/cnqpra8vr2l5fz00rr4yj4bp3hr00cfw-tar-1.32/bin:/gnu/store/py3k9zla9fj3z7430v4crqj5pyrsd3qj-gzip-1.10/bin:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/bin:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/bin:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin:/gnu/store/58sq8iabw3jkv0fvf95hd7sq2g4xcsnz-diffutils-3.7/bin:/gnu/store/v76scv4n63ip08g119rczh2mrw31zwpd-patch-2.7.6/bin:/gnu/store/g9d3wv1d68iflx57yp3mcp3k3sv8spsl-findutils-4.6.0/bin:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/bin:/gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin:/gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin:/gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/bin:/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin:/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/bin:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/sbin:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/bin'
environment variable `PYTHONPATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/python3.7/site-packages'
environment variable `PKG_CONFIG_PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/pkgconfig:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib/pkgconfig:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib/pkgconfig'
environment variable `BASH_LOADABLES_PATH' unset
environment variable `CPATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/include:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/include:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/include:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/include:/gnu/store/b5vpfzkr59bpgcsg1k9vvad9h5rwvpgk-make-4.2.1/include:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/include:/gnu/store/x3jx25cd3q363mr7nbgzrhrv1vza6cf7-gcc-7.4.0/include:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/include:/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/include:/gnu/store/7czrqpi0kwazras6pgyx0bhdn89pg0jl-linux-libre-headers-4.19.56/include'
environment variable `LIBRARY_PATH' set to `/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib:/gnu/store/l86azr7r3p5631wj3kk329jl1y1mpjgy-bzip2-1.0.6/lib:/gnu/store/lbip9isk25isymvnb159l115xnacb5j8-xz-5.2.4/lib:/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/lib:/gnu/store/2z9hsww76aag37p40671l9niq5pvvasx-gawk-5.0.1/lib:/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/lib:/gnu/store/ahqgl4h89xqj695lgqvsaf6zh2nhy4pj-glibc-2.29/lib:/gnu/store/qky1x5bb2jygy58bn6y95ygfsmpakf52-glibc-2.29-static/lib:/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib:/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib:/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib'
environment variable `GUIX_LOCPATH' set to `/gnu/store/mmqp1xqffn6qw6v88i627c2bpbq36fcy-glibc-utf8-locales-2.29/lib/locale'
environment variable `SSL_CERT_DIR' unset
environment variable `SSL_CERT_FILE' unset
phase `set-paths' succeeded after 0.0 seconds
starting phase `install-locale'
using 'en_US.utf8' locale for category "LC_ALL"
phase `install-locale' succeeded after 0.0 seconds
starting phase `unpack'
libtorrent-rasterbar-1.1.13/
libtorrent-rasterbar-1.1.13/docs/
libtorrent-rasterbar-1.1.13/docs/stats_counters.rst
libtorrent-rasterbar-1.1.13/docs/index.rst
libtorrent-rasterbar-1.1.13/docs/reference-Bencoding.html
libtorrent-rasterbar-1.1.13/docs/python_binding.rst
libtorrent-rasterbar-1.1.13/docs/tutorial.html
libtorrent-rasterbar-1.1.13/docs/ip_id_v4.png
libtorrent-rasterbar-1.1.13/docs/dht_extensions.rst
libtorrent-rasterbar-1.1.13/docs/our_delay_base_thumb.png
libtorrent-rasterbar-1.1.13/docs/troubleshooting.rst
libtorrent-rasterbar-1.1.13/docs/projects.html
libtorrent-rasterbar-1.1.13/docs/merkle_tree.png
libtorrent-rasterbar-1.1.13/docs/dht_sec.rst
libtorrent-rasterbar-1.1.13/docs/rst.css
libtorrent-rasterbar-1.1.13/docs/todo.html
libtorrent-rasterbar-1.1.13/docs/tuning.rst
libtorrent-rasterbar-1.1.13/docs/examples.html
libtorrent-rasterbar-1.1.13/docs/reference-Settings.html
libtorrent-rasterbar-1.1.13/docs/our_delay_base.png
libtorrent-rasterbar-1.1.13/docs/tutorial.rst
libtorrent-rasterbar-1.1.13/docs/reference-Utility.html
libtorrent-rasterbar-1.1.13/docs/client_test.html
libtorrent-rasterbar-1.1.13/docs/complete_bit_prefixes.png
libtorrent-rasterbar-1.1.13/docs/streaming.rst
libtorrent-rasterbar-1.1.13/docs/manual-ref.rst
libtorrent-rasterbar-1.1.13/docs/read_disk_buffers.diagram
libtorrent-rasterbar-1.1.13/docs/troubleshooting.dot
libtorrent-rasterbar-1.1.13/docs/storage.png
libtorrent-rasterbar-1.1.13/docs/cwnd_thumb.png
libtorrent-rasterbar-1.1.13/docs/tuning.html
libtorrent-rasterbar-1.1.13/docs/reference-Alerts.html
libtorrent-rasterbar-1.1.13/docs/dht_store.rst
libtorrent-rasterbar-1.1.13/docs/contributing.rst
libtorrent-rasterbar-1.1.13/docs/ip_id_v6.png
libtorrent-rasterbar-1.1.13/docs/contributing.html
libtorrent-rasterbar-1.1.13/docs/img/
libtorrent-rasterbar-1.1.13/docs/img/blue_bottom.png
libtorrent-rasterbar-1.1.13/docs/img/bg.png
libtorrent-rasterbar-1.1.13/docs/img/orange.png
libtorrent-rasterbar-1.1.13/docs/img/dotline.gif
libtorrent-rasterbar-1.1.13/docs/img/minus.gif
libtorrent-rasterbar-1.1.13/docs/img/blue_top.png
libtorrent-rasterbar-1.1.13/docs/python_binding.html
libtorrent-rasterbar-1.1.13/docs/troubleshooting.png
libtorrent-rasterbar-1.1.13/docs/reference-ed25519.html
libtorrent-rasterbar-1.1.13/docs/examples.rst
libtorrent-rasterbar-1.1.13/docs/reference-Storage.html
libtorrent-rasterbar-1.1.13/docs/manual-ref.html
libtorrent-rasterbar-1.1.13/docs/reference-Plugins.html
libtorrent-rasterbar-1.1.13/docs/reference.html
libtorrent-rasterbar-1.1.13/docs/dht_extensions.html
libtorrent-rasterbar-1.1.13/docs/single-page-ref.html
libtorrent-rasterbar-1.1.13/docs/reference-Filter.html
libtorrent-rasterbar-1.1.13/docs/building.html
libtorrent-rasterbar-1.1.13/docs/reference-Bdecoding.html
libtorrent-rasterbar-1.1.13/docs/utp.html
libtorrent-rasterbar-1.1.13/docs/features.rst
libtorrent-rasterbar-1.1.13/docs/dht_store.html
libtorrent-rasterbar-1.1.13/docs/projects.rst
libtorrent-rasterbar-1.1.13/docs/features.html
libtorrent-rasterbar-1.1.13/docs/bitcoin.png
libtorrent-rasterbar-1.1.13/docs/write_disk_buffers.diagram
libtorrent-rasterbar-1.1.13/docs/read_disk_buffers.png
libtorrent-rasterbar-1.1.13/docs/settings.rst
libtorrent-rasterbar-1.1.13/docs/reference-Create_Torrents.html
libtorrent-rasterbar-1.1.13/docs/utp_stack.diagram
libtorrent-rasterbar-1.1.13/docs/troubleshooting_thumb.png
libtorrent-rasterbar-1.1.13/docs/reference-Error_Codes.html
libtorrent-rasterbar-1.1.13/docs/building.rst
libtorrent-rasterbar-1.1.13/docs/dht_sec.html
libtorrent-rasterbar-1.1.13/docs/troubleshooting.html
libtorrent-rasterbar-1.1.13/docs/udp_tracker_protocol.html
libtorrent-rasterbar-1.1.13/docs/reference-Custom_Storage.html
libtorrent-rasterbar-1.1.13/docs/index.html
libtorrent-rasterbar-1.1.13/docs/delays.png
libtorrent-rasterbar-1.1.13/docs/disk_cache.diagram
libtorrent-rasterbar-1.1.13/docs/hash_distribution.png
libtorrent-rasterbar-1.1.13/docs/udp_tracker_protocol.rst
libtorrent-rasterbar-1.1.13/docs/extension_protocol.rst
libtorrent-rasterbar-1.1.13/docs/extension_protocol.html
libtorrent-rasterbar-1.1.13/docs/write_disk_buffers.png
libtorrent-rasterbar-1.1.13/docs/delays_thumb.png
libtorrent-rasterbar-1.1.13/docs/style.css
libtorrent-rasterbar-1.1.13/docs/dht_rss.rst
libtorrent-rasterbar-1.1.13/docs/client_test.rst
libtorrent-rasterbar-1.1.13/docs/hacking.diagram
libtorrent-rasterbar-1.1.13/docs/utp.rst
libtorrent-rasterbar-1.1.13/docs/hacking.png
libtorrent-rasterbar-1.1.13/docs/hacking.html
libtorrent-rasterbar-1.1.13/docs/disk_cache.png
libtorrent-rasterbar-1.1.13/docs/streaming.html
libtorrent-rasterbar-1.1.13/docs/client_test.png
libtorrent-rasterbar-1.1.13/docs/cwnd.png
libtorrent-rasterbar-1.1.13/docs/dht_rss.html
libtorrent-rasterbar-1.1.13/docs/reference-Core.html
libtorrent-rasterbar-1.1.13/docs/utp_stack.png
libtorrent-rasterbar-1.1.13/LibtorrentRasterbarConfig.cmake.in
libtorrent-rasterbar-1.1.13/cmake/
libtorrent-rasterbar-1.1.13/cmake/Modules/
libtorrent-rasterbar-1.1.13/cmake/Modules/ucm_flags.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/FindLibGcrypt.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/LibtorrentMacros.cmake
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/pkg-config.cmake.in
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/target-compile-settings.cmake.in
libtorrent-rasterbar-1.1.13/cmake/Modules/GeneratePkgConfig/generate-pkg-config.cmake.in
libtorrent-rasterbar-1.1.13/configure.ac
libtorrent-rasterbar-1.1.13/build-aux/
libtorrent-rasterbar-1.1.13/build-aux/missing
libtorrent-rasterbar-1.1.13/build-aux/config.guess
libtorrent-rasterbar-1.1.13/build-aux/ltmain.sh
libtorrent-rasterbar-1.1.13/build-aux/depcomp
libtorrent-rasterbar-1.1.13/build-aux/config.sub
libtorrent-rasterbar-1.1.13/build-aux/config.rpath
libtorrent-rasterbar-1.1.13/build-aux/compile
libtorrent-rasterbar-1.1.13/build-aux/test-driver
libtorrent-rasterbar-1.1.13/build-aux/install-sh
libtorrent-rasterbar-1.1.13/bindings/
libtorrent-rasterbar-1.1.13/bindings/README.txt
libtorrent-rasterbar-1.1.13/bindings/python/
libtorrent-rasterbar-1.1.13/bindings/python/compile_flags.in
libtorrent-rasterbar-1.1.13/bindings/python/client.py
libtorrent-rasterbar-1.1.13/bindings/python/setup.py
libtorrent-rasterbar-1.1.13/bindings/python/make_torrent.py
libtorrent-rasterbar-1.1.13/bindings/python/setup.py.cmake.in
libtorrent-rasterbar-1.1.13/bindings/python/Jamfile
libtorrent-rasterbar-1.1.13/bindings/python/Makefile.am
libtorrent-rasterbar-1.1.13/bindings/python/CMakeLists.txt
libtorrent-rasterbar-1.1.13/bindings/python/simple_client.py
libtorrent-rasterbar-1.1.13/bindings/python/link_flags.in
libtorrent-rasterbar-1.1.13/bindings/python/src/
libtorrent-rasterbar-1.1.13/bindings/python/src/optional.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/version.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/utility.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/gil.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/string.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/alert.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/module.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/bytes.hpp
libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp
libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.cpp
libtorrent-rasterbar-1.1.13/bindings/python/Makefile.in
libtorrent-rasterbar-1.1.13/bindings/Makefile.am
libtorrent-rasterbar-1.1.13/bindings/CMakeLists.txt
libtorrent-rasterbar-1.1.13/bindings/Makefile.in
libtorrent-rasterbar-1.1.13/m4/
libtorrent-rasterbar-1.1.13/m4/libtool.m4
libtorrent-rasterbar-1.1.13/m4/ltversion.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_base.m4
libtorrent-rasterbar-1.1.13/m4/lt~obsolete.m4
libtorrent-rasterbar-1.1.13/m4/ax_python_devel.m4
libtorrent-rasterbar-1.1.13/m4/iconv.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_python.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_random.m4
libtorrent-rasterbar-1.1.13/m4/gettext-lib.m4
libtorrent-rasterbar-1.1.13/m4/ax_check_openssl.m4
libtorrent-rasterbar-1.1.13/m4/ltoptions.m4
libtorrent-rasterbar-1.1.13/m4/pkgconfig.m4
libtorrent-rasterbar-1.1.13/m4/ltsugar.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_chrono.m4
libtorrent-rasterbar-1.1.13/m4/ax_pthread.m4
libtorrent-rasterbar-1.1.13/m4/ax_boost_system.m4
libtorrent-rasterbar-1.1.13/COPYING
libtorrent-rasterbar-1.1.13/tools/
libtorrent-rasterbar-1.1.13/tools/parse_session_stats.py
libtorrent-rasterbar-1.1.13/tools/parse_peer_log.py
libtorrent-rasterbar-1.1.13/tools/parse_sample.py
libtorrent-rasterbar-1.1.13/tools/parse_buffer_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_stats.py
libtorrent-rasterbar-1.1.13/tools/parse_disk_log.py
libtorrent-rasterbar-1.1.13/tools/Jamfile
libtorrent-rasterbar-1.1.13/tools/parse_disk_buffer_log.py
libtorrent-rasterbar-1.1.13/tools/Makefile.am
libtorrent-rasterbar-1.1.13/tools/parse_utp_log.py
libtorrent-rasterbar-1.1.13/tools/parse_dht_rtt.py
libtorrent-rasterbar-1.1.13/tools/parse_bandwidth_log.py
libtorrent-rasterbar-1.1.13/tools/parse_memory_log.py
libtorrent-rasterbar-1.1.13/tools/Makefile.in
libtorrent-rasterbar-1.1.13/configure
libtorrent-rasterbar-1.1.13/libtorrent-rasterbar.pc.in
libtorrent-rasterbar-1.1.13/setup.py
libtorrent-rasterbar-1.1.13/NEWS
libtorrent-rasterbar-1.1.13/test/
libtorrent-rasterbar-1.1.13/test/setup_transfer.cpp
libtorrent-rasterbar-1.1.13/test/test_checking.cpp
libtorrent-rasterbar-1.1.13/test/swarm_suite.hpp
libtorrent-rasterbar-1.1.13/test/test_primitives.cpp
libtorrent-rasterbar-1.1.13/test/main.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_http.cpp
libtorrent-rasterbar-1.1.13/test/test_ip_voter.cpp
libtorrent-rasterbar-1.1.13/test/test_resume.cpp
libtorrent-rasterbar-1.1.13/test/test_ssl.cpp
libtorrent-rasterbar-1.1.13/test/test_peer_list.cpp
libtorrent-rasterbar-1.1.13/test/swarm_suite.cpp
libtorrent-rasterbar-1.1.13/test/test_auto_unchoke.cpp
libtorrent-rasterbar-1.1.13/test/test_ip_filter.cpp
libtorrent-rasterbar-1.1.13/test/test_piece_picker.cpp
libtorrent-rasterbar-1.1.13/test/settings.hpp
libtorrent-rasterbar-1.1.13/test/test_linked_list.cpp
libtorrent-rasterbar-1.1.13/test/test_tracker.cpp
libtorrent-rasterbar-1.1.13/test/test_packet_buffer.cpp
libtorrent-rasterbar-1.1.13/test/test_remap_files.cpp
libtorrent-rasterbar-1.1.13/test/test_string.cpp
libtorrent-rasterbar-1.1.13/test/test_timestamp_history.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5_pw.cpp
libtorrent-rasterbar-1.1.13/test/test_buffer.cpp
libtorrent-rasterbar-1.1.13/test/settings.cpp
libtorrent-rasterbar-1.1.13/test/peer_server.cpp
libtorrent-rasterbar-1.1.13/test/test_random.cpp
libtorrent-rasterbar-1.1.13/test/test_bandwidth_limiter.cpp
libtorrent-rasterbar-1.1.13/test/test_torrents/
libtorrent-rasterbar-1.1.13/test/test_torrents/symlink_zero_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/missing_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_path_multi.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/unordered.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/hidden_parent_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/unaligned_pieces.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/creation_date.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/string.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_root_hash2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi_space.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/symlink1.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_symlink.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/httpseed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/no_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/base.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_httpseed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/parent_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_root_hash.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_piece_len.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_pieces.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/whitespace_url.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/no_creation_date.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/backslash_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_filename.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_merkle.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/duplicate_files.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/missing_path_list.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi_space_nolist.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/pad_file_no_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_name3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/duplicate_web_seeds.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/pad_file.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_file_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/empty_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/negative_file_size.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_seed_multi.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_filename2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/root_hash.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/single_multi_file.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/long_name.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/sample.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/slash_path3.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/url_list2.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_info.torrent
libtorrent-rasterbar-1.1.13/test/test_torrents/invalid_path_list.torrent
libtorrent-rasterbar-1.1.13/test/test_ed25519.cpp
libtorrent-rasterbar-1.1.13/test/test_upnp.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_http_pw.cpp
libtorrent-rasterbar-1.1.13/test/http.py
libtorrent-rasterbar-1.1.13/test/test_gzip.cpp
libtorrent-rasterbar-1.1.13/test/dht_server.cpp
libtorrent-rasterbar-1.1.13/test/udp_tracker.cpp
libtorrent-rasterbar-1.1.13/test/test_url_seed.cpp
libtorrent-rasterbar-1.1.13/test/test_direct_dht.cpp
libtorrent-rasterbar-1.1.13/test/make_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_http_connection.cpp
libtorrent-rasterbar-1.1.13/test/bdecode_benchmark.cpp
libtorrent-rasterbar-1.1.13/test/test_merkle.cpp
libtorrent-rasterbar-1.1.13/test/enum_if.cpp
libtorrent-rasterbar-1.1.13/test/zeroes.gz
libtorrent-rasterbar-1.1.13/test/udp_tracker.hpp
libtorrent-rasterbar-1.1.13/test/web_server.py
libtorrent-rasterbar-1.1.13/test/test_identify_client.cpp
libtorrent-rasterbar-1.1.13/test/test_tailqueue.cpp
libtorrent-rasterbar-1.1.13/test/test_xml.cpp
libtorrent-rasterbar-1.1.13/test/corrupt.gz
libtorrent-rasterbar-1.1.13/test/test.cpp
libtorrent-rasterbar-1.1.13/test/make_torrent.hpp
libtorrent-rasterbar-1.1.13/test/test_http_parser.cpp
libtorrent-rasterbar-1.1.13/test/test_priority.cpp
libtorrent-rasterbar-1.1.13/test/test_file_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_bdecode.cpp
libtorrent-rasterbar-1.1.13/test/test_stat_cache.cpp
libtorrent-rasterbar-1.1.13/test/test_stack_allocator.cpp
libtorrent-rasterbar-1.1.13/test/bittorrent_peer.cpp
libtorrent-rasterbar-1.1.13/test/web_seed_suite.hpp
libtorrent-rasterbar-1.1.13/test/test_peer_priority.cpp
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_single.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_single_padded.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test2_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test3.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test2.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test3_pad_files.torrent
libtorrent-rasterbar-1.1.13/test/mutable_test_torrents/test1.torrent
libtorrent-rasterbar-1.1.13/test/dht_server.hpp
libtorrent-rasterbar-1.1.13/test/utf8_test.txt
libtorrent-rasterbar-1.1.13/test/test_pex.cpp
libtorrent-rasterbar-1.1.13/test/print_alerts.hpp
libtorrent-rasterbar-1.1.13/test/test_pe_crypto.cpp
libtorrent-rasterbar-1.1.13/test/bittorrent_peer.hpp
libtorrent-rasterbar-1.1.13/test/test_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_magnet.cpp
libtorrent-rasterbar-1.1.13/test/test_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_socket_io.cpp
libtorrent-rasterbar-1.1.13/test/test_torrent_info.cpp
libtorrent-rasterbar-1.1.13/test/test_block_cache.cpp
libtorrent-rasterbar-1.1.13/test/test_fast_extension.cpp
libtorrent-rasterbar-1.1.13/test/test_utp.cpp
libtorrent-rasterbar-1.1.13/test/test_utils.hpp
libtorrent-rasterbar-1.1.13/test/test_heterogeneous_queue.cpp
libtorrent-rasterbar-1.1.13/test/test_threads.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_chunked.cpp
libtorrent-rasterbar-1.1.13/test/test_utils.cpp
libtorrent-rasterbar-1.1.13/test/test_sha1_hash.cpp
libtorrent-rasterbar-1.1.13/test/test_time.cpp
libtorrent-rasterbar-1.1.13/test/Jamfile
libtorrent-rasterbar-1.1.13/test/test_file_progress.cpp
libtorrent-rasterbar-1.1.13/test/test_file.cpp
libtorrent-rasterbar-1.1.13/test/Makefile.am
libtorrent-rasterbar-1.1.13/test/test_sliding_average.cpp
libtorrent-rasterbar-1.1.13/test/test_bloom_filter.cpp
libtorrent-rasterbar-1.1.13/test/setup_transfer.hpp
libtorrent-rasterbar-1.1.13/test/test_create_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_bitfield.cpp
libtorrent-rasterbar-1.1.13/test/CMakeLists.txt
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5_no_peers.cpp
libtorrent-rasterbar-1.1.13/test/test_privacy.cpp
libtorrent-rasterbar-1.1.13/test/test_peer_classes.cpp
libtorrent-rasterbar-1.1.13/test/socks.py
libtorrent-rasterbar-1.1.13/test/test_hasher.cpp
libtorrent-rasterbar-1.1.13/test/test_session.cpp
libtorrent-rasterbar-1.1.13/test/print_alerts.cpp
libtorrent-rasterbar-1.1.13/test/test_crc32.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_ban.cpp
libtorrent-rasterbar-1.1.13/test/test_lsd.cpp
libtorrent-rasterbar-1.1.13/test/test_settings_pack.cpp
libtorrent-rasterbar-1.1.13/test/test_dht.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks5.cpp
libtorrent-rasterbar-1.1.13/test/test_dos_blocker.cpp
libtorrent-rasterbar-1.1.13/test/peer_server.hpp
libtorrent-rasterbar-1.1.13/test/test_alert_manager.cpp
libtorrent-rasterbar-1.1.13/test/test_bencoding.cpp
libtorrent-rasterbar-1.1.13/test/test_resolve_links.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_socks4.cpp
libtorrent-rasterbar-1.1.13/test/test_recheck.cpp
libtorrent-rasterbar-1.1.13/test/test_utf8.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed_redirect.cpp
libtorrent-rasterbar-1.1.13/test/test_web_seed.cpp
libtorrent-rasterbar-1.1.13/test/web_seed_suite.cpp
libtorrent-rasterbar-1.1.13/test/test_remove_torrent.cpp
libtorrent-rasterbar-1.1.13/test/test_enum_net.cpp
libtorrent-rasterbar-1.1.13/test/test_read_piece.cpp
libtorrent-rasterbar-1.1.13/test/test_transfer.cpp
libtorrent-rasterbar-1.1.13/test/test_part_file.cpp
libtorrent-rasterbar-1.1.13/test/test_receive_buffer.cpp
libtorrent-rasterbar-1.1.13/test/test.hpp
libtorrent-rasterbar-1.1.13/test/Makefile.in
libtorrent-rasterbar-1.1.13/test/test_dht_storage.cpp
libtorrent-rasterbar-1.1.13/test/test_fence.cpp
libtorrent-rasterbar-1.1.13/test/test_time_critical.cpp
libtorrent-rasterbar-1.1.13/ChangeLog
libtorrent-rasterbar-1.1.13/Jamroot.jam
libtorrent-rasterbar-1.1.13/ed25519/
libtorrent-rasterbar-1.1.13/ed25519/test.c
libtorrent-rasterbar-1.1.13/ed25519/src/
libtorrent-rasterbar-1.1.13/ed25519/src/sha512.h
libtorrent-rasterbar-1.1.13/ed25519/src/fe.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/sign.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/fixedint.h
libtorrent-rasterbar-1.1.13/ed25519/src/ge.h
libtorrent-rasterbar-1.1.13/ed25519/src/sc.h
libtorrent-rasterbar-1.1.13/ed25519/src/sc.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/ge.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/precomp_data.h
libtorrent-rasterbar-1.1.13/ed25519/src/add_scalar.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/sha512.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/verify.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/seed.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/key_exchange.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/keypair.cpp
libtorrent-rasterbar-1.1.13/ed25519/src/fe.h
libtorrent-rasterbar-1.1.13/ed25519/readme.md
libtorrent-rasterbar-1.1.13/README.rst
libtorrent-rasterbar-1.1.13/include/
libtorrent-rasterbar-1.1.13/include/libtorrent/
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/escape_string.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/alert_manager_variadic_emplace.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/cpuid.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_impl.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/disable_warnings_pop.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/openssl.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/proxy_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/time.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/byteswap.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/merkle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/route.h
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/file_progress.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/allocating_handler.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/session_call.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/aux_/disable_warnings_push.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_superclass.h
libtorrent-rasterbar-1.1.13/include/libtorrent/tailqueue.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/uncork_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_io.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/udp_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/string_util.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/chained_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_private.h
libtorrent-rasterbar-1.1.13/include/libtorrent/stat_cache.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/config.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/performance_counters.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath_class.h
libtorrent-rasterbar-1.1.13/include/libtorrent/resolver_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/thread_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/error_code.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/packet_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/lazy_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_status.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_stats.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/piece_picker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/natpmp.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_tracker_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/upnp.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utf8.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/network_thread_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utp_socket_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_limit.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/block_cache.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_buffer_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ed25519.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/ut_metadata.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/lt_trackers.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/smart_ban.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/metadata_transfer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions/ut_pex.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/piece_block_progress.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/extensions.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/rss.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session_settings.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/session.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ConvertUTF.h
libtorrent-rasterbar-1.1.13/include/libtorrent/sha1_hash.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/enum_net.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_job_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/instantiate_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/stack_allocator.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/build_config.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/traversal_algorithm.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dos_blocker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/get_peers.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/direct_request.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/msg.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node_id.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/rpc_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/routing_table.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/find_data.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/node_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/put_data.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_tracker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/get_item.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/refresh.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/dht_observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/kademlia/item.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/gzip.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bdecode.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bloom_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/assert.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/xml_parse.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/link.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_peer_allocator.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/puff.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/lsd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/error.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/timestamp_history.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/time.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/settings_pack.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_id.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/platform_util.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/union_endpoint.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/address.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/proxy_base.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/magnet_uri.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/create_torrent.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/thread.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/hex.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/operations.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/vector_utils.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_status.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_seed_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/linked_list.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bencode.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/random.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io_service_fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/stat.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_list.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_type.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tommath.h
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_connection_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/announce_entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bitfield.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/heterogeneous_queue.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/http_parser.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/copy_ptr.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/broadcast_socket.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/identify_client.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socks5_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/request_blocks.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/deadline_timer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/Makefile.am
libtorrent-rasterbar-1.1.13/include/libtorrent/hasher.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/receive_buffer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/file_pool.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/debug.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bt_peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/io_service.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alert_types.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/max.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/entry.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class_set.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/part_file.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/version.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/export.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/close_reason.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/choker.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/fingerprint.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/i2p_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_io_job.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_interface.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/crc32c.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_class_type_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_handle.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_io_thread.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_peer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/resolve_links.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/file.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_buffer_holder.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ip_voter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/utp_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/sha1.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/tracker_manager.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent_info.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/parse_url.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/pe_crypto.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/udp_tracker_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/add_torrent_params.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/sliding_average.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/alloca.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/web_connection_base.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_info.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/torrent.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/peer_request.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/storage_defs.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/web_peer_connection.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/resolver.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/disk_observer.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/Makefile.in
libtorrent-rasterbar-1.1.13/include/libtorrent/file_storage.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/invariant_check.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ssl_stream.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/socket_type_fwd.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/ip_filter.hpp
libtorrent-rasterbar-1.1.13/include/libtorrent/bandwidth_queue_entry.hpp
libtorrent-rasterbar-1.1.13/Jamfile
libtorrent-rasterbar-1.1.13/Makefile.am
libtorrent-rasterbar-1.1.13/CMakeLists.txt
libtorrent-rasterbar-1.1.13/aclocal.m4
libtorrent-rasterbar-1.1.13/examples/
libtorrent-rasterbar-1.1.13/examples/cmake/
libtorrent-rasterbar-1.1.13/examples/cmake/FindLibtorrentRasterbar.cmake
libtorrent-rasterbar-1.1.13/examples/dump_torrent.cpp
libtorrent-rasterbar-1.1.13/examples/bt-get.cpp
libtorrent-rasterbar-1.1.13/examples/print.cpp
libtorrent-rasterbar-1.1.13/examples/print.hpp
libtorrent-rasterbar-1.1.13/examples/make_torrent.cpp
libtorrent-rasterbar-1.1.13/examples/simple_client.cpp
libtorrent-rasterbar-1.1.13/examples/session_view.cpp
libtorrent-rasterbar-1.1.13/examples/bt-get2.cpp
libtorrent-rasterbar-1.1.13/examples/connection_tester.cpp
libtorrent-rasterbar-1.1.13/examples/client_test.cpp
libtorrent-rasterbar-1.1.13/examples/run_cmake.sh.in
libtorrent-rasterbar-1.1.13/examples/torrent_view.hpp
libtorrent-rasterbar-1.1.13/examples/torrent_view.cpp
libtorrent-rasterbar-1.1.13/examples/Jamfile
libtorrent-rasterbar-1.1.13/examples/Makefile.am
libtorrent-rasterbar-1.1.13/examples/upnp_test.cpp
libtorrent-rasterbar-1.1.13/examples/session_view.hpp
libtorrent-rasterbar-1.1.13/examples/CMakeLists.txt
libtorrent-rasterbar-1.1.13/examples/stats_counters.cpp
libtorrent-rasterbar-1.1.13/examples/Makefile.in
libtorrent-rasterbar-1.1.13/AUTHORS
libtorrent-rasterbar-1.1.13/src/
libtorrent-rasterbar-1.1.13/src/performance_counters.cpp
libtorrent-rasterbar-1.1.13/src/ut_metadata.cpp
libtorrent-rasterbar-1.1.13/src/instantiate_connection.cpp
libtorrent-rasterbar-1.1.13/src/version.cpp
libtorrent-rasterbar-1.1.13/src/ut_pex.cpp
libtorrent-rasterbar-1.1.13/src/hasher.cpp
libtorrent-rasterbar-1.1.13/src/disk_buffer_pool.cpp
libtorrent-rasterbar-1.1.13/src/peer_class_set.cpp
libtorrent-rasterbar-1.1.13/src/fingerprint.cpp
libtorrent-rasterbar-1.1.13/src/puff.cpp
libtorrent-rasterbar-1.1.13/src/crc32c.cpp
libtorrent-rasterbar-1.1.13/src/ConvertUTF.cpp
libtorrent-rasterbar-1.1.13/src/resolve_links.cpp
libtorrent-rasterbar-1.1.13/src/string_util.cpp
libtorrent-rasterbar-1.1.13/src/timestamp_history.cpp
libtorrent-rasterbar-1.1.13/src/socks5_stream.cpp
libtorrent-rasterbar-1.1.13/src/bdecode.cpp
libtorrent-rasterbar-1.1.13/src/session_handle.cpp
libtorrent-rasterbar-1.1.13/src/peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/gzip.cpp
libtorrent-rasterbar-1.1.13/src/disk_buffer_holder.cpp
libtorrent-rasterbar-1.1.13/src/torrent_info.cpp
libtorrent-rasterbar-1.1.13/src/magnet_uri.cpp
libtorrent-rasterbar-1.1.13/src/upnp.cpp
libtorrent-rasterbar-1.1.13/src/part_file.cpp
libtorrent-rasterbar-1.1.13/src/utp_socket_manager.cpp
libtorrent-rasterbar-1.1.13/src/packet_buffer.cpp
libtorrent-rasterbar-1.1.13/src/session.cpp
libtorrent-rasterbar-1.1.13/src/session_settings.cpp
libtorrent-rasterbar-1.1.13/src/natpmp.cpp
libtorrent-rasterbar-1.1.13/src/storage.cpp
libtorrent-rasterbar-1.1.13/src/http_tracker_connection.cpp
libtorrent-rasterbar-1.1.13/src/session_impl.cpp
libtorrent-rasterbar-1.1.13/src/peer_connection_handle.cpp
libtorrent-rasterbar-1.1.13/src/sha1.cpp
libtorrent-rasterbar-1.1.13/src/http_stream.cpp
libtorrent-rasterbar-1.1.13/src/disk_job_pool.cpp
libtorrent-rasterbar-1.1.13/src/mpi.cpp
libtorrent-rasterbar-1.1.13/src/cpuid.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/
libtorrent-rasterbar-1.1.13/src/kademlia/get_peers.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/item.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/get_item.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node_entry.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/traversal_algorithm.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/refresh.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/routing_table.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/put_data.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/node_id.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/rpc_manager.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dos_blocker.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/msg.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dht_storage.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/find_data.cpp
libtorrent-rasterbar-1.1.13/src/kademlia/dht_tracker.cpp
libtorrent-rasterbar-1.1.13/src/i2p_stream.cpp
libtorrent-rasterbar-1.1.13/src/disk_io_job.cpp
libtorrent-rasterbar-1.1.13/src/socket_io.cpp
libtorrent-rasterbar-1.1.13/src/file_pool.cpp
libtorrent-rasterbar-1.1.13/src/assert.cpp
libtorrent-rasterbar-1.1.13/src/thread.cpp
libtorrent-rasterbar-1.1.13/src/torrent.cpp
libtorrent-rasterbar-1.1.13/src/rss.cpp
libtorrent-rasterbar-1.1.13/src/choker.cpp
libtorrent-rasterbar-1.1.13/src/resolver.cpp
libtorrent-rasterbar-1.1.13/src/request_blocks.cpp
libtorrent-rasterbar-1.1.13/src/web_connection_base.cpp
libtorrent-rasterbar-1.1.13/src/broadcast_socket.cpp
libtorrent-rasterbar-1.1.13/src/utp_stream.cpp
libtorrent-rasterbar-1.1.13/src/bloom_filter.cpp
libtorrent-rasterbar-1.1.13/src/hex.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_queue_entry.cpp
libtorrent-rasterbar-1.1.13/src/stat.cpp
libtorrent-rasterbar-1.1.13/src/ip_filter.cpp
libtorrent-rasterbar-1.1.13/src/close_reason.cpp
libtorrent-rasterbar-1.1.13/src/xml_parse.cpp
libtorrent-rasterbar-1.1.13/src/ip_voter.cpp
libtorrent-rasterbar-1.1.13/src/lsd.cpp
libtorrent-rasterbar-1.1.13/src/proxy_settings.cpp
libtorrent-rasterbar-1.1.13/src/lazy_bdecode.cpp
libtorrent-rasterbar-1.1.13/src/udp_tracker_connection.cpp
libtorrent-rasterbar-1.1.13/src/stat_cache.cpp
libtorrent-rasterbar-1.1.13/src/peer_class.cpp
libtorrent-rasterbar-1.1.13/src/platform_util.cpp
libtorrent-rasterbar-1.1.13/src/error_code.cpp
libtorrent-rasterbar-1.1.13/src/metadata_transfer.cpp
libtorrent-rasterbar-1.1.13/src/alert_manager.cpp
libtorrent-rasterbar-1.1.13/src/bt_peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/torrent_peer.cpp
libtorrent-rasterbar-1.1.13/src/receive_buffer.cpp
libtorrent-rasterbar-1.1.13/src/peer_list.cpp
libtorrent-rasterbar-1.1.13/src/utf8.cpp
libtorrent-rasterbar-1.1.13/src/time.cpp
libtorrent-rasterbar-1.1.13/src/Makefile.am
libtorrent-rasterbar-1.1.13/src/piece_picker.cpp
libtorrent-rasterbar-1.1.13/src/torrent_peer_allocator.cpp
libtorrent-rasterbar-1.1.13/src/torrent_handle.cpp
libtorrent-rasterbar-1.1.13/src/identify_client.cpp
libtorrent-rasterbar-1.1.13/src/session_call.cpp
libtorrent-rasterbar-1.1.13/src/file_progress.cpp
libtorrent-rasterbar-1.1.13/src/lt_trackers.cpp
libtorrent-rasterbar-1.1.13/src/session_stats.cpp
libtorrent-rasterbar-1.1.13/src/random.cpp
libtorrent-rasterbar-1.1.13/src/web_peer_connection.cpp
libtorrent-rasterbar-1.1.13/src/smart_ban.cpp
libtorrent-rasterbar-1.1.13/src/create_torrent.cpp
libtorrent-rasterbar-1.1.13/src/escape_string.cpp
libtorrent-rasterbar-1.1.13/src/disk_io_thread.cpp
libtorrent-rasterbar-1.1.13/src/tracker_manager.cpp
libtorrent-rasterbar-1.1.13/src/http_seed_connection.cpp
libtorrent-rasterbar-1.1.13/src/alert.cpp
libtorrent-rasterbar-1.1.13/src/announce_entry.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_limit.cpp
libtorrent-rasterbar-1.1.13/src/settings_pack.cpp
libtorrent-rasterbar-1.1.13/src/proxy_base.cpp
libtorrent-rasterbar-1.1.13/src/http_parser.cpp
libtorrent-rasterbar-1.1.13/src/enum_net.cpp
libtorrent-rasterbar-1.1.13/src/pe_crypto.cpp
libtorrent-rasterbar-1.1.13/src/udp_socket.cpp
libtorrent-rasterbar-1.1.13/src/bandwidth_manager.cpp
libtorrent-rasterbar-1.1.13/src/bitfield.cpp
libtorrent-rasterbar-1.1.13/src/file_storage.cpp
libtorrent-rasterbar-1.1.13/src/http_connection.cpp
libtorrent-rasterbar-1.1.13/src/entry.cpp
libtorrent-rasterbar-1.1.13/src/block_cache.cpp
libtorrent-rasterbar-1.1.13/src/parse_url.cpp
libtorrent-rasterbar-1.1.13/src/file.cpp
libtorrent-rasterbar-1.1.13/src/chained_buffer.cpp
libtorrent-rasterbar-1.1.13/src/Makefile.in
libtorrent-rasterbar-1.1.13/src/socket_type.cpp
libtorrent-rasterbar-1.1.13/src/torrent_status.cpp
libtorrent-rasterbar-1.1.13/src/merkle.cpp
libtorrent-rasterbar-1.1.13/LICENSE
libtorrent-rasterbar-1.1.13/Makefile.in
phase `unpack' succeeded after 0.1 seconds
starting phase `bootstrap'
GNU build system bootstrapping not needed
phase `bootstrap' succeeded after 0.0 seconds
starting phase `patch-usr-bin-file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
patch-/usr/bin/file: ./configure: changing `/usr/bin/file' to `/gnu/store/6jdshxwdrad9mlhcqc9k0g24yw45rqf1-file-5.33/bin/file'
phase `patch-usr-bin-file' succeeded after 0.1 seconds
starting phase `patch-source-shebangs'
patch-shebang: ./bindings/python/client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/make_torrent.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/setup.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/simple_client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./build-aux/compile: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.guess: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.rpath: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/config.sub: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/depcomp: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/install-sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/ltmain.sh: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/missing: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./build-aux/test-driver: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./configure: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./examples/run_cmake.sh.in: changing `/bin/sh' to `/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/sh'
patch-shebang: ./setup.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/socks.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/web_server.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_bandwidth_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_rtt.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_memory_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_peer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_sample.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_session_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_utp_log.py: warning: no binary for interpreter `python' found in $PATH
phase `patch-source-shebangs' succeeded after 0.1 seconds
starting phase `configure'
source directory: "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13" (relative from build: ".")
build directory: "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13"
configure flags: ("CONFIG_SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "SHELL=/gnu/store/29jhbbg1hf557x8j53f9sxd9imlmf02a-bash-minimal-5.0.7/bin/bash" "--prefix=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13" "--enable-fast-install" "--build=x86_64-unknown-linux-gnu" "--with-boost-libdir=/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib" "--enable-python-binding" "--enable-tests")
checking whether make supports nested variables... yes
Building libtorrent-rasterbar 1.1.13
Checking for a C/C++ compiler to use:
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 how to run the C preprocessor... gcc -E
checking whether gcc and cc understand -c and -o together... yes
checking for g++... g++
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 g++ understands -c and -o together... yes
Checking system type:
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
Initializing Automake:
checking for a BSD-compatible install... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... no
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking dependency style of g++... gcc3
checking whether to enable maintainer-specific portions of Makefiles... yes
Initializing Libtool:
checking how to print strings... printf
checking for a sed that does not truncate output... /gnu/store/afmvfw1yhfal48n1kjq6bk6kcw8sc3db-sed-4.7/bin/sed
checking for grep that handles long lines and -e... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep
checking for egrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -E
checking for fgrep... /gnu/store/7iyvxhp2g3v3655zqwr6biz2h0lqv7pr-grep-3.3/bin/grep -F
checking for ld used by gcc... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B
checking the name lister (/gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/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-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
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 /gnu/store/3hkdiscs4910r75njbrql10znxxn7chk-binutils-2.32/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd
checking how to truncate binary pipes... /gnu/store/9kzrrccpzl6i1sfwb0drb00gi2gwk0x0-coreutils-8.31/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
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 (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 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... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64
checking if the linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 (/gnu/store/nc5vlidpxbvngalng30nif8nb3j7gfy2-ld-wrapper-0/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 posix thread support:
checking for the pthreads library -lpthreads... no
checking whether pthreads work without any flags... no
checking whether pthreads work with -Kthread... no
checking whether pthreads work with -kthread... no
checking for the pthreads library -llthread... no
checking whether pthreads work with -lpthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking whether to check for GCC pthread/shared inconsistencies... yes
checking whether -lpthread fixes that... yes
Checking for visibility support:
checking for __attribute__((visibility("hidden")))... found
yes
Checking for boost libraries:
checking for boostlib >= 1.53... yes
checking whether the Boost::System library is available... yes
checking for exit in -lboost_system... yes
checking whether the Boost::Chrono library is available... yes
checking for exit in -lboost_chrono... yes
checking whether the Boost::Random library is available... yes
checking for exit in -lboost_random... yes
Checking for pkg-config:
checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking pkg-config is at least version 0.20... yes
Checking for functions and headers:
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) no
checking for clock_gettime... yes
Checking build options:
checking whether deprecated functions should be enabled... yes
checking whether debug build should be enabled... no
checking whether invariant check should be enabled... no
checking whether logging to disk should be enabled... yes
checking whether disk activity logging should be enabled... no
Checking features to be enabled:
checking whether encryption support should be enabled... yes
configure: encryption support: now checking for the OpenSSL library...
checking for pkg-config... /gnu/store/i1cqaixp79vd3qwnyj1ll10pq6skm2wk-pkg-config-0.29.2/bin/pkg-config
checking whether compiling and linking against OpenSSL works... yes
checking whether dht support should be enabled... yes
checking whether pool allocators should be enabled... yes
Checking for extra build files:
checking whether example files should be built... no
checking whether test files should be built... yes
checking whether python bindings should be built... yes
checking for a Python interpreter with version >= 2.4... python3
checking for python3... /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
checking for python3 version... 3.7
checking for python3 platform... linux
checking for python3 script directory... ${prefix}/lib/python3.7/site-packages
checking for python3 extension module directory... ${exec_prefix}/lib/python3.7/site-packages
checking for python3.7... (cached) /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
checking for a version of Python >= '2.1.0'... yes
checking for a version of Python >= '2.4'... yes
checking for the distutils Python package... grep: Trailing backslash
yes
checking for Python include path... -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m
checking for Python library path... -L/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -lpython3.7m
checking for Python site-packages path... /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib/python3.7/site-packages
checking python extra libraries... -lcrypt -lpthread -ldl -lutil -lm
checking python extra linking flags... -Xlinker -export-dynamic
checking consistency of all components of python development environment... yes
checking whether the Boost::Python library is available... yes
checking whether boost_python is the correct library... yes
Checking for external libraries:
checking whether to link against system libiconv... checking for shared library run path origin... done
Generating Makefiles:
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating include/libtorrent/Makefile
config.status: creating examples/Makefile
config.status: creating test/Makefile
config.status: creating tools/Makefile
config.status: creating bindings/Makefile
config.status: creating bindings/python/Makefile
config.status: creating bindings/python/link_flags
config.status: creating bindings/python/compile_flags
config.status: creating libtorrent-rasterbar.pc
config.status: executing depfiles commands
config.status: executing libtool commands
Configure script has finished system check.
Config results:
-=-=-=-=-=-=-=-=-
Package:
name: libtorrent-rasterbar
version: 1.1.13
git revision: 9b0ebc207
Build environment:
build system: x86_64-unknown-linux-gnu
host system: x86_64-unknown-linux-gnu
target system: x86_64-unknown-linux-gnu
Compiler and linker flags:
CPPFlags:
CFlags: -lpthread -g -O2 -fvisibility=hidden
CXXFlags: -g -O2 -ftemplate-depth=120 -Wno-format-zero-length -fvisibility=hidden -fvisibility-inlines-hidden
LDFlags: -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -fvisibility=hidden -fvisibility-inlines-hidden
Libs: -lboost_chrono -lboost_random -lpthread
Defs: -DPACKAGE_NAME=\"libtorrent-rasterbar\" -DPACKAGE_TARNAME=\"libtorrent-rasterbar\" -DPACKAGE_VERSION=\"1.1.13\" -DPACKAGE_STRING=\"libtorrent-rasterbar\ 1.1.13\" -DPACKAGE_BUGREPORT=\"arvid@libtorrent.org\" -DPACKAGE_URL=\"http://www.libtorrent.org\" -DPACKAGE=\"libtorrent-rasterbar\" -DVERSION=\"1.1.13\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_PTHREAD=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_CHRONO=/\*\*/ -DHAVE_BOOST_RANDOM=/\*\*/ -DHAVE_CLOCK_GETTIME=1 -DNDEBUG=1 -DTORRENT_USE_OPENSSL=1 -DTORRENT_EXPORT_EXTRA=1 -DHAVE_PYTHON=\"3.7\" -DHAVE_BOOST_PYTHON=/\*\*/ -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE=1 -DBOOST_ASIO_ENABLE_CANCELIO=1 -DTORRENT_BUILDING_SHARED=1
Build options:
deprecated functions: yes
debug build: no
invariant checks: no
logging support: yes
disk statistics: no
Features:
encryption support: yes
dht support: yes
pool allocators: yes
Extra builds:
examples: no
tests: yes
python bindings: yes
Pthread library:
CFlags: -lpthread
Libs: -lpthread
Boost libraries:
version:
CPPFlags:
LDFlags: -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib
boost.system: -lboost_system
boost.chrono: -lboost_chrono
boost.random: -lboost_random
boost.python: -lboost_python
Python environment:
-automake-
binary: /gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3
version: 3.7
platform: linux
prefix: ${prefix}
exec_prefix: ${exec_prefix}
pythondir: ${prefix}/lib/python3.7/site-packages
pkgpythondir: ${pythondir}/libtorrent-rasterbar
pyexecdir: ${exec_prefix}/lib/python3.7/site-packages
pkgpyexecdir: ${pyexecdir}/libtorrent-rasterbar
-m4-
cppflags: -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m
ldflags:
extra libs: -Xlinker -export-dynamic
External libraries:
system libiconv: no
OpenSSL library:
OpenSSL Libs: -lssl -lcrypto
OpenSSL LDFlags: -L/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib
OpenSSL Includes:
Type 'make' to compile libtorrent-rasterbar 1.1.13
or type 'make V=1' for verbose compiling
and then 'make install' to install it into /gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13
phase `configure' succeeded after 5.7 seconds
starting phase `patch-generated-file-shebangs'
patch-shebang: ./bindings/python/client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/make_torrent.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./bindings/python/simple_client.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/socks.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./test/web_server.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_bandwidth_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_rtt.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_dht_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_buffer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_disk_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_memory_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_peer_log.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_sample.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_session_stats.py: warning: no binary for interpreter `python' found in $PATH
patch-shebang: ./tools/parse_utp_log.py: warning: no binary for interpreter `python' found in $PATH
phase `patch-generated-file-shebangs' succeeded after 0.0 seconds
starting phase `build'
Making all in include/libtorrent
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
Making all in src
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
CXX web_connection_base.lo
CXX alert.lo
CXX alert_manager.lo
CXX announce_entry.lo
CXX bandwidth_limit.lo
CXX assert.lo
CXX bandwidth_manager.lo
CXX bandwidth_queue_entry.lo
CXX bdecode.lo
CXX bitfield.lo
CXX bloom_filter.lo
CXX broadcast_socket.lo
CXX block_cache.lo
CXX bt_peer_connection.lo
CXX chained_buffer.lo
CXX choker.lo
CXX close_reason.lo
CXX ConvertUTF.lo
CXX cpuid.lo
CXX crc32c.lo
CXX create_torrent.lo
CXX disk_buffer_holder.lo
CXX disk_buffer_pool.lo
CXX disk_io_job.lo
CXX disk_io_thread.lo
CXX disk_job_pool.lo
CXX entry.lo
CXX enum_net.lo
CXX error_code.lo
CXX escape_string.lo
CXX file.lo
CXX file_pool.lo
CXX file_storage.lo
CXX fingerprint.lo
CXX gzip.lo
CXX hasher.lo
CXX hex.lo
CXX http_connection.lo
CXX http_parser.lo
CXX http_seed_connection.lo
CXX http_stream.lo
CXX http_tracker_connection.lo
CXX i2p_stream.lo
CXX identify_client.lo
CXX instantiate_connection.lo
CXX ip_filter.lo
CXX ip_voter.lo
CXX lazy_bdecode.lo
CXX lsd.lo
CXX lt_trackers.lo
CXX magnet_uri.lo
CXX merkle.lo
CXX metadata_transfer.lo
CXX mpi.lo
CXX natpmp.lo
CXX parse_url.lo
CXX part_file.lo
CXX pe_crypto.lo
CXX performance_counters.lo
CXX peer_connection.lo
CXX peer_connection_handle.lo
CXX peer_class.lo
CXX peer_class_set.lo
CXX piece_picker.lo
CXX platform_util.lo
CXX packet_buffer.lo
CXX proxy_base.lo
CXX peer_list.lo
CXX puff.lo
CXX random.lo
CXX receive_buffer.lo
CXX request_blocks.lo
CXX resolve_links.lo
CXX resolver.lo
CXX rss.lo
CXX session.lo
CXX session_call.lo
CXX session_handle.lo
CXX session_impl.lo
CXX session_settings.lo
CXX proxy_settings.lo
CXX settings_pack.lo
CXX smart_ban.lo
CXX socket_io.lo
CXX socket_type.lo
CXX socks5_stream.lo
CXX stat.lo
CXX stat_cache.lo
CXX storage.lo
CXX session_stats.lo
CXX string_util.lo
CXX thread.lo
CXX torrent.lo
CXX torrent_handle.lo
CXX torrent_info.lo
CXX torrent_peer.lo
CXX torrent_peer_allocator.lo
CXX torrent_status.lo
CXX time.lo
CXX timestamp_history.lo
CXX tracker_manager.lo
CXX udp_socket.lo
CXX udp_tracker_connection.lo
CXX upnp.lo
CXX ut_metadata.lo
CXX ut_pex.lo
CXX utf8.lo
CXX utp_socket_manager.lo
CXX utp_stream.lo
CXX web_peer_connection.lo
CXX xml_parse.lo
CXX version.lo
CXX file_progress.lo
CXX kademlia/dht_storage.lo
CXX kademlia/dht_tracker.lo
CXX kademlia/find_data.lo
CXX kademlia/put_data.lo
CXX kademlia/msg.lo
CXX kademlia/node.lo
CXX kademlia/node_entry.lo
CXX kademlia/node_id.lo
CXX kademlia/refresh.lo
CXX kademlia/routing_table.lo
CXX kademlia/rpc_manager.lo
CXX kademlia/traversal_algorithm.lo
CXX kademlia/dos_blocker.lo
CXX kademlia/get_peers.lo
CXX kademlia/get_item.lo
CXX kademlia/item.lo
CXX ../ed25519/src/add_scalar.lo
CXX ../ed25519/src/fe.lo
CXX ../ed25519/src/ge.lo
CXX ../ed25519/src/key_exchange.lo
CXX ../ed25519/src/keypair.lo
CXX ../ed25519/src/sc.lo
CXX ../ed25519/src/seed.lo
CXX ../ed25519/src/sha512.lo
CXX ../ed25519/src/sign.lo
CXX ../ed25519/src/verify.lo
CXXLD libtorrent-rasterbar.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
Making all in examples
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
Making all in test
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
CXX main.lo
CXX test.lo
CXX setup_transfer.lo
CXX peer_server.lo
CXX dht_server.lo
CXX udp_tracker.lo
CXX make_torrent.lo
CXX bittorrent_peer.lo
CXX web_seed_suite.lo
CXX swarm_suite.lo
CXX test_utils.lo
CXX settings.lo
CXX print_alerts.lo
CXXLD libtest.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
Making all in bindings
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
Making all in python
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python'
/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/bin/python3 ./setup.py build
running build
running build_ext
building 'libtorrent' extension
creating build
creating build/temp.linux-x86_64-3.7
creating build/temp.linux-x86_64-3.7/tmp
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python
creating build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function ‘static void tuple_to_pair<T1, T2>::construct(PyObject*, boost::python::converter::rvalue_from_python_stage1_data*) [with T1 = int; T2 = int]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function ‘static libtorrent::entry entry_from_python::construct0(boost::python::api::object)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:124:18: required from ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp: In instantiation of ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In instantiation of ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:124:18: required from ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:60:38: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair(first_param_type x, second_param_type y) : base(x, y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:81: required from ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:176:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x, second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = int (boost::system::error_code::* const&)() const noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp: In instantiation of ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:81: required from ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::compressed_pair<T1, T2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::compressed_pair<T1, T2>::second_param_type = const boost::python::default_call_policies&]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:43: required from ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:43: required from ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:61:19: required from ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>; boost::python::detail::keyword_range = std::pair<const boost::python::detail::keyword*, const boost::python::detail::keyword*>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:140:37: required from ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:493:26: required from ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:231:9: required from ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified; boost::python::class_<T, X1, X2, X3>::self = boost::python::class_<boost::system::error_code>]’
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:177:41: required from here
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies; boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type = void (boost::system::error_code::* const&)() noexcept; boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type = const boost::python::default_call_policies&]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In destructor ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp: At global scope:
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:206:1: note: synthesized method ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’ first required here
}
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp: In destructor ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp: At global scope:
/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:206:1: note: synthesized method ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’ first required here
}
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:213:29: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::first_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:216:30: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::second_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:213:29: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::first_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:216:30: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::second_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return *this;}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:47:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:61,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:84:18: warning: mangled name for ‘PyObject* boost::python::detail::invoke(boost::python::detail::invoke_tag_<false, true>, const RC&, F&, TC&) [with RC = boost::python::to_python_value<const int&>; F = int (boost::system::error_code::*)() const noexcept; TC = boost::python::arg_from_python<boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline PyObject* invoke(invoke_tag_<false,true>, RC const& rc, F& f, TC& tc BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(1, N, AC, & ac) )
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:381:26: warning: mangled name for ‘boost::compressed_pair<T1, T2>::first_reference boost::compressed_pair<T1, T2>::first() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:384:27: warning: mangled name for ‘boost::compressed_pair<T1, T2>::second_reference boost::compressed_pair<T1, T2>::second() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return base::second();}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:47:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:61,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/invoke.hpp:90:18: warning: mangled name for ‘PyObject* boost::python::detail::invoke(boost::python::detail::invoke_tag_<true, true>, const RC&, F&, TC&) [with RC = int; F = void (boost::system::error_code::*)() noexcept; TC = boost::python::arg_from_python<boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline PyObject* invoke(invoke_tag_<true,true>, RC const&, F& f, TC& tc BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(1, N, AC, & ac) )
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:381:26: warning: mangled name for ‘boost::compressed_pair<T1, T2>::first_reference boost::compressed_pair<T1, T2>::first() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_reference first() {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:384:27: warning: mangled name for ‘boost::compressed_pair<T1, T2>::second_reference boost::compressed_pair<T1, T2>::second() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_reference second() {return base::second();}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:245:34: warning: mangled name for ‘static boost::python::detail::py_func_sig_info boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::signature() [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static py_func_sig_info signature()
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:243:25: warning: mangled name for ‘static unsigned int boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::min_arity() [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static unsigned min_arity() { return N; }
^~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:211:19: warning: mangled name for ‘PyObject* boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::operator()(PyObject*, PyObject*) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args_, PyObject*) // eliminate
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:245:34: warning: mangled name for ‘static boost::python::detail::py_func_sig_info boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::signature() [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static py_func_sig_info signature()
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:243:25: warning: mangled name for ‘static unsigned int boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::min_arity() [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
static unsigned min_arity() { return N; }
^~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:211:19: warning: mangled name for ‘PyObject* boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::operator()(PyObject*, PyObject*) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args_, PyObject*) // eliminate
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:46:46: warning: mangled name for ‘boost::python::detail::py_func_sig_info boost::python::objects::caller_py_function_impl<Caller>::signature() const [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual python::detail::py_func_sig_info signature() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:41:22: warning: mangled name for ‘unsigned int boost::python::objects::caller_py_function_impl<Caller>::min_arity() const [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual unsigned min_arity() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:36:15: warning: mangled name for ‘PyObject* boost::python::objects::caller_py_function_impl<Caller>::operator()(PyObject*, PyObject*) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args, PyObject* kw)
^~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:46:46: warning: mangled name for ‘boost::python::detail::py_func_sig_info boost::python::objects::caller_py_function_impl<Caller>::signature() const [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual python::detail::py_func_sig_info signature() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:41:22: warning: mangled name for ‘unsigned int boost::python::objects::caller_py_function_impl<Caller>::min_arity() const [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
virtual unsigned min_arity() const
^~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:36:15: warning: mangled name for ‘PyObject* boost::python::objects::caller_py_function_impl<Caller>::operator()(PyObject*, PyObject*) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
PyObject* operator()(PyObject* args, PyObject* kw)
^~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:72:25: warning: mangled name for ‘boost::details::compressed_pair_switch<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, false, false, true>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
{static const int value = 2;};
^~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/config.hpp:61:0,
from ../../include/libtorrent/config.hpp:50,
from ../../include/libtorrent/error_code.hpp:37,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:33:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:58:33: warning: mangled name for ‘boost::detail::empty_helper<void (boost::system::error_code::*)() noexcept, false>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = false);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_class.hpp:99:33: warning: mangled name for ‘boost::detail::is_class_impl<void (boost::system::error_code::*)() noexcept>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_CLASS(T));
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:75:9: warning: mangled name for ‘boost::detail::is_empty_impl<void (boost::system::error_code::*)() noexcept>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
value = ( ::boost::detail::empty_helper<cvt,::boost::is_class<T>::value>::value || BOOST_INTERNAL_IS_EMPTY(cvt)));
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:72:25: warning: mangled name for ‘boost::details::compressed_pair_switch<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, false, false, true>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
{static const int value = 2;};
^~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/config.hpp:61:0,
from ../../include/libtorrent/config.hpp:50,
from ../../include/libtorrent/error_code.hpp:37,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:33:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:58:33: warning: mangled name for ‘boost::detail::empty_helper<int (boost::system::error_code::*)() const noexcept, false>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = false);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_class.hpp:99:33: warning: mangled name for ‘boost::detail::is_class_impl<int (boost::system::error_code::*)() const noexcept>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
BOOST_STATIC_CONSTANT(bool, value = BOOST_IS_CLASS(T));
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/type_traits/is_empty.hpp:75:9: warning: mangled name for ‘boost::detail::is_empty_impl<int (boost::system::error_code::*)() const noexcept>::value’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
value = ( ::boost::detail::empty_helper<cvt,::boost::is_class<T>::value>::value || BOOST_INTERNAL_IS_EMPTY(cvt)));
^
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘virtual boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::~caller_py_function_impl()’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x, second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:204:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type, boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair(first_param_type x, second_param_type y) : base(x, y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:377:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type, boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = void (boost::system::error_code::*)() noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:32:5: warning: mangled name for ‘boost::python::objects::caller_py_function_impl<Caller>::caller_py_function_impl(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller_py_function_impl(Caller const& caller)
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/iteration/detail/iter/forward1.hpp:52:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:149,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:209:9: warning: mangled name for ‘boost::python::detail::caller_arity<1>::impl<F, Policies, Sig>::impl(F, Policies) [with F = int (boost::system::error_code::*)() const noexcept; Policies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
impl(F f, Policies p) : m_data(f,p) {}
^~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:123:5: warning: mangled name for ‘boost::python::objects::py_function::py_function(const Caller&) [with Caller = boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> >]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
py_function(Caller const& caller)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:191:5: warning: mangled name for ‘boost::python::detail::caller<F, CallPolicies, Sig>::caller(F, CallPolicies) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
caller(F f, CallPolicies p) : base(f,p) {}
^~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:46:10: warning: mangled name for ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<void, boost::system::error_code&>; NumKeywords = mpl_::int_<0>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function_aux(
^~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:46:10: warning: mangled name for ‘boost::python::api::object boost::python::detail::make_function_aux(F, const CallPolicies&, const Sig&, const keyword_range&, NumKeywords) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Sig = boost::mpl::vector2<int, boost::system::error_code&>; NumKeywords = mpl_::int_<0>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:530:17: warning: mangled name for ‘void boost::python::class_<T, X1, X2, X3>::def_default(const char*, Fn, const Helper&, mpl_::bool_<false>) [with Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_default(char const*, Fn, Helper const&, mpl::bool_<false>)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:133:8: warning: mangled name for ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = void (boost::system::error_code::*)() noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<void, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function(
^~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:530:17: warning: mangled name for ‘void boost::python::class_<T, X1, X2, X3>::def_default(const char*, Fn, const Helper&, mpl_::bool_<false>) [with Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_default(char const*, Fn, Helper const&, mpl::bool_<false>)
^~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/data_members.hpp:15:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:17,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/make_function.hpp:133:8: warning: mangled name for ‘boost::python::api::object boost::python::make_function(F, const CallPolicies&, const Keywords&, const Signature&) [with F = int (boost::system::error_code::*)() const noexcept; CallPolicies = boost::python::default_call_policies; Keywords = boost::python::detail::keywords<0>; Signature = boost::mpl::vector2<int, boost::system::error_code&>]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
object make_function(
^~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18:0,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:482:17: warning: mangled name for ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = void (boost::system::error_code::*)() noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
inline void def_impl(
^~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:482:17: warning: mangled name for ‘void boost::python::class_<T, X1, X2, X3>::def_impl(T*, const char*, Fn, const Helper&, ...) [with T = boost::system::error_code; Fn = int (boost::system::error_code::*)() const noexcept; Helper = boost::python::detail::def_helper<const char*>; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:229:11: warning: mangled name for ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = void (boost::system::error_code::*)() noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
self& def(char const* name, F f)
^~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:229:11: warning: mangled name for ‘boost::python::class_<T, X1, X2, X3>::self& boost::python::class_<T, X1, X2, X3>::def(const char*, F) [with F = int (boost::system::error_code::*)() const noexcept; W = boost::system::error_code; X1 = boost::python::detail::not_specified; X2 = boost::python::detail::not_specified; X3 = boost::python::detail::not_specified]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:10:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘constexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::caller_py_function_impl(const boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >&)’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
struct caller_py_function_impl : py_function_impl_base
^~~~~~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘constexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >::caller_py_function_impl(boost::python::objects::caller_py_function_impl<boost::python::detail::caller<int (boost::system::error_code::*)() const noexcept, boost::python::default_call_policies, boost::mpl::vector2<int, boost::system::error_code&> > >&&)’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘constexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::caller_py_function_impl(const boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >&)’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/py_function.hpp:30:8: warning: mangled name for ‘constexpr boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >::caller_py_function_impl(boost::python::objects::caller_py_function_impl<boost::python::detail::caller<void (boost::system::error_code::*)() noexcept, boost::python::default_call_policies, boost::mpl::vector2<void, boost::system::error_code&> > >&&)’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/compressed_pair.hpp:18:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/detail/caller.hpp:33,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/function_handle.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/converter/arg_to_python.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/call.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object_core.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/args.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:11,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:387:9: warning: mangled name for ‘void boost::compressed_pair<T1, T2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(compressed_pair& y) { base::swap(y); }
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:385:27: warning: mangled name for ‘boost::compressed_pair<T1, T2>::second_const_reference boost::compressed_pair<T1, T2>::second() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return base::second();}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:382:26: warning: mangled name for ‘boost::compressed_pair<T1, T2>::first_const_reference boost::compressed_pair<T1, T2>::first() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:379:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(second_param_type y) : base(y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:378:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(first_param_type x) : base(x) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:376:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair() : base() {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:219:12: warning: mangled name for ‘void boost::details::compressed_pair_imp<T1, T2, 2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(::boost::compressed_pair<T1,T2>& y)
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:217:30: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::second_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:214:29: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::first_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() const [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:210:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:207:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type) [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:202:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp() [with T1 = void (boost::system::error_code::*)() noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp() {}
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:387:9: warning: mangled name for ‘void boost::compressed_pair<T1, T2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(compressed_pair& y) { base::swap(y); }
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:385:27: warning: mangled name for ‘boost::compressed_pair<T1, T2>::second_const_reference boost::compressed_pair<T1, T2>::second() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return base::second();}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:382:26: warning: mangled name for ‘boost::compressed_pair<T1, T2>::first_const_reference boost::compressed_pair<T1, T2>::first() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return base::first();}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:379:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(second_param_type y) : base(y) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:378:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair(boost::compressed_pair<T1, T2>::first_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
explicit compressed_pair(first_param_type x) : base(x) {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:376:13: warning: mangled name for ‘boost::compressed_pair<T1, T2>::compressed_pair() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair() : base() {}
^~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:219:12: warning: mangled name for ‘void boost::details::compressed_pair_imp<T1, T2, 2>::swap(boost::compressed_pair<T1, T2>&) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
void swap(::boost::compressed_pair<T1,T2>& y)
^~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:217:30: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::second_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::second() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
second_const_reference second() const {return *this;}
^~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:214:29: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::first_const_reference boost::details::compressed_pair_imp<T1, T2, 2>::first() const [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
first_const_reference first() const {return first_;}
^~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:210:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::second_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(second_param_type y)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:207:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp(boost::details::compressed_pair_imp<T1, T2, 2>::first_param_type) [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp(first_param_type x)
^~~~~~~~~~~~~~~~~~~
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/detail/compressed_pair.hpp:202:7: warning: mangled name for ‘boost::details::compressed_pair_imp<T1, T2, 2>::compressed_pair_imp() [with T1 = int (boost::system::error_code::*)() const noexcept; T2 = boost::python::default_call_policies]’ will change in C++17 because the exception specification is part of a function type [-Wnoexcept-type]
compressed_pair_imp() {}
^~~~~~~~~~~~~~~~~~~
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.cpp:44:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In static member function ‘static void {anonymous}::ec_pickle_suite::setstate(libtorrent::error_code&, boost::python::tuple)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.cpp:36:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void {anonymous}::add_dht_node(libtorrent::session&, boost::python::tuple)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void {anonymous}::set_peer_class(libtorrent::session&, int, boost::python::dict)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void dict_to_add_torrent_params(boost::python::dict, libtorrent::add_torrent_params&)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void {anonymous}::dict_to_feed_settings(boost::python::dict, libtorrent::feed_settings&)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.cpp:5:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void dict_to_announce_entry(boost::python::dict, libtorrent::announce_entry&)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void prioritize_pieces(libtorrent::torrent_handle&, boost::python::api::object)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void prioritize_files(libtorrent::torrent_handle&, boost::python::api::object)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/override.hpp:13:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/wrapper.hpp:8,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/value_holder.hpp:15,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/object/class_metadata.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/class.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python.hpp:18,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/boost_python.hpp:9,
from /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.cpp:7:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp: In function ‘void {anonymous}::set_web_seeds(libtorrent::torrent_info&, boost::python::list)’:
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/python/extract.hpp:185:11: warning: ‘*((void*)&<anonymous> +24)’ may be used uninitialized in this function [-Wmaybe-uninitialized]
);
^
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I../../include -I/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/include/python3.7m -c /tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.cpp -o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.o -DTORRENT_USE_OPENSSL -DTORRENT_EXPORT_EXTRA -DBOOST_ASIO_HASH_MAP_BUCKETS=1021 -DBOOST_EXCEPTION_DISABLE -DBOOST_ASIO_ENABLE_CANCELIO -DTORRENT_LINKING_SHARED -Wno-deprecated-declarations
creating build/lib.linux-x86_64-3.7
g++ -pthread -shared -Wl,-rpath=/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -Wl,-rpath=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13/lib build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/alert.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/big_number.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/converters.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/create_torrent.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/datetime.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/entry.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/error_code.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/fingerprint.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/ip_filter.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/magnet_uri.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/module.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/peer_info.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/session_settings.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/string.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_handle.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_info.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/torrent_status.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/utility.o build/temp.linux-x86_64-3.7/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python/src/version.o -L../../src/.libs -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -L/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/lib -L/gnu/store/k2m4q2av9hw73hw2jx6qrxqdyh855398-openssl-1.1.1c/lib -L/gnu/store/78w7y0lxar70j512iqw8x3nimzj10yga-python-3.7.4/lib -ltorrent-rasterbar -lboost_chrono -lboost_random -lpthread -lboost_system -lboost_python -lpthread -lssl -lcrypto -lpython3.7m -o build/lib.linux-x86_64-3.7/libtorrent.cpython-37m-x86_64-linux-gnu.so -fvisibility=hidden -fvisibility-inlines-hidden
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings/python'
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
make[2]: Nothing to be done for 'all-am'.
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/bindings'
Making all in tools
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/tools'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/tools'
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13'
phase `build' succeeded after 568.6 seconds
starting phase `check'
Making check in include/libtorrent
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/include/libtorrent'
Making check in src
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/src'
Making check in examples
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/examples'
Making check in test
make[1]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make test_primitives test_recheck test_stat_cache test_file test_privacy test_priority test_remove_torrent test_auto_unchoke test_checking test_fast_extension test_http_connection test_lsd test_pe_crypto test_pex test_read_piece test_receive_buffer test_resume test_ssl test_stack_allocator test_storage test_time_critical test_torrent test_tracker test_transfer test_create_torrent enum_if test_utp test_session test_web_seed test_web_seed_ban test_web_seed_chunked test_web_seed_http test_web_seed_http_pw test_web_seed_redirect test_web_seed_socks4 test_web_seed_socks5 test_web_seed_socks5_no_peers test_web_seed_socks5_pw test_url_seed test_remap_files test_enum_net test_file_progress test_linked_list test_direct_dht test_ed25519 bdecode_benchmark
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
CXX test_primitives.o
CXX test_packet_buffer.o
CXX test_bloom_filter.o
CXX test_timestamp_history.o
CXX test_sha1_hash.o
CXX test_identify_client.o
CXX test_merkle.o
CXX test_alert_manager.o
CXX test_resolve_links.o
CXX test_crc32.o
CXX test_heterogeneous_queue.o
CXX test_ip_voter.o
CXX test_sliding_average.o
CXX test_socket_io.o
CXX test_random.o
CXX test_utf8.o
CXX test_gzip.o
CXX test_bitfield.o
CXX test_part_file.o
CXX test_peer_list.o
CXX test_torrent_info.o
CXX test_time.o
CXX test_file_storage.o
CXX test_peer_priority.o
CXX test_threads.o
CXX test_tailqueue.o
CXX test_bandwidth_limiter.o
CXX test_buffer.o
CXX test_piece_picker.o
CXX test_bencoding.o
CXX test_bdecode.o
CXX test_http_parser.o
CXX test_string.o
CXX test_magnet.o
CXX test_xml.o
CXX test_ip_filter.o
CXX test_hasher.o
CXX test_dht_storage.o
CXX test_dht.o
CXX test_block_cache.o
CXX test_peer_classes.o
CXX test_settings_pack.o
CXX test_fence.o
CXX test_dos_blocker.o
CXX test_upnp.o
CXX test_recheck.o
CXX test_stat_cache.o
CXX test_file.o
CXX test_privacy.o
CXX test_priority.o
CXX test_remove_torrent.o
CXX test_auto_unchoke.o
CXX test_checking.o
CXX test_fast_extension.o
CXX test_http_connection.o
CXX test_lsd.o
CXX test_pe_crypto.o
CXX test_pex.o
CXX test_read_piece.o
CXX test_receive_buffer.o
CXX test_resume.o
CXX test_ssl.o
CXX test_stack_allocator.o
CXX test_storage.o
CXX test_time_critical.o
CXX test_torrent.o
CXX test_tracker.o
CXX test_transfer.o
CXX test_create_torrent.o
CXX enum_if.o
CXX test_utp.o
CXX test_session.o
CXX test_web_seed.o
CXX test_web_seed_ban.o
CXX test_web_seed_chunked.o
CXX test_web_seed_http.o
CXX test_web_seed_http_pw.o
CXX test_web_seed_redirect.o
CXX test_web_seed_socks4.o
CXX test_web_seed_socks5.o
CXX test_web_seed_socks5_no_peers.o
CXX test_web_seed_socks5_pw.o
CXX test_url_seed.o
CXX test_remap_files.o
CXX test_enum_net.o
CXX test_file_progress.o
CXX test_linked_list.o
CXX test_direct_dht.o
CXX test_ed25519.o
CXX bdecode_benchmark.o
CXXLD test_recheck
CXXLD test_stat_cache
CXXLD test_file
CXXLD test_privacy
CXXLD test_priority
CXXLD test_remove_torrent
CXXLD test_auto_unchoke
CXXLD test_checking
CXXLD test_fast_extension
CXXLD test_http_connection
CXXLD test_lsd
CXXLD test_pe_crypto
CXXLD test_pex
CXXLD test_read_piece
CXXLD test_receive_buffer
CXXLD test_resume
CXXLD test_ssl
CXXLD test_stack_allocator
CXXLD test_storage
CXXLD test_time_critical
CXXLD test_torrent
CXXLD test_tracker
CXXLD test_transfer
CXXLD test_create_torrent
CXXLD enum_if
CXXLD test_utp
CXXLD test_session
CXXLD test_web_seed
CXXLD test_web_seed_ban
CXXLD test_web_seed_chunked
CXXLD test_web_seed_http
CXXLD test_web_seed_http_pw
CXXLD test_web_seed_redirect
CXXLD test_web_seed_socks4
CXXLD test_web_seed_socks5
CXXLD test_web_seed_socks5_no_peers
CXXLD test_web_seed_socks5_pw
CXXLD test_url_seed
CXXLD test_remap_files
CXXLD test_enum_net
CXXLD test_file_progress
CXXLD test_linked_list
CXXLD test_direct_dht
CXXLD test_ed25519
CXXLD bdecode_benchmark
In file included from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/aux_/integral_wrapper.hpp:22:0,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/int.hpp:20,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/lambda_fwd.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/aux_/na_spec.hpp:18,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/mpl/if.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/constrained_value.hpp:16,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/greg_weekday.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/greg_calendar.hpp:14,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/gregorian/gregorian_types.hpp:19,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_config.hpp:18,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_system.hpp:13,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/ptime.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/date_time/posix_time/posix_time_types.hpp:12,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/time_traits.hpp:23,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/detail/timer_queue_ptime.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/detail/deadline_timer_service.hpp:29,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_waitable_timer.hpp:21,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/steady_timer.hpp:22,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_socket_streambuf.hpp:36,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/basic_socket_iostream.hpp:24,
from /gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/asio/ip/tcp.hpp:20,
from ../include/libtorrent/socket.hpp:55,
from ../include/libtorrent/torrent_peer.hpp:38,
from test_piece_picker.cpp:34:
test_piece_picker.cpp: In function ‘void unit_test_piece_picker()’:
test.hpp:102:27: note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without
static void BOOST_PP_CAT(unit_test_, test_name)()
^
/gnu/store/80rvmn0i3v681yk7as0qjp32g79lvcyz-boost-python3-1.70.0/include/boost/preprocessor/cat.hpp:29:34: note: in definition of macro ‘BOOST_PP_CAT_I’
# define BOOST_PP_CAT_I(a, b) a ## b
^
test.hpp:102:14: note: in expansion of macro ‘BOOST_PP_CAT’
static void BOOST_PP_CAT(unit_test_, test_name)()
^~~~~~~~~~~~
test_piece_picker.cpp:282:1: note: in expansion of macro ‘TORRENT_TEST’
TORRENT_TEST(piece_picker)
^
CXXLD test_primitives
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make check-TESTS
make[2]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[3]: Entering directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
FAIL: test_privacy
PASS: test_stat_cache
PASS: test_recheck
FAIL: test_http_connection
PASS: test_file
PASS: test_pe_crypto
PASS: test_auto_unchoke
FAIL: test_primitives
PASS: test_receive_buffer
PASS: test_read_piece
PASS: test_priority
PASS: test_stack_allocator
PASS: test_pex
PASS: test_checking
PASS: test_fast_extension
PASS: test_storage
PASS: test_torrent
PASS: test_create_torrent
PASS: enum_if
PASS: test_remove_torrent
FAIL: test_tracker
FAIL: test_web_seed
FAIL: test_web_seed_ban
FAIL: test_web_seed_chunked
FAIL: test_web_seed_http
FAIL: test_web_seed_http_pw
FAIL: test_web_seed_redirect
FAIL: test_web_seed_socks4
FAIL: test_web_seed_socks5
FAIL: test_web_seed_socks5_no_peers
FAIL: test_web_seed_socks5_pw
FAIL: test_url_seed
PASS: test_utp
PASS: test_enum_net
PASS: test_file_progress
PASS: test_linked_list
PASS: test_time_critical
PASS: test_ed25519
FAIL: test_transfer
PASS: test_resume
PASS: test_session
PASS: test_remap_files
SKIP: test_lsd
PASS: test_direct_dht
SKIP: test_ssl
============================================================================
Testsuite summary for libtorrent-rasterbar 1.1.13
============================================================================
# TOTAL: 45
# PASS: 27
# SKIP: 2
# XFAIL: 0
# FAIL: 16
# XPASS: 0
# ERROR: 0
============================================================================
See test/test-suite.log
Please report to arvid@libtorrent.org
============================================================================
make[3]: *** [Makefile:1580: test-suite.log] Error 1
make[3]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[2]: *** [Makefile:1688: check-TESTS] Error 2
make[2]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make[1]: *** [Makefile:2067: check-am] Error 2
make[1]: Leaving directory '/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test'
make: *** [Makefile:626: check-recursive] Error 1
Test suite failed, dumping logs.
--- ./test/test-suite.log ---------------------------------------------------
======================================================
libtorrent-rasterbar 1.1.13: test/test-suite.log
======================================================
# TOTAL: 45
# PASS: 27
# SKIP: 2
# XFAIL: 0
# FAIL: 16
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
FAIL: test_primitives
=====================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_7888"
^[[1m[test_upnp.cpp.upnp]^[[0m
00:00:00.000 starting web_server on port 2361...
python ../web_server.py 2361 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_primitives (exit status: 134)
FAIL: test_privacy
==================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_7891"
^[[1m[test_privacy.cpp.no_proxy]^[[0m
=== TEST == proxy: none anonymous-mode: no
00:00:00.000 starting web_server on port 5369...
python ../web_server.py 5369 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_privacy (exit status: 134)
FAIL: test_http_connection
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8093"
^[[1m[test_http_connection.cpp.no_proxy_ssl]^[[0m
00:00:00.000 starting web_server on port 5473...
python ../web_server.py 5473 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_http_connection (exit status: 134)
SKIP: test_lsd
==============
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8113"
^[[1m[test_lsd.cpp.lsd]^[[0m
generated torrent: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 tmp1_lsd/temporary
00:00:00.000: ses1: [lsd_error_alert] Local Service Discovery error: No such device
00:00:00.000: ses1: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses1: [torrent_added_alert] temporary added
00:00:00.000: ses1: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: seed-mode apply-ip-filter update-subscribe save-path: tmp1_lsd
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses1: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses1: [torrent_log_alert] temporary: init, async_check_fastresume
00:00:00.000: ses2: [lsd_error_alert] Local Service Discovery error: No such device
00:00:00.000: ses2: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses2: [torrent_added_alert] temporary added
00:00:00.000: ses2: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: apply-ip-filter update-subscribe save-path: tmp2_lsd
00:00:00.000: ses2: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses2: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses2: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses2: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses2: [torrent_log_alert] temporary: init, async_check_fastresume
0.0s | 0kB/s 0kB/s 100% 0 cc:0 : 0.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:01.000: ses1: [torrent_log_alert] temporary: fastresume data rejected: ret: -2 (0) Success
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: finished
00:00:01.000: ses1: [torrent_finished_alert] temporary torrent finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 4
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: seeding
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 5
00:00:01.000: ses1: [torrent_checked_alert] temporary checked
00:00:01.000: ses1: [torrent_log_alert] temporary: *** announce: no trackers
00:00:01.000: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:01.000: ses1: [cache_flushed_alert] temporary
00:00:01.000: ses2: [torrent_log_alert] temporary: fastresume data accepted
00:00:01.000: ses2: [state_changed_alert] temporary: state changed to: downloading
00:00:01.000: ses2: [torrent_log_alert] temporary: set_state() 3
00:00:01.000: ses2: [torrent_checked_alert] temporary checked
00:00:01.000: ses2: [torrent_log_alert] temporary: *** announce: no trackers
00:00:01.000: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
1.0s | 0kB/s 0kB/s 100% 0 cc:0 : 1.0s | 0kB/s 0kB/s 0% 0 cc:0
2.0s | 0kB/s 0kB/s 100% 0 cc:0 : 2.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:03.001: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:03.001: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
3.0s | 0kB/s 0kB/s 100% 0 cc:0 : 3.0s | 0kB/s 0kB/s 0% 0 cc:0
4.0s | 0kB/s 0kB/s 100% 0 cc:0 : 4.0s | 0kB/s 0kB/s 0% 0 cc:0
5.0s | 0kB/s 0kB/s 100% 0 cc:0 : 5.0s | 0kB/s 0kB/s 0% 0 cc:0
6.0s | 0kB/s 0kB/s 100% 0 cc:0 : 6.0s | 0kB/s 0kB/s 0% 0 cc:0
00:00:07.003: ses1: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 48100
00:00:07.003: ses2: [log_alert] ==> LSD: ih: 3b299ca268f2a85c6a3c0759c35e626ac48450d9 port: 49100
7.0s | 0kB/s 0kB/s 100% 0 cc:0 : 7.0s | 0kB/s 0kB/s 0% 0 cc:0
8.0s | 0kB/s 0kB/s 100% 0 cc:0 : 8.0s | 0kB/s 0kB/s 0% 0 cc:0
9.0s | 0kB/s 0kB/s 100% 0 cc:0 : 9.0s | 0kB/s 0kB/s 0% 0 cc:0
10.0s | 0kB/s 0kB/s 100% 0 cc:0 : 10.0s | 0kB/s 0kB/s 0% 0 cc:0
11.0s | 0kB/s 0kB/s 100% 0 cc:0 : 11.0s | 0kB/s 0kB/s 0% 0 cc:0
12.0s | 0kB/s 0kB/s 100% 0 cc:0 : 12.0s | 0kB/s 0kB/s 0% 0 cc:0
13.0s | 0kB/s 0kB/s 100% 0 cc:0 : 13.0s | 0kB/s 0kB/s 0% 0 cc:0
14.0s | 0kB/s 0kB/s 100% 0 cc:0 : 14.0s | 0kB/s 0kB/s 0% 0 cc:0
15.0s | 0kB/s 0kB/s 100% 0 cc:0 : 15.0s | 0kB/s 0kB/s 0% 0 cc:0
16.0s | 0kB/s 0kB/s 100% 0 cc:0 : 16.0s | 0kB/s 0kB/s 0% 0 cc:0
17.0s | 0kB/s 0kB/s 100% 0 cc:0 : 17.0s | 0kB/s 0kB/s 0% 0 cc:0
18.0s | 0kB/s 0kB/s 100% 0 cc:0 : 18.0s | 0kB/s 0kB/s 0% 0 cc:0
19.0s | 0kB/s 0kB/s 100% 0 cc:0 : 19.0s | 0kB/s 0kB/s 0% 0 cc:0
20.0s | 0kB/s 0kB/s 100% 0 cc:0 : 20.0s | 0kB/s 0kB/s 0% 0 cc:0
21.0s | 0kB/s 0kB/s 100% 0 cc:0 : 21.0s | 0kB/s 0kB/s 0% 0 cc:0
22.0s | 0kB/s 0kB/s 100% 0 cc:0 : 22.0s | 0kB/s 0kB/s 0% 0 cc:0
23.0s | 0kB/s 0kB/s 100% 0 cc:0 : 23.0s | 0kB/s 0kB/s 0% 0 cc:0
24.0s | 0kB/s 0kB/s 100% 0 cc:0 : 24.0s | 0kB/s 0kB/s 0% 0 cc:0
25.0s | 0kB/s 0kB/s 100% 0 cc:0 : 25.0s | 0kB/s 0kB/s 0% 0 cc:0
26.0s | 0kB/s 0kB/s 100% 0 cc:0 : 26.0s | 0kB/s 0kB/s 0% 0 cc:0
27.0s | 0kB/s 0kB/s 100% 0 cc:0 : 27.0s | 0kB/s 0kB/s 0% 0 cc:0
28.0s | 0kB/s 0kB/s 100% 0 cc:0 : 28.0s | 0kB/s 0kB/s 0% 0 cc:0
29.0s | 0kB/s 0kB/s 100% 0 cc:0 : 29.0s | 0kB/s 0kB/s 0% 0 cc:0
^[[41m***** test_lsd.cpp:92 "TEST_CHECK failed: "tor2.status().is_seeding"" *****^[[0m
^[[31m[test_lsd.cpp.lsd] 1 FAILURES
^[[0m
^[[41m == 1 TEST(S) FAILED ==^[[0m
SKIP test_lsd (exit status: 77)
SKIP: test_ssl
==============
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8460"
^[[1m[test_ssl.cpp.malicious_peer]^[[0m
00:00:00.000: ses1: [log_alert] start session
00:00:00.000: ses1: [log_alert] config: ipv6_deprecated_ version: 1.1.13.0 revision: 9b0ebc207
00:00:00.000: ses1: [log_alert] max connections: 200
00:00:00.000: ses1: [log_alert] max files: 1024
00:00:00.000: ses1: [log_alert] *** session thread init
00:00:00.000: ses1: [log_alert] session stats header: peer.error_peers, peer.disconnected_peers, peer.eof_peers, peer.connreset_peers, peer.connrefused_peers, peer.connaborted_peers, peer.notconnected_peers, peer.perm_peers, peer.buffer_peers, peer.unreachable_peers, peer.broken_pipe_peers, peer.addrinuse_peers, peer.no_access_peers, peer.invalid_arg_peers, peer.aborted_peers, peer.piece_requests, peer.max_piece_requests, peer.invalid_piece_requests, peer.choked_piece_requests, peer.cancelled_piece_requests, peer.piece_rejects, peer.error_incoming_peers, peer.error_outgoing_peers, peer.error_rc4_peers, peer.error_encrypted_peers, peer.error_tcp_peers, peer.error_utp_peers, picker.reject_piece_picks, picker.unchoke_piece_picks, picker.incoming_redundant_piece_picks, picker.incoming_piece_picks, picker.end_game_piece_picks, picker.snubbed_piece_picks, picker.interesting_piece_picks, picker.hash_fail_piece_picks, picker.piece_picker_partial_loops, picker.piece_picker_suggest_loops, picker.piece_picker_sequential_loops, picker.piece_picker_reverse_rare_loops, picker.piece_picker_rare_loops, picker.piece_picker_rand_start_loops, picker.piece_picker_rand_loops, picker.piece_picker_busy_loops, peer.connect_timeouts, peer.uninteresting_peers, peer.timeout_peers, peer.no_memory_peers, peer.too_many_peers, peer.transport_timeout_peers, peer.num_banned_peers, peer.banned_for_hash_failure, peer.connection_attempts, peer.connection_attempt_loops, peer.incoming_connections, net.on_read_counter, net.on_write_counter, net.on_tick_counter, net.on_lsd_counter, net.on_lsd_peer_counter, net.on_udp_counter, net.on_accept_counter, net.on_disk_queue_counter, net.on_disk_counter, ses.torrent_evicted_counter, ses.num_incoming_choke, ses.num_incoming_unchoke, ses.num_incoming_interested, ses.num_incoming_not_interested, ses.num_incoming_have, ses.num_incoming_bitfield, ses.num_incoming_request, ses.num_incoming_piece, ses.num_incoming_cancel, ses.num_incoming_dht_port, ses.num_incoming_suggest, ses.num_incoming_have_all, ses.num_incoming_have_none, ses.num_incoming_reject, ses.num_incoming_allowed_fast, ses.num_incoming_ext_handshake, ses.num_incoming_pex, ses.num_incoming_metadata, ses.num_incoming_extended, ses.num_outgoing_choke, ses.num_outgoing_unchoke, ses.num_outgoing_interested, ses.num_outgoing_not_interested, ses.num_outgoing_have, ses.num_outgoing_bitfield, ses.num_outgoing_request, ses.num_outgoing_piece, ses.num_outgoing_cancel, ses.num_outgoing_dht_port, ses.num_outgoing_suggest, ses.num_outgoing_have_all, ses.num_outgoing_have_none, ses.num_outgoing_reject, ses.num_outgoing_allowed_fast, ses.num_outgoing_ext_handshake, ses.num_outgoing_pex, ses.num_outgoing_metadata, ses.num_outgoing_extended, ses.num_piece_passed, ses.num_piece_failed, ses.num_have_pieces, ses.num_total_pieces_added, disk.num_blocks_written, disk.num_blocks_read, disk.num_blocks_hashed, disk.num_blocks_cache_hits, disk.num_write_ops, disk.num_read_ops, disk.num_read_back, disk.disk_read_time, disk.disk_write_time, disk.disk_hash_time, disk.disk_job_time, ses.waste_piece_timed_out, ses.waste_piece_cancelled, ses.waste_piece_unknown, ses.waste_piece_seed, ses.waste_piece_end_game, ses.waste_piece_closing, net.sent_payload_bytes, net.sent_bytes, net.sent_ip_overhead_bytes, net.sent_tracker_bytes, net.recv_payload_bytes, net.recv_bytes, net.recv_ip_overhead_bytes, net.recv_tracker_bytes, net.recv_failed_bytes, net.recv_redundant_bytes, dht.dht_messages_in, dht.dht_messages_out, dht.dht_messages_out_dropped, dht.dht_bytes_in, dht.dht_bytes_out, dht.dht_ping_in, dht.dht_ping_out, dht.dht_find_node_in, dht.dht_find_node_out, dht.dht_get_peers_in, dht.dht_get_peers_out, dht.dht_announce_peer_in, dht.dht_announce_peer_out, dht.dht_get_in, dht.dht_get_out, dht.dht_put_in, dht.dht_put_out, dht.dht_invalid_announce, dht.dht_invalid_get_peers, dht.dht_invalid_put, dht.dht_invalid_get, utp.utp_packet_loss, utp.utp_timeout, utp.utp_packets_in, utp.utp_packets_out, utp.utp_fast_retransmit, utp.utp_packet_resend, utp.utp_samples_above_target, utp.utp_samples_below_target, utp.utp_payload_pkts_in, utp.utp_payload_pkts_out, utp.utp_invalid_pkts_in, utp.utp_redundant_pkts_in, sock_bufs.socket_send_size3, sock_bufs.socket_send_size4, sock_bufs.socket_send_size5, sock_bufs.socket_send_size6, sock_bufs.socket_send_size7, sock_bufs.socket_send_size8, sock_bufs.socket_send_size9, sock_bufs.socket_send_size10, sock_bufs.socket_send_size11, sock_bufs.socket_send_size12, sock_bufs.socket_send_size13, sock_bufs.socket_send_size14, sock_bufs.socket_send_size15, sock_bufs.socket_send_size16, sock_bufs.socket_send_size17, sock_bufs.socket_send_size18, sock_bufs.socket_send_size19, sock_bufs.socket_send_size20, sock_bufs.socket_recv_size3, sock_bufs.socket_recv_size4, sock_bufs.socket_recv_size5, sock_bufs.socket_recv_size6, sock_bufs.socket_recv_size7, sock_bufs.socket_recv_size8, sock_bufs.socket_recv_size9, sock_bufs.socket_recv_size10, sock_bufs.socket_recv_size11, sock_bufs.socket_recv_size12, sock_bufs.socket_recv_size13, sock_bufs.socket_recv_size14, sock_bufs.socket_recv_size15, sock_bufs.socket_recv_size16, sock_bufs.socket_recv_size17, sock_bufs.socket_recv_size18, sock_bufs.socket_recv_size19, sock_bufs.socket_recv_size20, ses.num_checking_torrents, ses.num_stopped_torrents, ses.num_upload_only_torrents, ses.num_downloading_torrents, ses.num_seeding_torrents, ses.num_queued_seeding_torrents, ses.num_queued_download_torrents, ses.num_error_torrents, ses.non_filter_torrents, ses.num_loaded_torrents, ses.num_pinned_torrents, peer.num_tcp_peers, peer.num_socks5_peers, peer.num_http_proxy_peers, peer.num_utp_peers, peer.num_i2p_peers, peer.num_ssl_peers, peer.num_ssl_socks5_peers, peer.num_ssl_http_proxy_peers, peer.num_ssl_utp_peers, peer.num_peers_half_open, peer.num_peers_connected, peer.num_peers_up_interested, peer.num_peers_down_interested, peer.num_peers_up_unchoked_all, peer.num_peers_up_unchoked_optimistic, peer.num_peers_up_unchoked, peer.num_peers_down_unchoked, peer.num_peers_up_requests, peer.num_peers_down_requests, peer.num_peers_up_disk, peer.num_peers_down_disk, peer.num_peers_end_game, disk.write_cache_blocks, disk.read_cache_blocks, disk.request_latency, disk.pinned_blocks, disk.disk_blocks_in_use, disk.queued_disk_jobs, disk.num_running_disk_jobs, disk.num_read_jobs, disk.num_write_jobs, disk.num_jobs, disk.num_writing_threads, disk.num_running_threads, disk.blocked_disk_jobs, disk.queued_write_bytes, ses.num_unchoke_slots, disk.num_fenced_read, disk.num_fenced_write, disk.num_fenced_hash, disk.num_fenced_move_storage, disk.num_fenced_release_files, disk.num_fenced_delete_files, disk.num_fenced_check_fastresume, disk.num_fenced_save_resume_data, disk.num_fenced_rename_file, disk.num_fenced_stop_torrent, disk.num_fenced_cache_piece, disk.num_fenced_flush_piece, disk.num_fenced_flush_hashed, disk.num_fenced_flush_storage, disk.num_fenced_trim_cache, disk.num_fenced_file_priority, disk.num_fenced_load_torrent, disk.num_fenced_clear_piece, disk.num_fenced_tick_storage, disk.arc_mru_size, disk.arc_mru_ghost_size, disk.arc_mfu_size, disk.arc_mfu_ghost_size, disk.arc_write_size, disk.arc_volatile_size, dht.dht_nodes, dht.dht_node_cache, dht.dht_torrents, dht.dht_peers, dht.dht_immutable_data, dht.dht_mutable_data, dht.dht_allocated_observers, net.has_incoming_connections, net.limiter_up_queue, net.limiter_down_queue, net.limiter_up_bytes, net.limiter_down_bytes, utp.num_utp_idle, utp.num_utp_syn_sent, utp.num_utp_connected, utp.num_utp_fin_sent, utp.num_utp_close_wait, utp.num_utp_deleted
00:00:00.000: ses1: [log_alert] not starting DHT announce timer: m_dht == NULL
00:00:00.000: ses1: [log_alert] done starting session
00:00:00.000: ses1: [log_alert] update listen interfaces: 0.0.0.0:48075
00:00:00.000: ses1: [log_alert] >>> SET_TOS [ udp_socket tos: 20 e: Bad file descriptor ]
00:00:00.000: ses1: [log_alert] not starting DHT announce timer: m_dht == NULL
00:00:00.000: ses1: [log_alert] force-proxy disabled
00:00:00.000: ses1: [log_alert] RECALCULATE UNCHOKE SLOTS: [ peers: 0 eligible-peers: 0 max_upload_rate: 0 allowed-slots: 8 ]
00:00:00.000: ses1: [log_alert] update listen interfaces: 0.0.0.0:48075
00:00:00.000: ses1: [log_alert] open listen port
00:00:00.000: ses1: [log_alert] failed to bind to interface [0.0.0.0 48075] "::" : system (98) : Address already in use (retries: 100)
00:00:00.000: ses1: [log_alert] listening on: [::]:48076 external port: 48076
00:00:00.000: ses1: [log_alert] listening on: [::]:40407 external port: 40407
00:00:00.000: ses1: [log_alert] failed to bind to interface [0.0.0.0 48075] "0.0.0.0" : system (98) : Address already in use (retries: 100)
00:00:00.000: ses1: [log_alert] listening on: 0.0.0.0:48076 external port: 48076
00:00:00.000: ses1: [log_alert] listening on: 0.0.0.0:40407 external port: 40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [TCP] [::]:48076
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/TCP] [::]:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [TCP] 0.0.0.0:48076
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/TCP] 0.0.0.0:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [SSL/uTP] 0.0.0.0:40407
00:00:00.000: ses1: [listen_succeeded_alert] successfully listening on [UDP] 0.0.0.0:48076
00:00:00.000: ses1: [log_alert] >>> SET_TOS [ udp_socket tos: 20 e: Success ]
failed to load SSL certificate: No such file or directory
^[[41m***** test_ssl.cpp:562 "TEST_CHECK failed: "!t->ssl_cert().empty()"" *****^[[0m
00:00:00.000: ses1: [add_torrent_alert] added torrent: temporary
00:00:00.000: ses1: [torrent_added_alert] temporary added
00:00:00.000: ses1: [torrent_log_alert] temporary: creating torrent: temporary max-uploads: -1 max-connections: -1 upload-limit: -1 download-limit: -1 flags: apply-ip-filter update-subscribe save-path: tmp3_ssl
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-uploads: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** set-max-connections: 16777215
00:00:00.000: ses1: [torrent_log_alert] temporary: *** UPDATE LIST [ torrent_want_tick : 1 ]
00:00:00.000: ses1: [torrent_log_alert] temporary: init torrent: temporary
00:00:00.000: ses1: [torrent_log_alert] temporary: init, async_check_fastresume
00:00:00.000: ses1: [torrent_error_alert] temporary ERROR: not an SSL torrent
00:00:00.500: ses1: [torrent_log_alert] temporary: fastresume data rejected: ret: -2 (0) Success
00:00:00.500: ses1: [state_changed_alert] temporary: state changed to: checking
00:00:00.500: ses1: [torrent_log_alert] temporary: set_state() 1
00:00:00.500: ses1: [torrent_log_alert] temporary: start_checking, m_checking_piece: 13
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 0 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 1 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 2 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 3 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 4 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 5 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 6 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 7 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 8 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 9 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 10 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 11 finished downloading
00:00:01.000: ses1: [piece_finished_alert] temporary piece: 12 finished downloading
00:00:01.000: ses1: [file_completed_alert] temporary: file 0 finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: on_piece_hashed, completed
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: finished
00:00:01.000: ses1: [torrent_finished_alert] temporary torrent finished downloading
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 4
00:00:01.000: ses1: [state_changed_alert] temporary: state changed to: seeding
00:00:01.000: ses1: [torrent_log_alert] temporary: set_state() 5
00:00:01.000: ses1: [torrent_checked_alert] temporary checked
00:00:01.000: ses1: [torrent_log_alert] temporary: *** announce: no trackers
MALICIOUS PEER TEST: valid-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
^[[41m***** test_ssl.cpp:589 "TEST_EQUAL_ERROR: success: 0 expected: 1" *****^[[0m
MALICIOUS PEER TEST: valid-certificate invalid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: valid-certificate no-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: no-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
connecting 127.0.0.1:40407
SNI: 31c1aacc9d38f852a635ae98aa45b6cac6b213ac
SSL handshake
00:00:01.001: ses1: [log_alert] *** peer SSL handshake done [ ip: 127.0.0.1:40906 ec: callback failed socket: SSL/TCP ]
00:00:01.001: ses1: [peer_error_alert] - peer (127.0.0.1:40906, Unknown) peer error [ssl_handshake] [asio.ssl]: callback failed
Failed SSL handshake: tlsv1 unrecognized name
MALICIOUS PEER TEST: invalid-certificate valid-SNI-hash valid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/invalid_peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
MALICIOUS PEER TEST: valid-certificate valid-SNI-hash invalid-bittorrent-hash port: 40407
set_password_callback
use_certificate_file "../ssl/peer_certificate.pem"
Failed to set certificate file: No such file or directory
^[[41m***** test_ssl.cpp:411 "TEST_CHECK failed: "!ec"" *****^[[0m
SKIP test_ssl (exit status: 77)
FAIL: test_tracker
==================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8812"
^[[1m[test_tracker.cpp.http_peers]^[[0m
00:00:04.003 starting web_server on port 3836...
python ../web_server.py 3836 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
00:00:04.004: UDP tracker, stop
00:00:04.004: UDP tracker, read failed: Operation canceled
UDP exiting UDP tracker thread
FAIL test_tracker (exit status: 134)
FAIL: test_transfer
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_8867"
^[[1m[test_transfer.cpp.socks5_pw]^[[0m
==== TESTING SOCKS5 password proxy ==== disk-full: false
00:00:05.500 starting proxy on port 2082 (socks5 --username testuser --password testpass)...
python ../socks.py --port 2082 --username testuser --password testpass
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_transfer (exit status: 134)
FAIL: test_web_seed
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9037"
^[[1m[test_web_seed.cpp.web_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 2145...
python ../web_server.py 2145 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed (exit status: 134)
FAIL: test_web_seed_ban
=======================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9057"
^[[1m[test_web_seed_ban.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 5350...
python ../web_server.py 5350 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_ban (exit status: 134)
FAIL: test_web_seed_chunked
===========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9077"
^[[1m[test_web_seed_chunked.cpp.web_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 3396...
python ../web_server.py 3396 1 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_chunked (exit status: 134)
FAIL: test_web_seed_http
========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9097"
^[[1m[test_web_seed_http.cpp.web_seed_http]^[[0m
00:00:00.000 starting web_server on port 6145...
python ../web_server.py 6145 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_http (exit status: 134)
FAIL: test_web_seed_http_pw
===========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9123"
^[[1m[test_web_seed_http_pw.cpp.web_seed_http_pw]^[[0m
00:00:00.000 starting web_server on port 3082...
python ../web_server.py 3082 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_http_pw (exit status: 134)
FAIL: test_web_seed_redirect
============================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9143"
^[[1m[test_web_seed_redirect.cpp.web_seed_redirect]^[[0m
00:00:00.000 starting web_server on port 6566...
python ../web_server.py 6566 0 0 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_redirect (exit status: 134)
FAIL: test_web_seed_socks4
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9163"
^[[1m[test_web_seed_socks4.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 7356...
python ../web_server.py 7356 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks4 (exit status: 134)
FAIL: test_web_seed_socks5
==========================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9183"
^[[1m[test_web_seed_socks5.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 2816...
python ../web_server.py 2816 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5 (exit status: 134)
FAIL: test_web_seed_socks5_no_peers
===================================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9203"
^[[1m[test_web_seed_socks5_no_peers.cpp.web_seed_socks5_no_peers_ssl]^[[0m
00:00:00.000 starting web_server on port 4856...
python ../web_server.py 4856 0 1 0
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5_no_peers (exit status: 134)
FAIL: test_web_seed_socks5_pw
=============================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9223"
^[[1m[test_web_seed_socks5_pw.cpp.http_seed_ssl]^[[0m
00:00:00.000 starting web_server on port 4052...
python ../web_server.py 4052 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_web_seed_socks5_pw (exit status: 134)
FAIL: test_url_seed
===================
cwd_prefix = "/tmp/guix-build-libtorrent-rasterbar-local-1.1.13.drv-0/libtorrent-rasterbar-1.1.13/test/test_tmp_9243"
^[[1m[test_url_seed.cpp.url_seed_ssl_keepalive]^[[0m
00:00:00.000 starting web_server on port 2704...
python ../web_server.py 2704 0 1 1
failed (2) No such file or directory
signal: SIGABRT caught:
<stack traces disabled>
FAIL test_url_seed (exit status: 134)
command "make" "check" "-j" "8" "LDFLAGS=-Wl,-rpath=/gnu/store/jby55zqzmwvdx9iyfg4lvga88jqhnlv3-libtorrent-rasterbar-local-1.1.13/lib" failed with status 2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3
2019-11-16 9:04 ` [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3 goodoldpaul
@ 2019-11-20 0:01 ` Marius Bakke
2019-12-09 11:24 ` goodoldpaul
0 siblings, 1 reply; 8+ messages in thread
From: Marius Bakke @ 2019-11-20 0:01 UTC (permalink / raw)
To: goodoldpaul, 38228
[-- Attachment #1: Type: text/plain, Size: 4308 bytes --]
goodoldpaul@autistici.org writes:
> Hello I'm opening another thread ( old one was
> http://issues.guix.gnu.org/issue/38128 ) to build boost in core-updates
> with python3. The new patch also parameterizes python versions across
> the package definition.
>
> WDYT?
>
> Bye,
>
> Giacomo
>
> -------- Original Message --------
> Subject: Re: bug#38128: [PATCH] gnu: Add boost-with-python3
> Date: 2019-11-12 00:06
> From: goodoldpaul@autistici.org
> To: Efraim Flashner <efraim@flashner.co.il>
> Cc: 38128@debbugs.gnu.org, mbakke@fastmail.com
>
> On 2019-11-11 09:36, Efraim Flashner wrote:
>> I'm going to re-open this one, sorry.
>>
>> Can we replace the '--with-python-version=3.7' and
>> 'libboost_python37.so'
>> with parameterized python variables so we don't have to bump it when we
>> get a new python version?
>>
>> Also, I've attached a package that I've never actually built that uses
>> boost built with python3 if you want something to test it out with :)
>
> I'm not sure how to send a patch for core-updates, I never did it so I
> attached it here. Please tell me if I should open another patch.
Excellent. Here is fine. :-)
Note that 'boost-with-python3' has already been merged to core-updates.
What we need now is 1) a patch that makes these adjustments to
'boost-with-python3', and 2) a follow-up patch that removes
boost-with-python3 and adjusts the original 'boost' package instead.
The latter will be applied to core-updates after the first patch gets
merged, but you can make (and test :-)) both patches on a local checkout
of the 'master' branch.
> The patch builds boost with python3 and parameterizes the python
> version, as Efraim suggested. I built it successfully on core updates.
> When I tried building Epour on core-updates and saw that Guix was
> starting to build Bash 5.0 I renounced (:D) and I built it on master
> with boost-with-python3 .
In general, working on the 'core-updates' branch requires a fairly
powerful computer (and lots of time), sorry about that!
> Libtorrent-rasterbar seems to build fine on master but some tests fail
> to pass and they all seem to be network related but then again this is
> torrent we are talking about. I didn't investigate further but I attach
> the log.
Strange. I suppose these tests are not run when using Boost + Python 2?
In any case we don't have to worry about that just yet ;-)
> I also tried boost-with-python3 with Malmo (
> https://github.com/microsoft/malmo ) and it seemed to compile fine just
> but that package has other problems such as trying to start gradle so I
> nerver managed to actually run it.
Cool. Packaging 'gradle' should be a rewarding experience that makes
many people very happy, if you would like a challenge. ;-)
> From 91a25fb143ad0e2e20e8ddadea0c0610849adf92 Mon Sep 17 00:00:00 2001
> From: Giacomo Leidi <goodoldpaul@autistici.org>
> Date: Tue, 12 Nov 2019 00:24:49 +0100
> Subject: [PATCH] gnu: boost: Build with python3.
>
> * gnu/packages/boost.scm (boost):
> [arguments]: Parameterize python version.
> [native-inputs]: Use python3.
[...]
> (arguments
> - `(#:tests? #f
> + `(#:modules ((guix build gnu-build-system)
> + (guix build utils)
> + (srfi srfi-1))
If you add (guix build python-build-system) in there ...
> (replace 'configure
> (lambda* (#:key inputs outputs #:allow-other-keys)
> (let ((icu (assoc-ref inputs "icu4c"))
> + (python (assoc-ref inputs "python"))
> + (python-version
> + (take (string-split ,(package-version python) #\.) 2))
... then you can use (python-version (python-version python)) here and
below.
> + (substitute* "tools/build/src/tools/python.jam"
> + (("include/python\\$\\(version\\)")
> + "include/python$(version)m"))
I wonder why we have to add the 'm'? Will that work with Python 2?
Otherwise LGTM.
For 'core-updates', it would be really great to add a 'python2' output
to Boost in case there are packages that do not work with
libboost_python3.so, but I'm not sure how to achieve that. Future
problems! :-)
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3
2019-11-20 0:01 ` Marius Bakke
@ 2019-12-09 11:24 ` goodoldpaul
2020-01-08 21:11 ` bug#38228: " Marius Bakke
0 siblings, 1 reply; 8+ messages in thread
From: goodoldpaul @ 2019-12-09 11:24 UTC (permalink / raw)
To: Marius Bakke; +Cc: 38228
[-- Attachment #1: Type: text/plain, Size: 6317 bytes --]
Hello Marius,
I apologize for taking so long: the end of the semester is near and my
time is a little limited.
On 2019-11-20 00:01, Marius Bakke wrote:
> goodoldpaul@autistici.org writes:
>
>> Hello I'm opening another thread ( old one was
>> http://issues.guix.gnu.org/issue/38128 ) to build boost in
>> core-updates
>> with python3. The new patch also parameterizes python versions across
>> the package definition.
>>
>> WDYT?
>>
>> Bye,
>>
>> Giacomo
>>
>> -------- Original Message --------
>> Subject: Re: bug#38128: [PATCH] gnu: Add boost-with-python3
>> Date: 2019-11-12 00:06
>> From: goodoldpaul@autistici.org
>> To: Efraim Flashner <efraim@flashner.co.il>
>> Cc: 38128@debbugs.gnu.org, mbakke@fastmail.com
>>
>> On 2019-11-11 09:36, Efraim Flashner wrote:
>>> I'm going to re-open this one, sorry.
>>>
>>> Can we replace the '--with-python-version=3.7' and
>>> 'libboost_python37.so'
>>> with parameterized python variables so we don't have to bump it when
>>> we
>>> get a new python version?
>>>
>>> Also, I've attached a package that I've never actually built that
>>> uses
>>> boost built with python3 if you want something to test it out with :)
>>
>> I'm not sure how to send a patch for core-updates, I never did it so I
>> attached it here. Please tell me if I should open another patch.
>
> Excellent. Here is fine. :-)
>
> Note that 'boost-with-python3' has already been merged to core-updates.
> What we need now is 1) a patch that makes these adjustments to
> 'boost-with-python3', and 2) a follow-up patch that removes
> boost-with-python3 and adjusts the original 'boost' package instead.
>
> The latter will be applied to core-updates after the first patch gets
> merged, but you can make (and test :-)) both patches on a local
> checkout
> of the 'master' branch.
I'm attaching the two patches. As you said the one that parameterizes
the python version of boost-with-python3 must be applied to master, the
other one to core-updates.
>> The patch builds boost with python3 and parameterizes the python
>> version, as Efraim suggested. I built it successfully on core updates.
>> When I tried building Epour on core-updates and saw that Guix was
>> starting to build Bash 5.0 I renounced (:D) and I built it on master
>> with boost-with-python3 .
>
> In general, working on the 'core-updates' branch requires a fairly
> powerful computer (and lots of time), sorry about that!
>
>> Libtorrent-rasterbar seems to build fine on master but some tests fail
>> to pass and they all seem to be network related but then again this is
>> torrent we are talking about. I didn't investigate further but I
>> attach
>> the log.
>
> Strange. I suppose these tests are not run when using Boost + Python
> 2?
> In any case we don't have to worry about that just yet ;-)
I gave another look at Libtorrent-rasterbar and I noticed that it
depends directly on python2, so the answer to the failing tests could be
that upgrading both boost and the python version ( as was done in
Efraim's code that I used last time to test boost-with-python3 ) broke
something that a closer look to the failing tests could figure out.
Right now I tested the upgraded version without problems by building the
following ( randomly selected) packages: innoextract, swig, libarea,
pbbam, cgal, openimageio. If you have a better idea of what must be
tested please tell me and I'll do some more tests.
>> I also tried boost-with-python3 with Malmo (
>> https://github.com/microsoft/malmo ) and it seemed to compile fine
>> just
>> but that package has other problems such as trying to start gradle so
>> I
>> nerver managed to actually run it.
>
> Cool. Packaging 'gradle' should be a rewarding experience that makes
> many people very happy, if you would like a challenge. ;-)
>
>
>> From 91a25fb143ad0e2e20e8ddadea0c0610849adf92 Mon Sep 17 00:00:00 2001
>> From: Giacomo Leidi <goodoldpaul@autistici.org>
>> Date: Tue, 12 Nov 2019 00:24:49 +0100
>> Subject: [PATCH] gnu: boost: Build with python3.
>>
>> * gnu/packages/boost.scm (boost):
>> [arguments]: Parameterize python version.
>> [native-inputs]: Use python3.
>
> [...]
>
>> (arguments
>> - `(#:tests? #f
>> + `(#:modules ((guix build gnu-build-system)
>> + (guix build utils)
>> + (srfi srfi-1))
>
> If you add (guix build python-build-system) in there ...
[...]
>> (replace 'configure
>> (lambda* (#:key inputs outputs #:allow-other-keys)
>> (let ((icu (assoc-ref inputs "icu4c"))
>> + (python (assoc-ref inputs "python"))
>> + (python-version
>> + (take (string-split ,(package-version python)
>> #\.) 2))
>
> ... then you can use (python-version (python-version python)) here and
> below.
I did add python-build-system to #:modules, but Guix kept complaining
that python-build-system was not importable until I added
#:imported-modules ((guix build python-build-system)
,@%gnu-build-system-modules)
Do you happen to have any idea of the differences from
#:imported-modules and #:modules? And why was using only
gnu-build-system possible also without adding it to #:imported-modules?
Or even better: is there any kind of documentation of the arguments and
keywords and return values of Guix's functions? Something like this
https://flask.palletsprojects.com/en/1.1.x/api/ .
I don't really like my solution mainly because now there's two lines
containing 4 times the "python" word, so please if you have any further
suggestions to how to get this more readable please tell me.
>> + (substitute* "tools/build/src/tools/python.jam"
>> + (("include/python\\$\\(version\\)")
>> + "include/python$(version)m"))
>
> I wonder why we have to add the 'm'? Will that work with Python 2?
I'm not really sure but grepping for "include/python" inside
gnu/packages returns some examples where with python3 this "m" seems to
be standard practice. Maybe the Python team changed their directory
schema between the two releases? Anyway it won't work with python2 that
(also shown by grep -nr "include/python" $GUIX_SOURCE/gnu/packages)
doesn't use the "m".
Thank you for your review Marius,
Giacomo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-boost-Build-with-python3.patch --]
[-- Type: text/x-diff; name=0001-gnu-boost-Build-with-python3.patch, Size: 8384 bytes --]
From dba94480865300d6bca7aa4022d3e781f80c0b4e Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Sun, 8 Dec 2019 22:18:35 +0100
Subject: [PATCH] gnu: boost: Build with python3.
* gnu/packages/boost.scm (boost)[native-inputs]: Use python3.
[arguments]: Parameterize python version.
(boost-with-python3): Remove variable.
---
gnu/packages/boost.scm | 108 ++++++++++++-----------------------------
1 file changed, 31 insertions(+), 77 deletions(-)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index f436d5b688..130ff8b394 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -63,10 +63,15 @@
("zlib" ,zlib)))
(native-inputs
`(("perl" ,perl)
- ("python" ,python-2)
+ ("python" ,python)
("tcsh" ,tcsh)))
(arguments
- `(#:tests? #f
+ `(#:imported-modules ((guix build python-build-system)
+ ,@%gnu-build-system-modules)
+ #:modules ((guix build gnu-build-system)
+ ((guix build python-build-system) #:prefix python:)
+ (guix build utils))
+ #:tests? #f
#:make-flags
(list "threading=multi" "link=shared"
@@ -83,7 +88,9 @@
(delete 'bootstrap)
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((icu (assoc-ref inputs "icu4c"))
+ (let* ((icu (assoc-ref inputs "icu4c"))
+ (python (assoc-ref inputs "python"))
+ (python-version (python:python-version python))
(out (assoc-ref outputs "out")))
(substitute* '("libs/config/configure"
"libs/spirit/classic/phoenix/test/runtest.sh"
@@ -95,11 +102,18 @@
(setenv "SHELL" (which "sh"))
(setenv "CONFIG_SHELL" (which "sh"))
+ (substitute* "tools/build/src/tools/python.jam"
+ (("include/python\\$\\(version\\)")
+ "include/python$(version)m"))
+
(invoke "./bootstrap.sh"
(string-append "--prefix=" out)
- ;; Auto-detection looks for ICU only in traditional
- ;; install locations.
+ ;; Auto-detection looks for dependencies only
+ ;; in traditional install locations.
(string-append "--with-icu=" icu)
+ (string-append "--with-python=" python "/bin/python3")
+ (string-append "--with-python-root=" python)
+ (string-append "--with-python-version=" python-version)
"--with-toolset=gcc"))))
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
@@ -110,15 +124,19 @@
(lambda* (#:key make-flags #:allow-other-keys)
(apply invoke "./b2" "install" make-flags)))
(add-after 'install 'provide-libboost_python
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- ;; Boost can build support for both Python 2 and Python 3 since
- ;; version 1.67.0, and suffixes each library with the Python
- ;; version. Many consumers only check for libboost_python
- ;; however, so we provide it here as suggested in
- ;; <https://github.com/boostorg/python/issues/203>.
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (python (assoc-ref inputs "python"))
+ (python-version (python:python-version python))
+ (libboost.so
+ (string-append "libboost_python"
+ (string-join
+ (string-split python-version #\.) "")
+ ".so")))
(with-directory-excursion (string-append out "/lib")
- (symlink "libboost_python27.so" "libboost_python.so"))
+ (symlink libboost.so "libboost_python.so")
+ ;; Some packages also look for libboost_python3.so
+ (symlink libboost.so "libboost_python3.so"))
#t))))))
(home-page "https://www.boost.org")
@@ -129,70 +147,6 @@ across a broad spectrum of applications.")
(license (license:x11-style "https://www.boost.org/LICENSE_1_0.txt"
"Some components have other similar licences."))))
-;; TODO: Merge with 'Boost' in the next rebuild cycle.
-(define-public boost-with-python3
- (package
- (inherit boost)
- (name "boost-python3")
- (native-inputs
- `(("perl" ,perl)
- ("python" ,python)
- ("tcsh" ,tcsh)))
- (arguments (substitute-keyword-arguments (package-arguments boost)
- ((#:imported-modules _ '())
- `((guix build python-build-system)
- ,@%gnu-build-system-modules))
- ((#:modules _ '())
- '((guix build gnu-build-system)
- ((guix build python-build-system) #:prefix python:)
- (guix build utils)))
- ((#:phases phases)
- `(modify-phases ,phases
- (replace 'configure
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let* ((icu (assoc-ref inputs "icu4c"))
- (python (assoc-ref inputs "python"))
- (python-version (python:python-version python))
- (out (assoc-ref outputs "out")))
- (substitute* '("libs/config/configure"
- "libs/spirit/classic/phoenix/test/runtest.sh"
- "tools/build/src/engine/execunix.c"
- "tools/build/src/engine/Jambase"
- "tools/build/src/engine/jambase.c")
- (("/bin/sh") (which "sh")))
-
- (setenv "SHELL" (which "sh"))
- (setenv "CONFIG_SHELL" (which "sh"))
-
- (substitute* "tools/build/src/tools/python.jam"
- (("include/python\\$\\(version\\)")
- "include/python$(version)m"))
-
- (invoke "./bootstrap.sh"
- (string-append "--prefix=" out)
- ;; Auto-detection looks for dependencies only
- ;; in traditional install locations.
- (string-append "--with-icu=" icu)
- (string-append "--with-python=" python "/bin/python3")
- (string-append "--with-python-root=" python)
- (string-append "--with-python-version=" python-version)
- "--with-toolset=gcc"))))
- (replace 'provide-libboost_python
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (python (assoc-ref inputs "python"))
- (python-version (python:python-version python))
- (libboost.so
- (string-append "libboost_python"
- (string-join
- (string-split python-version #\.) "")
- ".so")))
- (with-directory-excursion (string-append out "/lib")
- (symlink libboost.so "libboost_python.so")
- ;; Some packages also look for libboost_python3.so
- (symlink libboost.so "libboost_python3.so"))
- #t)))))))))
-
(define-public boost-static
(package
(inherit boost)
--
2.24.0
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0001-gnu-boost-with-python3-Parameterize-python-version.patch --]
[-- Type: text/x-diff; name=0001-gnu-boost-with-python3-Parameterize-python-version.patch, Size: 3937 bytes --]
From be296d145dbe712e9b84bf80bcefeb8e24418662 Mon Sep 17 00:00:00 2001
From: Giacomo Leidi <goodoldpaul@autistici.org>
Date: Sun, 8 Dec 2019 21:47:51 +0100
Subject: [PATCH 1/2] gnu: boost-with-python3: Parameterize python version.
* gnu/packages/boost.scm (boost-with-python3):
[arguments]: Parameterize python version.
---
gnu/packages/boost.scm | 31 +++++++++++++++++++++++--------
1 file changed, 23 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index 0a2a5c5c01..f436d5b688 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -139,13 +139,21 @@ across a broad spectrum of applications.")
("python" ,python)
("tcsh" ,tcsh)))
(arguments (substitute-keyword-arguments (package-arguments boost)
+ ((#:imported-modules _ '())
+ `((guix build python-build-system)
+ ,@%gnu-build-system-modules))
+ ((#:modules _ '())
+ '((guix build gnu-build-system)
+ ((guix build python-build-system) #:prefix python:)
+ (guix build utils)))
((#:phases phases)
`(modify-phases ,phases
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((icu (assoc-ref inputs "icu4c"))
- (python (assoc-ref inputs "python"))
- (out (assoc-ref outputs "out")))
+ (let* ((icu (assoc-ref inputs "icu4c"))
+ (python (assoc-ref inputs "python"))
+ (python-version (python:python-version python))
+ (out (assoc-ref outputs "out")))
(substitute* '("libs/config/configure"
"libs/spirit/classic/phoenix/test/runtest.sh"
"tools/build/src/engine/execunix.c"
@@ -167,15 +175,22 @@ across a broad spectrum of applications.")
(string-append "--with-icu=" icu)
(string-append "--with-python=" python "/bin/python3")
(string-append "--with-python-root=" python)
- "--with-python-version=3.7"
+ (string-append "--with-python-version=" python-version)
"--with-toolset=gcc"))))
(replace 'provide-libboost_python
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (python (assoc-ref inputs "python"))
+ (python-version (python:python-version python))
+ (libboost.so
+ (string-append "libboost_python"
+ (string-join
+ (string-split python-version #\.) "")
+ ".so")))
(with-directory-excursion (string-append out "/lib")
- (symlink "libboost_python37.so" "libboost_python.so")
+ (symlink libboost.so "libboost_python.so")
;; Some packages also look for libboost_python3.so
- (symlink "libboost_python37.so" "libboost_python3.so"))
+ (symlink libboost.so "libboost_python3.so"))
#t)))))))))
(define-public boost-static
--
2.24.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#38228: Fwd: [PATCH] gnu: boost: Build with python3
2019-12-09 11:24 ` goodoldpaul
@ 2020-01-08 21:11 ` Marius Bakke
0 siblings, 0 replies; 8+ messages in thread
From: Marius Bakke @ 2020-01-08 21:11 UTC (permalink / raw)
To: goodoldpaul; +Cc: 38228-done
[-- Attachment #1: Type: text/plain, Size: 4385 bytes --]
goodoldpaul@autistici.org writes:
> Hello Marius,
> I apologize for taking so long: the end of the semester is near and my
> time is a little limited.
No worries. :-)
> I'm attaching the two patches. As you said the one that parameterizes
> the python version of boost-with-python3 must be applied to master, the
> other one to core-updates.
Excellent! I went ahead and adjusted it to work with the Boost
cross-compilation changes on 'core-updates', as well as simplified it a
little:
https://git.savannah.gnu.org/cgit/guix.git/commit/?h=core-updates&id=2ac164a8107dbb07ba1ed29986859d3e936f795a
>>> The patch builds boost with python3 and parameterizes the python
>>> version, as Efraim suggested. I built it successfully on core updates.
>>> When I tried building Epour on core-updates and saw that Guix was
>>> starting to build Bash 5.0 I renounced (:D) and I built it on master
>>> with boost-with-python3 .
>>
>> In general, working on the 'core-updates' branch requires a fairly
>> powerful computer (and lots of time), sorry about that!
>>
>>> Libtorrent-rasterbar seems to build fine on master but some tests fail
>>> to pass and they all seem to be network related but then again this is
>>> torrent we are talking about. I didn't investigate further but I
>>> attach
>>> the log.
>>
>> Strange. I suppose these tests are not run when using Boost + Python
>> 2?
>> In any case we don't have to worry about that just yet ;-)
>
> I gave another look at Libtorrent-rasterbar and I noticed that it
> depends directly on python2, so the answer to the failing tests could be
> that upgrading both boost and the python version ( as was done in
> Efraim's code that I used last time to test boost-with-python3 ) broke
> something that a closer look to the failing tests could figure out.
>
> Right now I tested the upgraded version without problems by building the
> following ( randomly selected) packages: innoextract, swig, libarea,
> pbbam, cgal, openimageio. If you have a better idea of what must be
> tested please tell me and I'll do some more tests.
Thanks for testing! I had to adjust 'Vigra' to work with Python 3, but
it was straightforward:
https://git.savannah.gnu.org/cgit/guix.git/commit/?h=core-updates&id=a82e6faa8b993d1f3b47a8bd22c4509f7cae7ec1
>>> From 91a25fb143ad0e2e20e8ddadea0c0610849adf92 Mon Sep 17 00:00:00 2001
>>> From: Giacomo Leidi <goodoldpaul@autistici.org>
>>> Date: Tue, 12 Nov 2019 00:24:49 +0100
>>> Subject: [PATCH] gnu: boost: Build with python3.
>>>
>>> * gnu/packages/boost.scm (boost):
>>> [arguments]: Parameterize python version.
>>> [native-inputs]: Use python3.
>>
>> [...]
>>
>>> (arguments
>>> - `(#:tests? #f
>>> + `(#:modules ((guix build gnu-build-system)
>>> + (guix build utils)
>>> + (srfi srfi-1))
>>
>> If you add (guix build python-build-system) in there ...
>
> [...]
>
>>> (replace 'configure
>>> (lambda* (#:key inputs outputs #:allow-other-keys)
>>> (let ((icu (assoc-ref inputs "icu4c"))
>>> + (python (assoc-ref inputs "python"))
>>> + (python-version
>>> + (take (string-split ,(package-version python)
>>> #\.) 2))
>>
>> ... then you can use (python-version (python-version python)) here and
>> below.
>
> I did add python-build-system to #:modules, but Guix kept complaining
> that python-build-system was not importable until I added
>
> #:imported-modules ((guix build python-build-system)
> ,@%gnu-build-system-modules)
>
> Do you happen to have any idea of the differences from
> #:imported-modules and #:modules? And why was using only
> gnu-build-system possible also without adding it to #:imported-modules?
Caleb explains it very well here:
https://lists.gnu.org/archive/html/guix-devel/2019-12/msg00105.html
> Or even better: is there any kind of documentation of the arguments and
> keywords and return values of Guix's functions? Something like this
> https://flask.palletsprojects.com/en/1.1.x/api/ .
Unfortunately no, but documenting parts of the Guix API is being
discussed. The procedures are typically documented in the source code
though, so 'git grep' is the best tool for now. :-/
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-01-08 21:12 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-08 10:59 [bug#38128] [PATCH] gnu: Add boost-with-python3 goodoldpaul
2019-11-10 21:50 ` bug#38128: " Marius Bakke
2019-11-11 9:36 ` [bug#38128] " Efraim Flashner
2019-11-12 0:06 ` goodoldpaul
2019-11-16 9:04 ` [bug#38228] Fwd: [PATCH] gnu: boost: Build with python3 goodoldpaul
2019-11-20 0:01 ` Marius Bakke
2019-12-09 11:24 ` goodoldpaul
2020-01-08 21:11 ` bug#38228: " Marius Bakke
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.