>>> py3-uvloop: Building community/py3-uvloop 0.19.0-r0 (using abuild 3.12.0-r0) started Wed, 25 Oct 2023 01:21:39 +0000 >>> py3-uvloop: Checking sanity of /home/buildozer/aports/community/py3-uvloop/APKBUILD... >>> py3-uvloop: Analyzing dependencies... >>> py3-uvloop: Installing for build: build-base py3-setuptools python3-dev cython libuv-dev (1/24) Installing libbz2 (1.0.8-r6) (2/24) Installing libffi (3.4.4-r3) (3/24) Installing gdbm (1.23-r1) (4/24) Installing xz-libs (5.4.4-r0) (5/24) Installing mpdecimal (2.5.1-r2) (6/24) Installing libpanelw (6.4_p20231007-r0) (7/24) Installing readline (8.2.1-r2) (8/24) Installing sqlite-libs (3.43.2-r0) (9/24) Installing python3 (3.11.6-r1) (10/24) Installing python3-pycache-pyc0 (3.11.6-r1) (11/24) Installing pyc (3.11.6-r1) (12/24) Installing py3-setuptools-pyc (68.2.2-r0) (13/24) Installing py3-parsing (3.1.1-r0) (14/24) Installing py3-parsing-pyc (3.1.1-r0) (15/24) Installing py3-packaging-pyc (23.2-r0) (16/24) Installing python3-pyc (3.11.6-r1) (17/24) Installing py3-packaging (23.2-r0) (18/24) Installing py3-setuptools (68.2.2-r0) (19/24) Installing python3-dev (3.11.6-r1) (20/24) Installing cython (0.29.36-r0) (21/24) Installing cython-pyc (0.29.36-r0) (22/24) Installing libuv (1.46.0-r0) (23/24) Installing libuv-dev (1.46.0-r0) (24/24) Installing .makedepends-py3-uvloop (20231025.012145) Executing busybox-1.36.1-r13.trigger OK: 451 MiB in 124 packages >>> py3-uvloop: Cleaning up srcdir >>> py3-uvloop: Cleaning up pkgdir >>> py3-uvloop: Cleaning up tmpdir >>> py3-uvloop: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-uvloop-0.19.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 100 175k 100 175k 0 0 145k 0 0:00:01 0:00:01 --:--:-- 146k >>> py3-uvloop: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-uvloop-0.19.0.tar.gz >>> py3-uvloop: Checking sha512sums... py3-uvloop-0.19.0.tar.gz: OK tcp-tests.patch: OK >>> py3-uvloop: Unpacking /var/cache/distfiles/py3-uvloop-0.19.0.tar.gz... >>> py3-uvloop: tcp-tests.patch patching file tests/test_tcp.py Hunk #1 succeeded at 248 (offset 27 lines). /usr/lib/python3.11/site-packages/setuptools/__init__.py:80: _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) WARNING: The wheel package is not available. running build running build_py creating build creating build/lib.linux-riscv64-cpython-311 creating build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/__init__.py -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/_testbase.py -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/_noop.py -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/_version.py -> build/lib.linux-riscv64-cpython-311/uvloop running egg_info creating uvloop.egg-info writing uvloop.egg-info/PKG-INFO writing dependency_links to uvloop.egg-info/dependency_links.txt writing requirements to uvloop.egg-info/requires.txt writing top-level names to uvloop.egg-info/top_level.txt writing manifest file 'uvloop.egg-info/SOURCES.txt' Compiling uvloop/loop.pyx because it changed. [1/1] Cythonizing uvloop/loop.pyx reading manifest file 'uvloop.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '*' under directory 'vendor/libuv' warning: no previously-included files matching '*' found under directory 'vendor/libuv/.git' warning: no previously-included files matching '*' found under directory 'vendor/libuv/docs' warning: no previously-included files matching '*' found under directory 'vendor/libuv/img' adding license file 'LICENSE-APACHE' adding license file 'LICENSE-MIT' writing manifest file 'uvloop.egg-info/SOURCES.txt' /usr/lib/python3.11/site-packages/setuptools/command/build_py.py:204: _Warning: Package 'uvloop.handles' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'uvloop.handles' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'uvloop.handles' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'uvloop.handles' to be distributed and are already explicitly excluding 'uvloop.handles' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) /usr/lib/python3.11/site-packages/setuptools/command/build_py.py:204: _Warning: Package 'uvloop.includes' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'uvloop.includes' as an importable package[^1], but it is absent from setuptools' `packages` configuration. This leads to an ambiguous overall configuration. If you want to distribute this package, please make sure that 'uvloop.includes' is explicitly added to the `packages` configuration field. Alternatively, you can also rely on setuptools' discovery methods (for example by using `find_namespace_packages(...)`/`find_namespace:` instead of `find_packages(...)`/`find:`). You can read more about "package discovery" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html If you don't want 'uvloop.includes' to be distributed and are already explicitly excluding 'uvloop.includes' via `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`, you can try to use `exclude_package_data`, or `include-package-data=False` in combination with a more fine grained `package-data` configuration. You can read more about "package data files" on setuptools documentation page: - https://setuptools.pypa.io/en/latest/userguide/datafiles.html [^1]: For Python, any directory (with suitable naming) can be imported, even if it does not contain any `.py` files. On the other hand, currently there is no concept of package data directory, all directories are treated like packages. ******************************************************************************** !! check.warn(importable) copying uvloop/cbhandles.pxd -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/cbhandles.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/dns.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/errors.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/loop.pxd -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/loop.pyi -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/loop.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/lru.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/pseudosock.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/py.typed -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/request.pxd -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/request.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/server.pxd -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/server.pyx -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/sslproto.pxd -> build/lib.linux-riscv64-cpython-311/uvloop copying uvloop/sslproto.pyx -> build/lib.linux-riscv64-cpython-311/uvloop creating build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/async_.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/async_.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/basetransport.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/basetransport.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/check.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/check.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/fsevent.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/fsevent.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/handle.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/handle.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/idle.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/idle.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/pipe.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/pipe.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/poll.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/poll.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/process.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/process.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/stream.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/stream.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/streamserver.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/streamserver.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/tcp.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/tcp.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/timer.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/timer.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/udp.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/handles copying uvloop/handles/udp.pyx -> build/lib.linux-riscv64-cpython-311/uvloop/handles creating build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/__init__.py -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/consts.pxi -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/debug.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/flowcontrol.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/python.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/stdlib.pxi -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/system.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/includes copying uvloop/includes/uv.pxd -> build/lib.linux-riscv64-cpython-311/uvloop/includes running build_ext building 'uvloop.loop' extension creating build/temp.linux-riscv64-cpython-311 creating build/temp.linux-riscv64-cpython-311/uvloop gcc -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Os -fstack-clash-protection -Wformat -Werror=format-security -fPIC -I/usr/include/python3.11 -c uvloop/loop.c -o build/temp.linux-riscv64-cpython-311/uvloop/loop.o -O2 gcc -shared -Wl,--as-needed,-O1,--sort-common -Os -fstack-clash-protection -Wformat -Werror=format-security build/temp.linux-riscv64-cpython-311/uvloop/loop.o -L/usr/lib -luv -lrt -lpthread -o build/lib.linux-riscv64-cpython-311/uvloop/loop.cpython-311-riscv64-linux-musl.so copying build/lib.linux-riscv64-cpython-311/uvloop/loop.cpython-311-riscv64-linux-musl.so -> uvloop >>> py3-uvloop: Entering fakeroot... 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 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/community/py3-uvloop/pkg creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11 creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/loop.pyi -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/request.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/cbhandles.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/server.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/loop.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/__init__.py -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/request.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/loop.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/lru.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/sslproto.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/pseudosock.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/py.typed -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/cbhandles.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/server.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/loop.cpython-311-riscv64-linux-musl.so -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/tcp.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/basetransport.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/process.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/stream.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/udp.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/idle.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/tcp.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/stream.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/timer.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/pipe.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/streamserver.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/async_.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/fsevent.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/check.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/handle.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/pipe.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/async_.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/timer.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/fsevent.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/check.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/poll.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/handle.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/process.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/streamserver.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/poll.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/udp.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/basetransport.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles copying build/lib.linux-riscv64-cpython-311/uvloop/handles/idle.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/handles creating /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/flowcontrol.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/system.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/__init__.py -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/consts.pxi -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/debug.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/uv.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/stdlib.pxi -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/includes/python.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes copying build/lib.linux-riscv64-cpython-311/uvloop/_testbase.py -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/errors.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/dns.pyx -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/_noop.py -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/_version.py -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop copying build/lib.linux-riscv64-cpython-311/uvloop/sslproto.pxd -> /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop byte-compiling /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/__init__.py to __init__.cpython-311.pyc byte-compiling /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes/__init__.py to __init__.cpython-311.pyc byte-compiling /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/_testbase.py to _testbase.cpython-311.pyc byte-compiling /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/_noop.py to _noop.cpython-311.pyc byte-compiling /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/_version.py to _version.cpython-311.pyc running install_egg_info running egg_info writing uvloop.egg-info/PKG-INFO writing dependency_links to uvloop.egg-info/dependency_links.txt writing requirements to uvloop.egg-info/requires.txt writing top-level names to uvloop.egg-info/top_level.txt reading manifest file 'uvloop.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '*' under directory 'vendor/libuv' warning: no previously-included files matching '*' found under directory 'vendor/libuv/.git' warning: no previously-included files matching '*' found under directory 'vendor/libuv/docs' warning: no previously-included files matching '*' found under directory 'vendor/libuv/img' adding license file 'LICENSE-APACHE' adding license file 'LICENSE-MIT' writing manifest file 'uvloop.egg-info/SOURCES.txt' Copying uvloop.egg-info to /home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop-0.19.0-py3.11.egg-info running install_scripts >>> py3-uvloop-pyc*: Running split function pyc... '/home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/__pycache__' -> '/home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop-pyc/usr/lib/python3.11/site-packages/uvloop/__pycache__' '/home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop/usr/lib/python3.11/site-packages/uvloop/includes/__pycache__' -> '/home/buildozer/aports/community/py3-uvloop/pkg/py3-uvloop-pyc/usr/lib/python3.11/site-packages/uvloop/includes/__pycache__' >>> py3-uvloop-pyc*: Preparing subpackage py3-uvloop-pyc... >>> py3-uvloop-pyc*: Running postcheck for py3-uvloop-pyc >>> py3-uvloop*: Running postcheck for py3-uvloop >>> py3-uvloop*: Preparing package py3-uvloop... >>> py3-uvloop*: Stripping binaries >>> py3-uvloop-pyc*: Scanning shared objects >>> py3-uvloop*: Scanning shared objects >>> py3-uvloop-pyc*: Tracing dependencies... python3~3.11 >>> py3-uvloop-pyc*: Package size: 88.0 KB >>> py3-uvloop-pyc*: Compressing data... >>> py3-uvloop-pyc*: Create checksum... >>> py3-uvloop-pyc*: Create py3-uvloop-pyc-0.19.0-r0.apk >>> py3-uvloop*: Tracing dependencies... python3~3.11 so:libc.musl-riscv64.so.1 so:libuv.so.1 >>> py3-uvloop*: Package size: 1.7 MB >>> py3-uvloop*: Compressing data... >>> py3-uvloop*: Create checksum... >>> py3-uvloop*: Create py3-uvloop-0.19.0-r0.apk >>> py3-uvloop: Build complete at Wed, 25 Oct 2023 01:29:44 +0000 elapsed time 0h 8m 5s >>> py3-uvloop: Cleaning up srcdir >>> py3-uvloop: Cleaning up pkgdir >>> py3-uvloop: Uninstalling dependencies... (1/24) Purging .makedepends-py3-uvloop (20231025.012145) (2/24) Purging py3-setuptools-pyc (68.2.2-r0) (3/24) Purging py3-setuptools (68.2.2-r0) (4/24) Purging py3-packaging-pyc (23.2-r0) (5/24) Purging py3-packaging (23.2-r0) (6/24) Purging py3-parsing-pyc (3.1.1-r0) (7/24) Purging py3-parsing (3.1.1-r0) (8/24) Purging python3-dev (3.11.6-r1) (9/24) Purging cython-pyc (0.29.36-r0) (10/24) Purging cython (0.29.36-r0) (11/24) Purging libuv-dev (1.46.0-r0) (12/24) Purging libuv (1.46.0-r0) (13/24) Purging python3-pyc (3.11.6-r1) (14/24) Purging python3-pycache-pyc0 (3.11.6-r1) (15/24) Purging pyc (3.11.6-r1) (16/24) Purging python3 (3.11.6-r1) (17/24) Purging gdbm (1.23-r1) (18/24) Purging libbz2 (1.0.8-r6) (19/24) Purging libffi (3.4.4-r3) (20/24) Purging libpanelw (6.4_p20231007-r0) (21/24) Purging mpdecimal (2.5.1-r2) (22/24) Purging readline (8.2.1-r2) (23/24) Purging sqlite-libs (3.43.2-r0) (24/24) Purging xz-libs (5.4.4-r0) Executing busybox-1.36.1-r13.trigger OK: 227 MiB in 100 packages >>> py3-uvloop: Updating the community/riscv64 repository index... >>> py3-uvloop: Signing the index...