>>> py3-pyrsistent: Building community/py3-pyrsistent 0.18.0-r2 (using abuild 3.9.0-r4) started Tue, 09 Aug 2022 08:22:20 +0000 >>> py3-pyrsistent: Checking sanity of /home/buildozer/aports/community/py3-pyrsistent/APKBUILD... >>> WARNING: py3-pyrsistent: No maintainer >>> py3-pyrsistent: Analyzing dependencies... >>> py3-pyrsistent: Installing for build: build-base python3 py3-setuptools python3-dev py3-hypothesis py3-pytest py3-pytest-runner (1/29) Installing libbz2 (1.0.8-r2) (2/29) Installing libffi (3.4.2-r1) (3/29) Installing gdbm (1.23-r0) (4/29) Installing xz-libs (5.2.5-r1) (5/29) Installing mpdecimal (2.5.1-r1) (6/29) Installing readline (8.1.2-r0) (7/29) Installing sqlite-libs (3.39.2-r0) (8/29) Installing python3 (3.10.5-r2) (9/29) Installing py3-appdirs (1.4.4-r4) (10/29) Installing py3-more-itertools (8.13.0-r0) (11/29) Installing py3-ordered-set (4.0.2-r4) (12/29) Installing py3-parsing (3.0.9-r0) (13/29) Installing py3-packaging (21.3-r2) (14/29) Installing py3-setuptools (59.4.0-r0) (15/29) Installing python3-dev (3.10.5-r2) (16/29) Installing py3-attrs (21.4.0-r0) (17/29) Installing py3-sortedcontainers (2.4.0-r1) (18/29) Installing py3-exceptiongroup (1.0.0_rc8-r0) (19/29) Installing py3-hypothesis (6.54.1-r0) (20/29) Installing py3-atomicwrites (1.4.1-r0) (21/29) Installing py3-iniconfig (1.1.1-r3) (22/29) Installing py3-pluggy (1.0.0-r0) (23/29) Installing py3-py (1.10.0-r2) (24/29) Installing py3-pygments (2.11.2-r0) (25/29) Installing py3-tomli (2.0.1-r1) (26/29) Installing py3-wcwidth (0.2.5-r2) (27/29) Installing py3-pytest (7.1.2-r2) (28/29) Installing py3-pytest-runner (5.3.2-r1) (29/29) Installing .makedepends-py3-pyrsistent (20220809.082220) Executing busybox-1.35.0-r22.trigger OK: 870 MiB in 132 packages >>> py3-pyrsistent: Cleaning up srcdir >>> py3-pyrsistent: Cleaning up pkgdir >>> py3-pyrsistent: Fetching https://distfiles.alpinelinux.org/distfiles/edge/pyrsistent-0.18.0.tar.gz >>> py3-pyrsistent: Fetching https://distfiles.alpinelinux.org/distfiles/edge/pyrsistent-0.18.0.tar.gz >>> py3-pyrsistent: Checking sha512sums... pyrsistent-0.18.0.tar.gz: OK >>> py3-pyrsistent: Unpacking /var/cache/distfiles/edge/pyrsistent-0.18.0.tar.gz... running build running build_py creating build creating build/lib.linux-aarch64-3.10 copying _pyrsistent_version.py -> build/lib.linux-aarch64-3.10 creating build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pdeque.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pclass.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_plist.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_immutable.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_field_common.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_transformations.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_toolz.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_checked_types.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pmap.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pvector.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/typing.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_helpers.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_precord.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/__init__.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pset.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/_pbag.py -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/py.typed -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/__init__.pyi -> build/lib.linux-aarch64-3.10/pyrsistent copying pyrsistent/typing.pyi -> build/lib.linux-aarch64-3.10/pyrsistent running build_ext building 'pvectorc' extension creating build/temp.linux-aarch64-3.10 gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -g -g -g -DTHREAD_STACK_SIZE=0x100000 -Os -Os -fPIC -I/usr/include/python3.10 -c pvectorcmodule.c -o build/temp.linux-aarch64-3.10/pvectorcmodule.o pvectorcmodule.c: In function 'nodeFor': pvectorcmodule.c:152:21: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 152 | if((i >= 0) && (i < self->count)) { | ^ pvectorcmodule.c:153:10: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 153 | if(i >= TAIL_OFF(self)) { | ^~ pvectorcmodule.c: In function 'PVector_repeat': pvectorcmodule.c:428:17: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 428 | for(j=0; jcount; j++) { | ^ pvectorcmodule.c: In function 'extendWithItem': pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare] 145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift)) | ^ pvectorcmodule.c:769:8: note: in expansion of macro 'ROOT_NODE_FULL' 769 | if(ROOT_NODE_FULL(newVec)) { | ^~~~~~~~~~~~~~ pvectorcmodule.c: In function 'PVector_append': pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare] 145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift)) | ^ pvectorcmodule.c:919:6: note: in expansion of macro 'ROOT_NODE_FULL' 919 | if(ROOT_NODE_FULL(self)) { | ^~~~~~~~~~~~~~ gcc -shared -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Os -Os build/temp.linux-aarch64-3.10/pvectorcmodule.o -L/usr/lib -o build/lib.linux-aarch64-3.10/pvectorc.cpython-310-aarch64-linux-gnu.so running pytest running egg_info creating pyrsistent.egg-info writing pyrsistent.egg-info/PKG-INFO writing dependency_links to pyrsistent.egg-info/dependency_links.txt writing top-level names to pyrsistent.egg-info/top_level.txt writing manifest file 'pyrsistent.egg-info/SOURCES.txt' reading manifest file 'pyrsistent.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' adding license file 'LICENSE.mit' writing manifest file 'pyrsistent.egg-info/SOURCES.txt' running build_ext building 'pvectorc' extension gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -g -g -g -DTHREAD_STACK_SIZE=0x100000 -Os -Os -fPIC -I/usr/include/python3.10 -c pvectorcmodule.c -o build/temp.linux-aarch64-3.10/pvectorcmodule.o pvectorcmodule.c: In function 'nodeFor': pvectorcmodule.c:152:21: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 152 | if((i >= 0) && (i < self->count)) { | ^ pvectorcmodule.c:153:10: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 153 | if(i >= TAIL_OFF(self)) { | ^~ pvectorcmodule.c: In function 'PVector_repeat': pvectorcmodule.c:428:17: warning: comparison of integer expressions of different signedness: 'int' and 'unsigned int' [-Wsign-compare] 428 | for(j=0; jcount; j++) { | ^ pvectorcmodule.c: In function 'extendWithItem': pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare] 145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift)) | ^ pvectorcmodule.c:769:8: note: in expansion of macro 'ROOT_NODE_FULL' 769 | if(ROOT_NODE_FULL(newVec)) { | ^~~~~~~~~~~~~~ pvectorcmodule.c: In function 'PVector_append': pvectorcmodule.c:145:52: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare] 145 | #define ROOT_NODE_FULL(vec) ((vec->count >> SHIFT) > (1 << vec->shift)) | ^ pvectorcmodule.c:919:6: note: in expansion of macro 'ROOT_NODE_FULL' 919 | if(ROOT_NODE_FULL(self)) { | ^~~~~~~~~~~~~~ gcc -shared -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Os -Os build/temp.linux-aarch64-3.10/pvectorcmodule.o -L/usr/lib -o /home/buildozer/aports/community/py3-pyrsistent/src/pyrsistent-0.18.0/pvectorc.cpython-310-aarch64-linux-gnu.so ============================= test session starts ============================== platform linux -- Python 3.10.5, pytest-7.1.2, pluggy-1.0.0 rootdir: /home/buildozer/aports/community/py3-pyrsistent/src/pyrsistent-0.18.0, configfile: pytest.ini plugins: hypothesis-6.54.1 collected 633 items tests/bag_test.py ................................... [ 5%] tests/checked_map_test.py .................. [ 8%] tests/checked_set_test.py ............ [ 10%] tests/checked_vector_test.py ........................ [ 14%] tests/class_test.py ............................................. [ 21%] tests/deque_test.py ........................................ [ 27%] tests/field_test.py .. [ 27%] tests/freeze_test.py ........................ [ 31%] tests/hypothesis_vector_test.py ... [ 32%] tests/immutable_object_test.py ....... [ 33%] tests/list_test.py ...................................... [ 39%] tests/map_test.py ................................................ [ 46%] tests/record_test.py ................................................... [ 54%] .................................... [ 60%] tests/regression_test.py . [ 60%] tests/set_test.py ......................... [ 64%] tests/toolz_test.py . [ 64%] tests/transform_test.py ................... [ 67%] tests/vector_test.py ................................................... [ 75%] ................................................s....................... [ 87%] ........................................................................ [ 98%] ......... [100%] ======================= 632 passed, 1 skipped in 19.51s ======================== >>> py3-pyrsistent: Entering fakeroot... running install /usr/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( running build running build_py running build_ext running install_lib creating /home/buildozer/aports/community/py3-pyrsistent/pkg creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10 creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages copying build/lib.linux-aarch64-3.10/pvectorc.cpython-310-aarch64-linux-gnu.so -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages copying build/lib.linux-aarch64-3.10/_pyrsistent_version.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages creating /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pdeque.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pclass.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_plist.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_immutable.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_field_common.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/py.typed -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_transformations.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_toolz.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_checked_types.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pmap.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pvector.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/typing.pyi -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/__init__.pyi -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/typing.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_helpers.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_precord.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/__init__.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pset.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent copying build/lib.linux-aarch64-3.10/pyrsistent/_pbag.py -> /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/_pyrsistent_version.py to _pyrsistent_version.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pdeque.py to _pdeque.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pclass.py to _pclass.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_plist.py to _plist.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_immutable.py to _immutable.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_field_common.py to _field_common.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_transformations.py to _transformations.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_toolz.py to _toolz.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_checked_types.py to _checked_types.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pmap.py to _pmap.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pvector.py to _pvector.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/typing.py to typing.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_helpers.py to _helpers.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_precord.py to _precord.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/__init__.py to __init__.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pset.py to _pset.cpython-310.pyc byte-compiling /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent/_pbag.py to _pbag.cpython-310.pyc running install_egg_info running egg_info writing pyrsistent.egg-info/PKG-INFO writing dependency_links to pyrsistent.egg-info/dependency_links.txt writing top-level names to pyrsistent.egg-info/top_level.txt reading manifest file 'pyrsistent.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' adding license file 'LICENSE.mit' writing manifest file 'pyrsistent.egg-info/SOURCES.txt' Copying pyrsistent.egg-info to /home/buildozer/aports/community/py3-pyrsistent/pkg/py3-pyrsistent/usr/lib/python3.10/site-packages/pyrsistent-0.18.0-py3.10.egg-info running install_scripts >>> py3-pyrsistent*: Running postcheck for py3-pyrsistent >>> py3-pyrsistent*: Preparing package py3-pyrsistent... >>> py3-pyrsistent*: Stripping binaries >>> py3-pyrsistent*: Scanning shared objects >>> py3-pyrsistent*: Tracing dependencies... python3 so:libc.musl-aarch64.so.1 >>> py3-pyrsistent*: Package size: 448.0 KB >>> py3-pyrsistent*: Compressing data... >>> py3-pyrsistent*: Create checksum... >>> py3-pyrsistent*: Create py3-pyrsistent-0.18.0-r2.apk >>> py3-pyrsistent: Build complete at Tue, 09 Aug 2022 08:22:44 +0000 elapsed time 0h 0m 24s >>> py3-pyrsistent: Cleaning up srcdir >>> py3-pyrsistent: Cleaning up pkgdir >>> py3-pyrsistent: Uninstalling dependencies... (1/29) Purging .makedepends-py3-pyrsistent (20220809.082220) (2/29) Purging python3-dev (3.10.5-r2) (3/29) Purging py3-hypothesis (6.54.1-r0) (4/29) Purging py3-sortedcontainers (2.4.0-r1) (5/29) Purging py3-exceptiongroup (1.0.0_rc8-r0) (6/29) Purging py3-pytest (7.1.2-r2) (7/29) Purging py3-atomicwrites (1.4.1-r0) (8/29) Purging py3-attrs (21.4.0-r0) (9/29) Purging py3-iniconfig (1.1.1-r3) (10/29) Purging py3-pluggy (1.0.0-r0) (11/29) Purging py3-py (1.10.0-r2) (12/29) Purging py3-pygments (2.11.2-r0) (13/29) Purging py3-tomli (2.0.1-r1) (14/29) Purging py3-wcwidth (0.2.5-r2) (15/29) Purging py3-pytest-runner (5.3.2-r1) (16/29) Purging py3-setuptools (59.4.0-r0) (17/29) Purging py3-appdirs (1.4.4-r4) (18/29) Purging py3-more-itertools (8.13.0-r0) (19/29) Purging py3-ordered-set (4.0.2-r4) (20/29) Purging py3-packaging (21.3-r2) (21/29) Purging py3-parsing (3.0.9-r0) (22/29) Purging python3 (3.10.5-r2) (23/29) Purging libbz2 (1.0.8-r2) (24/29) Purging libffi (3.4.2-r1) (25/29) Purging gdbm (1.23-r0) (26/29) Purging xz-libs (5.2.5-r1) (27/29) Purging mpdecimal (2.5.1-r1) (28/29) Purging readline (8.1.2-r0) (29/29) Purging sqlite-libs (3.39.2-r0) Executing busybox-1.35.0-r22.trigger OK: 752 MiB in 103 packages >>> py3-pyrsistent: Updating the community/aarch64 repository index... >>> py3-pyrsistent: Signing the index...