>>> py3-enrich: Building community/py3-enrich 1.2.7-r4 (using abuild 3.12.0-r5) started Sat, 13 Apr 2024 03:14:15 +0000 >>> py3-enrich: Checking sanity of /home/buildozer/aports/community/py3-enrich/APKBUILD... >>> py3-enrich: Analyzing dependencies... >>> py3-enrich: Installing for build: build-base py3-rich py3-pytest py3-pytest-mock py3-setuptools py3-setuptools_scm (1/41) Installing libffi (3.4.6-r0) (2/41) Installing gdbm (1.23-r1) (3/41) Installing mpdecimal (4.0.0-r0) (4/41) Installing libpanelw (6.4_p20240330-r0) (5/41) Installing readline (8.2.10-r0) (6/41) Installing sqlite-libs (3.45.2-r0) (7/41) Installing python3 (3.12.3-r0) (8/41) Installing python3-pycache-pyc0 (3.12.3-r0) (9/41) Installing pyc (3.12.3-r0) (10/41) Installing py3-attrs (23.2.0-r1) (11/41) Installing py3-attrs-pyc (23.2.0-r1) (12/41) Installing py3-mdurl (0.1.2-r3) (13/41) Installing py3-mdurl-pyc (0.1.2-r3) (14/41) Installing py3-markdown-it-py-pyc (3.0.0-r1) (15/41) Installing py3-pygments (2.17.2-r1) (16/41) Installing py3-pygments-pyc (2.17.2-r1) (17/41) Installing py3-rich-pyc (13.7.1-r1) (18/41) Installing python3-pyc (3.12.3-r0) (19/41) Installing py3-markdown-it-py (3.0.0-r1) (20/41) Installing py3-rich (13.7.1-r1) (21/41) Installing py3-iniconfig (2.0.0-r1) (22/41) Installing py3-iniconfig-pyc (2.0.0-r1) (23/41) Installing py3-parsing (3.1.2-r1) (24/41) Installing py3-parsing-pyc (3.1.2-r1) (25/41) Installing py3-packaging (24.0-r1) (26/41) Installing py3-packaging-pyc (24.0-r1) (27/41) Installing py3-pluggy (1.4.0-r1) (28/41) Installing py3-pluggy-pyc (1.4.0-r1) (29/41) Installing py3-py (1.11.0-r3) (30/41) Installing py3-py-pyc (1.11.0-r3) (31/41) Installing py3-pytest (8.1.1-r1) (32/41) Installing py3-pytest-pyc (8.1.1-r1) (33/41) Installing py3-mock (5.1.0-r2) (34/41) Installing py3-mock-pyc (5.1.0-r2) (35/41) Installing py3-pytest-mock (3.10.0-r3) (36/41) Installing py3-pytest-mock-pyc (3.10.0-r3) (37/41) Installing py3-setuptools (69.2.0-r2) (38/41) Installing py3-setuptools-pyc (69.2.0-r2) (39/41) Installing py3-setuptools_scm (8.0.4-r2) (40/41) Installing py3-setuptools_scm-pyc (8.0.4-r2) (41/41) Installing .makedepends-py3-enrich (20240413.031417) Executing busybox-1.36.1-r25.trigger OK: 444 MiB in 154 packages >>> py3-enrich: Cleaning up srcdir >>> py3-enrich: Cleaning up pkgdir >>> py3-enrich: Cleaning up tmpdir >>> py3-enrich: Fetching https://distfiles.alpinelinux.org/distfiles/edge/enrich-1.2.7.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 100 16918 100 16918 0 0 108k 0 --:--:-- --:--:-- --:--:-- 108k >>> py3-enrich: Fetching https://distfiles.alpinelinux.org/distfiles/edge/enrich-1.2.7.tar.gz >>> py3-enrich: Checking sha512sums... enrich-1.2.7.tar.gz: OK >>> py3-enrich: Unpacking /var/cache/distfiles/edge/enrich-1.2.7.tar.gz... /usr/lib/python3.12/site-packages/setuptools/__init__.py:81: _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. /usr/lib/python3.12/site-packages/setuptools_scm/_integration/setuptools.py:90: UserWarning: version of None already set warnings.warn(f"version of {dist_name} already set") running build running build_py creating build creating build/lib creating build/lib/enrich copying src/enrich/logging.py -> build/lib/enrich copying src/enrich/console.py -> build/lib/enrich copying src/enrich/__init__.py -> build/lib/enrich running egg_info writing src/enrich.egg-info/PKG-INFO writing dependency_links to src/enrich.egg-info/dependency_links.txt writing requirements to src/enrich.egg-info/requires.txt writing top-level names to src/enrich.egg-info/top_level.txt reading manifest file 'src/enrich.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'asset' adding license file 'LICENSE' writing manifest file 'src/enrich.egg-info/SOURCES.txt' /usr/lib/python3.12/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'enrich.test' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'enrich.test' 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 'enrich.test' 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 'enrich.test' to be distributed and are already explicitly excluding 'enrich.test' 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 src/enrich/py.typed -> build/lib/enrich creating build/lib/enrich/test copying src/enrich/test/test_console.py -> build/lib/enrich/test copying src/enrich/test/test_logging.py -> build/lib/enrich/test ============================= test session starts ============================== platform linux -- Python 3.12.3, pytest-8.1.1, pluggy-1.4.0 -- /usr/bin/python3 cachedir: .pytest_cache rootdir: /home/buildozer/aports/community/py3-enrich/src/enrich-1.2.7 configfile: setup.cfg testpaths: src plugins: mock-3.10.0 collecting ... collected 9 items / 2 deselected / 7 selected src/enrich/test/test_console.py::test_console_soft_wrap PASSED [ 14%] src/enrich/test/test_console.py::test_console_print_ansi PASSED [ 28%] src/enrich/test/test_console.py::test_markup_detection_pycolors0 PASSED [ 42%] src/enrich/test/test_console.py::test_markup_detection_pycolors1 PASSED [ 57%] src/enrich/test/test_console.py::test_markup_detection_tty_yes PASSED [ 71%] src/enrich/test/test_console.py::test_markup_detection_tty_no PASSED [ 85%] src/enrich/test/test_logging.py::test_logging PASSED [100%] ============================= slowest 10 durations ============================= (10 durations < 3s hidden. Use -vv to show these durations.) ======================= 7 passed, 2 deselected in 0.23s ======================== >>> py3-enrich: Entering fakeroot... /usr/lib/python3.12/site-packages/setuptools/__init__.py:81: _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. /usr/lib/python3.12/site-packages/setuptools_scm/_integration/setuptools.py:90: UserWarning: version of None already set warnings.warn(f"version of {dist_name} already set") running install /usr/lib/python3.12/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-enrich/pkg creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12 creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich copying build/lib/enrich/logging.py -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich copying build/lib/enrich/console.py -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich copying build/lib/enrich/__init__.py -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich copying build/lib/enrich/py.typed -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich creating /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test copying build/lib/enrich/test/test_console.py -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test copying build/lib/enrich/test/test_logging.py -> /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test byte-compiling /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/logging.py to logging.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/console.py to console.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/__init__.py to __init__.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test/test_console.py to test_console.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test/test_logging.py to test_logging.cpython-312.pyc running install_egg_info running egg_info writing src/enrich.egg-info/PKG-INFO writing dependency_links to src/enrich.egg-info/dependency_links.txt writing requirements to src/enrich.egg-info/requires.txt writing top-level names to src/enrich.egg-info/top_level.txt reading manifest file 'src/enrich.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'asset' adding license file 'LICENSE' writing manifest file 'src/enrich.egg-info/SOURCES.txt' Copying src/enrich.egg-info to /home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich-1.2.7-py3.12.egg-info running install_scripts >>> py3-enrich-pyc*: Running split function pyc... '/home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/__pycache__' -> '/home/buildozer/aports/community/py3-enrich/pkg/py3-enrich-pyc/usr/lib/python3.12/site-packages/enrich/__pycache__' '/home/buildozer/aports/community/py3-enrich/pkg/py3-enrich/usr/lib/python3.12/site-packages/enrich/test/__pycache__' -> '/home/buildozer/aports/community/py3-enrich/pkg/py3-enrich-pyc/usr/lib/python3.12/site-packages/enrich/test/__pycache__' >>> py3-enrich-pyc*: Preparing subpackage py3-enrich-pyc... >>> py3-enrich-pyc*: Running postcheck for py3-enrich-pyc >>> py3-enrich*: Running postcheck for py3-enrich >>> py3-enrich*: Preparing package py3-enrich... >>> py3-enrich-pyc*: Tracing dependencies... py3-rich python3~3.12 >>> py3-enrich-pyc*: Package size: 60.0 KB >>> py3-enrich-pyc*: Compressing data... >>> py3-enrich-pyc*: Create checksum... >>> py3-enrich-pyc*: Create py3-enrich-pyc-1.2.7-r4.apk >>> py3-enrich*: Tracing dependencies... py3-rich python3~3.12 >>> py3-enrich*: Package size: 72.0 KB >>> py3-enrich*: Compressing data... >>> py3-enrich*: Create checksum... >>> py3-enrich*: Create py3-enrich-1.2.7-r4.apk >>> py3-enrich: Build complete at Sat, 13 Apr 2024 03:14:28 +0000 elapsed time 0h 0m 13s >>> py3-enrich: Cleaning up srcdir >>> py3-enrich: Cleaning up pkgdir >>> py3-enrich: Uninstalling dependencies... (1/41) Purging .makedepends-py3-enrich (20240413.031417) (2/41) Purging py3-rich-pyc (13.7.1-r1) (3/41) Purging py3-rich (13.7.1-r1) (4/41) Purging py3-markdown-it-py-pyc (3.0.0-r1) (5/41) Purging py3-markdown-it-py (3.0.0-r1) (6/41) Purging py3-attrs-pyc (23.2.0-r1) (7/41) Purging py3-attrs (23.2.0-r1) (8/41) Purging py3-mdurl-pyc (0.1.2-r3) (9/41) Purging py3-mdurl (0.1.2-r3) (10/41) Purging py3-pygments-pyc (2.17.2-r1) (11/41) Purging py3-pygments (2.17.2-r1) (12/41) Purging py3-pytest-mock-pyc (3.10.0-r3) (13/41) Purging py3-pytest-mock (3.10.0-r3) (14/41) Purging py3-mock-pyc (5.1.0-r2) (15/41) Purging py3-mock (5.1.0-r2) (16/41) Purging py3-pytest-pyc (8.1.1-r1) (17/41) Purging py3-pytest (8.1.1-r1) (18/41) Purging py3-iniconfig-pyc (2.0.0-r1) (19/41) Purging py3-iniconfig (2.0.0-r1) (20/41) Purging py3-pluggy-pyc (1.4.0-r1) (21/41) Purging py3-pluggy (1.4.0-r1) (22/41) Purging py3-py-pyc (1.11.0-r3) (23/41) Purging py3-py (1.11.0-r3) (24/41) Purging py3-setuptools_scm-pyc (8.0.4-r2) (25/41) Purging py3-setuptools_scm (8.0.4-r2) (26/41) Purging py3-setuptools-pyc (69.2.0-r2) (27/41) Purging py3-setuptools (69.2.0-r2) (28/41) Purging py3-packaging-pyc (24.0-r1) (29/41) Purging py3-packaging (24.0-r1) (30/41) Purging py3-parsing-pyc (3.1.2-r1) (31/41) Purging py3-parsing (3.1.2-r1) (32/41) Purging python3-pyc (3.12.3-r0) (33/41) Purging python3-pycache-pyc0 (3.12.3-r0) (34/41) Purging pyc (3.12.3-r0) (35/41) Purging python3 (3.12.3-r0) (36/41) Purging gdbm (1.23-r1) (37/41) Purging libffi (3.4.6-r0) (38/41) Purging libpanelw (6.4_p20240330-r0) (39/41) Purging mpdecimal (4.0.0-r0) (40/41) Purging readline (8.2.10-r0) (41/41) Purging sqlite-libs (3.45.2-r0) Executing busybox-1.36.1-r25.trigger OK: 379 MiB in 113 packages >>> py3-enrich: Updating the community/x86 repository index... >>> py3-enrich: Signing the index...