------------------------------------------------------------------------------- -- Phase: setup ------------------------------------------------------------------------------- Installing /packages/All/expat-2.2.8.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/indexinfo-0.3.1.txz Installing /packages/All/libffi-3.2.1_3.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/ncurses-6.1.20190525.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/readline-8.0.4.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/gettext-runtime-0.20.1.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/openssl-1.1.1d,1.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor Installing /packages/All/python37-3.7.6.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor ===== Message from python37-3.7.6: -- Note that some standard Python modules are provided as separate ports as they require additional dependencies. They are available as: py37-gdbm databases/py-gdbm@py37 py37-sqlite3 databases/py-sqlite3@py37 py37-tkinter x11-toolkits/py-tkinter@py37 Installing /packages/All/py37-setuptools-44.0.0.txz pkg: Cannot runscript POST-INSTALL:Bad file descriptor SUCCEEDED 00:00:05 ------------------------------------------------------------------------------- -- Phase: check-sanity ------------------------------------------------------------------------------- SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: pkg-depends ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on file: /usr/local/sbin/pkg - found SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: fetch-depends ------------------------------------------------------------------------------- SUCCEEDED 00:00:01 ------------------------------------------------------------------------------- -- Phase: fetch ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by py37-editdistance-0.5.3 for building SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: checksum ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by py37-editdistance-0.5.3 for building => SHA256 Checksum OK for editdistance-0.5.3.tar.gz. SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: extract-depends ------------------------------------------------------------------------------- SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: extract ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on file: /usr/local/sbin/pkg - found ===> Fetching all distfiles required by py37-editdistance-0.5.3 for building ===> Extracting for py37-editdistance-0.5.3 => SHA256 Checksum OK for editdistance-0.5.3.tar.gz. Extracted Memory Use: 0.18M SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: patch-depends ------------------------------------------------------------------------------- SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: patch ------------------------------------------------------------------------------- ===> Patching for py37-editdistance-0.5.3 SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: build-depends ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on package: py37-setuptools>0 - found ===> py37-editdistance-0.5.3 depends on file: /usr/local/bin/python3.7 - found SUCCEEDED 00:00:01 ------------------------------------------------------------------------------- -- Phase: lib-depends ------------------------------------------------------------------------------- SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: configure ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on package: py37-setuptools>0 - found ===> py37-editdistance-0.5.3 depends on file: /usr/local/bin/python3.7 - found ===> Configuring for py37-editdistance-0.5.3 running config SUCCEEDED 00:00:01 ------------------------------------------------------------------------------- -- Phase: build ------------------------------------------------------------------------------- ===> Building for py37-editdistance-0.5.3 running build running build_py creating build creating build/lib.dragonfly-5.9-x86_64-3.7 creating build/lib.dragonfly-5.9-x86_64-3.7/editdistance copying editdistance/__init__.py -> build/lib.dragonfly-5.9-x86_64-3.7/editdistance copying editdistance/_editdistance.h -> build/lib.dragonfly-5.9-x86_64-3.7/editdistance copying editdistance/def.h -> build/lib.dragonfly-5.9-x86_64-3.7/editdistance running build_ext building 'editdistance.bycython' extension creating build/temp.dragonfly-5.9-x86_64-3.7 creating build/temp.dragonfly-5.9-x86_64-3.7/editdistance cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -I/usr/local/include -I/usr/local/include/ncurses -O2 -fno-strict-aliasing -pipe -O2 -fno-strict-aliasing -fPIC -I./editdistance -I/usr/local/include/python3.7m -c editdistance/_editdistance.cpp -o build/temp.dragonfly-5.9-x86_64-3.7/editdistance/_editdistance.o editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_dp(const T*, size_t, const T*, size_t) [with T = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:129:62: required from here editdistance/_editdistance.cpp:68:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] for (int i = 0; i < size1 + 1; i++) d[i][0] = i; ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:69:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] for (int i = 0; i < size2 + 1; i++) d[0][i] = i; ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:70:23: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] for (int i = 1; i < size1 + 1; i++) { ~~^~~~~~~~~~~ editdistance/_editdistance.cpp:71:27: warning: comparison of integer expressions of different signedness: 'int' and 'long unsigned int' [-Wsign-compare] for (int j = 1; j < size2 + 1; j++) { ~~^~~~~~~~~~~ editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<1>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 1; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:119:73: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] for(int r = 0; r <= tmax; ++r) { ~~^~~~~~~ editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<2>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 2; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:120:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<3>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 3; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:121:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<4>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 4; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:122:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<5>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 5; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:123:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<6>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 6; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:124:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<7>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 7; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:125:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<8>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 8; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:126:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<9>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 9; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:127:78: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] editdistance/_editdistance.cpp: In instantiation of 'unsigned int edit_distance_bpv(T&, const int64_t*, const size_t&, const unsigned int&, const unsigned int&) [with T = std::map, std::less, std::allocator > > >; TVALUE = varr<10>; int64_t = long int; size_t = long unsigned int]': editdistance/_editdistance.cpp:97:67: required from 'unsigned int edit_distance_map_(const int64_t*, size_t, const int64_t*, size_t) [with long unsigned int N = 10; int64_t = long int; size_t = long unsigned int]' editdistance/_editdistance.cpp:128:80: required from here editdistance/_editdistance.cpp:44:26: warning: comparison of integer expressions of different signedness: 'int' and 'const unsigned int' [-Wsign-compare] cc -Wno-unused-result -Wsign-compare -DNDEBUG -pipe -I/usr/local/include -I/usr/local/include/ncurses -O2 -fno-strict-aliasing -pipe -O2 -fno-strict-aliasing -fPIC -I./editdistance -I/usr/local/include/python3.7m -c editdistance/bycython.cpp -o build/temp.dragonfly-5.9-x86_64-3.7/editdistance/bycython.o editdistance/bycython.cpp: In function 'unsigned int __pyx_f_12editdistance_8bycython_eval(PyObject*, PyObject*, int)': editdistance/bycython.cpp:1243:13: warning: conversion from 'long unsigned int' to 'unsigned int' changes value from '18446744073709551615' to '4294967295' [-Woverflow] __pyx_r = 0xffffffffffffffff; ^~~~~~~~~~~~~~~~~~ c++ -shared -pipe -O2 -fno-strict-aliasing build/temp.dragonfly-5.9-x86_64-3.7/editdistance/_editdistance.o build/temp.dragonfly-5.9-x86_64-3.7/editdistance/bycython.o -L/usr/local/lib -lpython3.7m -o build/lib.dragonfly-5.9-x86_64-3.7/editdistance/bycython.so SUCCEEDED 00:00:05 ------------------------------------------------------------------------------- -- Phase: run-depends ------------------------------------------------------------------------------- ===> py37-editdistance-0.5.3 depends on package: py37-setuptools>0 - found ===> py37-editdistance-0.5.3 depends on file: /usr/local/bin/python3.7 - found SUCCEEDED 00:00:00 ------------------------------------------------------------------------------- -- Phase: stage ------------------------------------------------------------------------------- ===> Staging for py37-editdistance-0.5.3 ===> py37-editdistance-0.5.3 depends on package: py37-setuptools>0 - found ===> py37-editdistance-0.5.3 depends on file: /usr/local/bin/python3.7 - found ===> Generating temporary packing list running install running build running build_py running build_ext running install_lib creating /construction/devel/py-editdistance/stage/usr/local/lib/python3.7 creating /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages creating /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance copying build/lib.dragonfly-5.9-x86_64-3.7/editdistance/_editdistance.h -> /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance copying build/lib.dragonfly-5.9-x86_64-3.7/editdistance/def.h -> /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance copying build/lib.dragonfly-5.9-x86_64-3.7/editdistance/__init__.py -> /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance copying build/lib.dragonfly-5.9-x86_64-3.7/editdistance/bycython.so -> /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance byte-compiling /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance/__init__.py to __init__.cpython-37.pyc writing byte-compilation script '/tmp/tmpyrn4kdjm.py' /usr/local/bin/python3.7 /tmp/tmpyrn4kdjm.py removing /tmp/tmpyrn4kdjm.py running install_egg_info running egg_info writing editdistance.egg-info/PKG-INFO writing dependency_links to editdistance.egg-info/dependency_links.txt writing top-level names to editdistance.egg-info/top_level.txt reading manifest file 'editdistance.egg-info/SOURCES.txt' writing manifest file 'editdistance.egg-info/SOURCES.txt' Copying editdistance.egg-info to /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance-0.5.3-py3.7.egg-info running install_scripts writing list of installed files to '/construction/devel/py-editdistance/.PLIST.pymodtmp' /usr/bin/strip /construction/devel/py-editdistance/stage/usr/local/lib/python3.7/site-packages/editdistance/bycython.so ===> Creating unique files: Move MAN files needing SUFFIX ===> Creating unique files: Move files needing SUFFIX ====> Compressing man pages (compress-man) ====> Running Q/A tests (stage-qa) Error: /usr/local/lib/python3.7/site-packages/editdistance/bycython.so is linked to /usr/local/lib/libintl.so.8 from devel/gettext-runtime but it is not declared as a dependency Warning: you need USES+=gettext-runtime Warning: You have disabled the licenses framework with DISABLE_LICENSES, unable to run checks SUCCEEDED 00:00:02 ------------------------------------------------------------------------------- -- Phase: package ------------------------------------------------------------------------------- ===> Building package for py37-editdistance-0.5.3 file sizes/checksums [10]: 0% file sizes/checksums [10]: 100% packing files [10]: 0% packing files [10]: 100% packing directories [0]: 0% packing directories [0]: 100% SUCCEEDED 00:00:00 TOTAL TIME 00:00:15