>>> py3-cbor2: Building testing/py3-cbor2 5.4.6-r1 (using abuild 3.11.0_rc13-r0) started Mon, 01 May 2023 16:11:58 +0000 >>> py3-cbor2: Checking sanity of /home/buildozer/aports/testing/py3-cbor2/APKBUILD... >>> py3-cbor2: Analyzing dependencies... >>> py3-cbor2: Installing for build: build-base python3 py3-setuptools py3-setuptools_scm py3-wheel python3-dev (1/24) Installing libbz2 (1.0.8-r5) (2/24) Installing gdbm (1.23-r1) (3/24) Installing mpdecimal (2.5.1-r2) (4/24) Installing libpanelw (6.4_p20230429-r0) (5/24) Installing readline (8.2.1-r1) (6/24) Installing sqlite-libs (3.41.2-r2) (7/24) Installing python3 (3.11.3-r10) (8/24) Installing python3-pycache-pyc0 (3.11.3-r10) (9/24) Installing pyc (0.1-r0) (10/24) Installing python3-pyc (3.11.3-r10) (11/24) Installing py3-parsing (3.0.9-r2) (12/24) Installing py3-parsing-pyc (3.0.9-r2) (13/24) Installing py3-packaging (23.1-r1) (14/24) Installing py3-packaging-pyc (23.1-r1) (15/24) Installing py3-setuptools (67.7.2-r0) (16/24) Installing py3-setuptools-pyc (67.7.2-r0) (17/24) Installing py3-typing-extensions (4.5.0-r1) (18/24) Installing py3-typing-extensions-pyc (4.5.0-r1) (19/24) Installing py3-setuptools_scm (7.1.0-r1) (20/24) Installing py3-setuptools_scm-pyc (7.1.0-r1) (21/24) Installing py3-wheel (0.40.0-r1) (22/24) Installing py3-wheel-pyc (0.40.0-r1) (23/24) Installing python3-dev (3.11.3-r10) (24/24) Installing .makedepends-py3-cbor2 (20230501.161203) Executing busybox-1.36.0-r8.trigger OK: 1166 MiB in 127 packages >>> py3-cbor2: Cleaning up srcdir >>> py3-cbor2: Cleaning up pkgdir >>> py3-cbor2: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-cbor2-5.4.6.tar.gz >>> py3-cbor2: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-cbor2-5.4.6.tar.gz >>> py3-cbor2: Checking sha512sums... py3-cbor2-5.4.6.tar.gz: OK >>> py3-cbor2: Unpacking /var/cache/distfiles/py3-cbor2-5.4.6.tar.gz... /usr/lib/python3.11/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated. !! ******************************************************************************** Requirements should be satisfied by a PEP 517 installer. If you are using pip, you can try `pip install --use-pep517`. ******************************************************************************** !! dist.fetch_build_eggs(dist.setup_requires) /usr/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py:66: _BetaConfiguration: Support for `[tool.setuptools]` in `pyproject.toml` is still *beta*. config = read_configuration(filepath, True, ignore_option_errors, dist) running build running build_py creating build creating build/lib.linux-riscv64-cpython-311 creating build/lib.linux-riscv64-cpython-311/cbor2 copying cbor2/types.py -> build/lib.linux-riscv64-cpython-311/cbor2 copying cbor2/__init__.py -> build/lib.linux-riscv64-cpython-311/cbor2 copying cbor2/encoder.py -> build/lib.linux-riscv64-cpython-311/cbor2 copying cbor2/tool.py -> build/lib.linux-riscv64-cpython-311/cbor2 copying cbor2/decoder.py -> build/lib.linux-riscv64-cpython-311/cbor2 running egg_info writing cbor2.egg-info/PKG-INFO writing dependency_links to cbor2.egg-info/dependency_links.txt writing requirements to cbor2.egg-info/requires.txt writing top-level names to cbor2.egg-info/top_level.txt reading manifest file 'cbor2.egg-info/SOURCES.txt' adding license file 'LICENSE.txt' writing manifest file 'cbor2.egg-info/SOURCES.txt' running build_ext building '_cbor2' extension creating build/temp.linux-riscv64-cpython-311 creating build/temp.linux-riscv64-cpython-311/source gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c source/decoder.c -o build/temp.linux-riscv64-cpython-311/source/decoder.o -std=c99 -D_GNU_SOURCE source/decoder.c: In function 'decode_bytestring': source/decoder.c:605:33: warning: format '%llX' expects argument of type 'long long unsigned int', but argument 3 has type 'uint64_t' {aka 'long unsigned int'} [-Wformat=] 605 | sprintf(length_hex, "%llX", length); | ~~~^ ~~~~~~ | | | | | uint64_t {aka long unsigned int} | long long unsigned int | %lX source/decoder.c: In function 'decode_string': source/decoder.c:706:33: warning: format '%llX' expects argument of type 'long long unsigned int', but argument 3 has type 'uint64_t' {aka 'long unsigned int'} [-Wformat=] 706 | sprintf(length_hex, "%llX", length); | ~~~^ ~~~~~~ | | | | | uint64_t {aka long unsigned int} | long long unsigned int | %lX source/decoder.c: In function 'decode_array': source/decoder.c:863:33: warning: format '%llX' expects argument of type 'long long unsigned int', but argument 3 has type 'uint64_t' {aka 'long unsigned int'} [-Wformat=] 863 | sprintf(length_hex, "%llX", length); | ~~~^ ~~~~~~ | | | | | uint64_t {aka long unsigned int} | long long unsigned int | %lX gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c source/encoder.c -o build/temp.linux-riscv64-cpython-311/source/encoder.o -std=c99 -D_GNU_SOURCE source/encoder.c: In function 'CBOREncoder_init': source/encoder.c:187:36: warning: initialization of 'PyObject *' {aka 'struct _object *'} from incompatible pointer type 'PyTypeObject *' {aka 'struct _typeobject *'} [-Wincompatible-pointer-types] 187 | PyObject *datetime_class = PyDateTimeAPI->DateType; | ^~~~~~~~~~~~~ In function 'encode_decimal_digits', inlined from 'CBOREncoder_encode_decimal' at source/encoder.c:1196:20: source/encoder.c:1139:24: warning: 'tmp' may be used uninitialized [-Wmaybe-uninitialized] 1139 | if (tmp && sign) { | ^ source/encoder.c: In function 'CBOREncoder_encode_decimal': source/encoder.c:1112:50: note: 'tmp' was declared here 1112 | PyObject *tuple, *digits, *exp, *sig, *ten, *tmp, *ret = NULL; | ^~~ gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c source/halffloat.c -o build/temp.linux-riscv64-cpython-311/source/halffloat.o -std=c99 -D_GNU_SOURCE gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c source/module.c -o build/temp.linux-riscv64-cpython-311/source/module.o -std=c99 -D_GNU_SOURCE gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c source/tags.c -o build/temp.linux-riscv64-cpython-311/source/tags.o -std=c99 -D_GNU_SOURCE gcc -shared -Wl,--as-needed,-O1,--sort-common -Os -Wformat -Werror=format-security -Os -Wformat -Werror=format-security build/temp.linux-riscv64-cpython-311/source/decoder.o build/temp.linux-riscv64-cpython-311/source/encoder.o build/temp.linux-riscv64-cpython-311/source/halffloat.o build/temp.linux-riscv64-cpython-311/source/module.o build/temp.linux-riscv64-cpython-311/source/tags.o -L/usr/lib -lm -o build/lib.linux-riscv64-cpython-311/_cbor2.cpython-311-riscv64-linux-musl.so >>> py3-cbor2: Entering fakeroot... /usr/lib/python3.11/site-packages/setuptools/__init__.py:84: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated. !! ******************************************************************************** Requirements should be satisfied by a PEP 517 installer. If you are using pip, you can try `pip install --use-pep517`. ******************************************************************************** !! dist.fetch_build_eggs(dist.setup_requires) /usr/lib/python3.11/site-packages/setuptools/config/pyprojecttoml.py:66: _BetaConfiguration: Support for `[tool.setuptools]` in `pyproject.toml` is still *beta*. config = read_configuration(filepath, True, ignore_option_errors, dist) running install /usr/lib/python3.11/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. !! ******************************************************************************** Please avoid running ``setup.py`` directly. Instead, use pypa/build, pypa/installer, pypa/build or other standards-based tools. See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. ******************************************************************************** !! self.initialize_options() running install_lib creating /home/buildozer/aports/testing/py3-cbor2/pkg creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2 creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11 creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages copying build/lib.linux-riscv64-cpython-311/_cbor2.cpython-311-riscv64-linux-musl.so -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages creating /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 copying build/lib.linux-riscv64-cpython-311/cbor2/types.py -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 copying build/lib.linux-riscv64-cpython-311/cbor2/__init__.py -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 copying build/lib.linux-riscv64-cpython-311/cbor2/encoder.py -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 copying build/lib.linux-riscv64-cpython-311/cbor2/tool.py -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 copying build/lib.linux-riscv64-cpython-311/cbor2/decoder.py -> /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2 byte-compiling /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/types.py to types.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/__init__.py to __init__.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/encoder.py to encoder.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/tool.py to tool.cpython-311.pyc byte-compiling /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/decoder.py to decoder.cpython-311.pyc running install_egg_info running egg_info writing cbor2.egg-info/PKG-INFO writing dependency_links to cbor2.egg-info/dependency_links.txt writing requirements to cbor2.egg-info/requires.txt writing top-level names to cbor2.egg-info/top_level.txt reading manifest file 'cbor2.egg-info/SOURCES.txt' adding license file 'LICENSE.txt' writing manifest file 'cbor2.egg-info/SOURCES.txt' Copying cbor2.egg-info to /home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2-5.4.6-py3.11.egg-info running install_scripts >>> py3-cbor2-pyc*: Running split function pyc... '/home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2/usr/lib/python3.11/site-packages/cbor2/__pycache__' -> '/home/buildozer/aports/testing/py3-cbor2/pkg/py3-cbor2-pyc/usr/lib/python3.11/site-packages/cbor2/__pycache__' >>> py3-cbor2-pyc*: Preparing subpackage py3-cbor2-pyc... >>> py3-cbor2-pyc*: Running postcheck for py3-cbor2-pyc >>> py3-cbor2*: Running postcheck for py3-cbor2 >>> py3-cbor2*: Preparing package py3-cbor2... >>> py3-cbor2*: Stripping binaries >>> py3-cbor2-pyc*: Scanning shared objects >>> py3-cbor2*: Scanning shared objects >>> py3-cbor2-pyc*: Tracing dependencies... python3 python3~3.11 >>> py3-cbor2-pyc*: Package size: 124.0 KB >>> py3-cbor2-pyc*: Compressing data... >>> py3-cbor2-pyc*: Create checksum... >>> py3-cbor2-pyc*: Create py3-cbor2-pyc-5.4.6-r1.apk >>> py3-cbor2*: Tracing dependencies... python3 python3~3.11 so:libc.musl-riscv64.so.1 >>> py3-cbor2*: Package size: 208.0 KB >>> py3-cbor2*: Compressing data... >>> py3-cbor2*: Create checksum... >>> py3-cbor2*: Create py3-cbor2-5.4.6-r1.apk >>> py3-cbor2: Build complete at Mon, 01 May 2023 16:12:52 +0000 elapsed time 0h 0m 54s >>> py3-cbor2: Cleaning up srcdir >>> py3-cbor2: Cleaning up pkgdir >>> py3-cbor2: Uninstalling dependencies... (1/24) Purging .makedepends-py3-cbor2 (20230501.161203) (2/24) Purging py3-setuptools_scm-pyc (7.1.0-r1) (3/24) Purging py3-setuptools_scm (7.1.0-r1) (4/24) Purging py3-setuptools-pyc (67.7.2-r0) (5/24) Purging py3-setuptools (67.7.2-r0) (6/24) Purging py3-typing-extensions-pyc (4.5.0-r1) (7/24) Purging py3-typing-extensions (4.5.0-r1) (8/24) Purging py3-wheel-pyc (0.40.0-r1) (9/24) Purging py3-wheel (0.40.0-r1) (10/24) Purging py3-packaging-pyc (23.1-r1) (11/24) Purging py3-packaging (23.1-r1) (12/24) Purging py3-parsing-pyc (3.0.9-r2) (13/24) Purging py3-parsing (3.0.9-r2) (14/24) Purging python3-dev (3.11.3-r10) (15/24) Purging python3-pyc (3.11.3-r10) (16/24) Purging python3-pycache-pyc0 (3.11.3-r10) (17/24) Purging pyc (0.1-r0) (18/24) Purging python3 (3.11.3-r10) (19/24) Purging gdbm (1.23-r1) (20/24) Purging libbz2 (1.0.8-r5) (21/24) Purging libpanelw (6.4_p20230429-r0) (22/24) Purging mpdecimal (2.5.1-r2) (23/24) Purging readline (8.2.1-r1) (24/24) Purging sqlite-libs (3.41.2-r2) Executing busybox-1.36.0-r8.trigger OK: 966 MiB in 103 packages >>> py3-cbor2: Updating the testing/riscv64 repository index... >>> py3-cbor2: Signing the index...