>>> py3-tld: Building community/py3-tld 0.13-r2 (using abuild 3.12.0-r5) started Sun, 14 Apr 2024 01:41:24 +0000 >>> py3-tld: Checking sanity of /home/buildozer/aports/community/py3-tld/APKBUILD... >>> py3-tld: Analyzing dependencies... >>> py3-tld: Installing for build: build-base python3 py3-setuptools (1/19) Installing libbz2 (1.0.8-r6) (2/19) Installing libffi (3.4.6-r0) (3/19) Installing gdbm (1.23-r1) (4/19) Installing xz-libs (5.6.1-r3) (5/19) Installing mpdecimal (4.0.0-r0) (6/19) Installing libpanelw (6.4_p20240330-r0) (7/19) Installing readline (8.2.10-r0) (8/19) Installing sqlite-libs (3.45.2-r0) (9/19) Installing python3 (3.12.3-r0) (10/19) Installing python3-pycache-pyc0 (3.12.3-r0) (11/19) Installing pyc (3.12.3-r0) (12/19) Installing python3-pyc (3.12.3-r0) (13/19) Installing py3-parsing (3.1.2-r1) (14/19) Installing py3-parsing-pyc (3.1.2-r1) (15/19) Installing py3-packaging (24.0-r1) (16/19) Installing py3-packaging-pyc (24.0-r1) (17/19) Installing py3-setuptools (69.2.0-r2) (18/19) Installing py3-setuptools-pyc (69.2.0-r2) (19/19) Installing .makedepends-py3-tld (20240414.014125) Executing busybox-1.36.1-r25.trigger OK: 431 MiB in 124 packages >>> py3-tld: Cleaning up srcdir >>> py3-tld: Cleaning up pkgdir >>> py3-tld: Cleaning up tmpdir >>> py3-tld: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-tld-0.13.tar.gz >>> py3-tld: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-tld-0.13.tar.gz >>> py3-tld: Checking sha512sums... py3-tld-0.13.tar.gz: OK >>> py3-tld: Unpacking /var/cache/distfiles/py3-tld-0.13.tar.gz... /usr/lib/python3.12/site-packages/setuptools/dist.py:476: SetuptoolsDeprecationWarning: Invalid dash-separated options !! ******************************************************************************** Usage of dash-separated 'license-file' will not be supported in future versions. Please use the underscore name 'license_file' instead. By 2024-Sep-26, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! opt = self.warn_dash_deprecation(opt, section) running build running build_py creating build creating build/lib creating build/lib/tld copying src/tld/__init__.py -> build/lib/tld copying src/tld/registry.py -> build/lib/tld copying src/tld/exceptions.py -> build/lib/tld copying src/tld/defaults.py -> build/lib/tld copying src/tld/conf.py -> build/lib/tld copying src/tld/trie.py -> build/lib/tld copying src/tld/utils.py -> build/lib/tld copying src/tld/result.py -> build/lib/tld copying src/tld/helpers.py -> build/lib/tld copying src/tld/base.py -> build/lib/tld creating build/lib/tld/tests copying src/tld/tests/__init__.py -> build/lib/tld/tests copying src/tld/tests/test_commands.py -> build/lib/tld/tests copying src/tld/tests/test_registry.py -> build/lib/tld/tests copying src/tld/tests/test_core.py -> build/lib/tld/tests copying src/tld/tests/base.py -> build/lib/tld/tests running egg_info creating src/tld.egg-info writing src/tld.egg-info/PKG-INFO writing dependency_links to src/tld.egg-info/dependency_links.txt writing entry points to src/tld.egg-info/entry_points.txt writing top-level names to src/tld.egg-info/top_level.txt writing manifest file 'src/tld.egg-info/SOURCES.txt' reading manifest file 'src/tld.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '*' under directory 'src_py27/tld/res' warning: no files found matching '*' under directory 'src_py35/tld/res' warning: no directories found matching 'src_py27/tld/tests/res' warning: no directories found matching 'src_py35/tld/tests/res' adding license file 'LICENSE_LGPL_2.1.txt' writing manifest file 'src/tld.egg-info/SOURCES.txt' /usr/lib/python3.12/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'tld.res' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'tld.res' 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 'tld.res' 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 'tld.res' to be distributed and are already explicitly excluding 'tld.res' 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.12/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'tld.tests.res' is absent from the `packages` configuration. !! ******************************************************************************** ############################ # Package would be ignored # ############################ Python recognizes 'tld.tests.res' 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 'tld.tests.res' 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 'tld.tests.res' to be distributed and are already explicitly excluding 'tld.tests.res' 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/tld/py.typed -> build/lib/tld creating build/lib/tld/res copying src/tld/res/effective_tld_names.dat.txt -> build/lib/tld/res copying src/tld/res/effective_tld_names_public_only.dat.txt -> build/lib/tld/res creating build/lib/tld/tests/res copying src/tld/tests/res/effective_tld_names_custom.dat.txt -> build/lib/tld/tests/res >>> py3-tld: Entering fakeroot... /usr/lib/python3.12/site-packages/setuptools/dist.py:476: SetuptoolsDeprecationWarning: Invalid dash-separated options !! ******************************************************************************** Usage of dash-separated 'license-file' will not be supported in future versions. Please use the underscore name 'license_file' instead. By 2024-Sep-26, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! opt = self.warn_dash_deprecation(opt, section) 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-tld/pkg creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12 creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/__init__.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/registry.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/exceptions.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/defaults.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/conf.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/trie.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/utils.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/result.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests copying build/lib/tld/tests/__init__.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests copying build/lib/tld/tests/test_commands.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests copying build/lib/tld/tests/test_registry.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/res copying build/lib/tld/tests/res/effective_tld_names_custom.dat.txt -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/res copying build/lib/tld/tests/test_core.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests copying build/lib/tld/tests/base.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests creating /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/res copying build/lib/tld/res/effective_tld_names_public_only.dat.txt -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/res copying build/lib/tld/res/effective_tld_names.dat.txt -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/res copying build/lib/tld/py.typed -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/helpers.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld copying build/lib/tld/base.py -> /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/__init__.py to __init__.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/registry.py to registry.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/exceptions.py to exceptions.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/defaults.py to defaults.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/conf.py to conf.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/trie.py to trie.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/utils.py to utils.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/result.py to result.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/__init__.py to __init__.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/test_commands.py to test_commands.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/test_registry.py to test_registry.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/test_core.py to test_core.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/base.py to base.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/helpers.py to helpers.cpython-312.pyc byte-compiling /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/base.py to base.cpython-312.pyc running install_egg_info running egg_info writing src/tld.egg-info/PKG-INFO writing dependency_links to src/tld.egg-info/dependency_links.txt writing entry points to src/tld.egg-info/entry_points.txt writing top-level names to src/tld.egg-info/top_level.txt reading manifest file 'src/tld.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '*' under directory 'src_py27/tld/res' warning: no files found matching '*' under directory 'src_py35/tld/res' warning: no directories found matching 'src_py27/tld/tests/res' warning: no directories found matching 'src_py35/tld/tests/res' adding license file 'LICENSE_LGPL_2.1.txt' writing manifest file 'src/tld.egg-info/SOURCES.txt' Copying src/tld.egg-info to /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld-0.13-py3.12.egg-info running install_scripts Installing update-tld-names script to /home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/bin >>> py3-tld-pyc*: Running split function pyc... '/home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/__pycache__' -> '/home/buildozer/aports/community/py3-tld/pkg/py3-tld-pyc/usr/lib/python3.12/site-packages/tld/__pycache__' '/home/buildozer/aports/community/py3-tld/pkg/py3-tld/usr/lib/python3.12/site-packages/tld/tests/__pycache__' -> '/home/buildozer/aports/community/py3-tld/pkg/py3-tld-pyc/usr/lib/python3.12/site-packages/tld/tests/__pycache__' >>> py3-tld-pyc*: Preparing subpackage py3-tld-pyc... >>> py3-tld-pyc*: Running postcheck for py3-tld-pyc >>> py3-tld*: Running postcheck for py3-tld >>> py3-tld*: Preparing package py3-tld... >>> py3-tld-pyc*: Tracing dependencies... python3 python3~3.12 >>> py3-tld-pyc*: Package size: 140.0 KB >>> py3-tld-pyc*: Compressing data... >>> py3-tld-pyc*: Create checksum... >>> py3-tld-pyc*: Create py3-tld-pyc-0.13-r2.apk >>> py3-tld*: Tracing dependencies... python3 python3~3.12 >>> py3-tld*: Package size: 872.0 KB >>> py3-tld*: Compressing data... >>> py3-tld*: Create checksum... >>> py3-tld*: Create py3-tld-0.13-r2.apk >>> py3-tld: Build complete at Sun, 14 Apr 2024 01:41:26 +0000 elapsed time 0h 0m 2s >>> py3-tld: Cleaning up srcdir >>> py3-tld: Cleaning up pkgdir >>> py3-tld: Uninstalling dependencies... (1/19) Purging .makedepends-py3-tld (20240414.014125) (2/19) Purging py3-setuptools-pyc (69.2.0-r2) (3/19) Purging py3-setuptools (69.2.0-r2) (4/19) Purging py3-packaging-pyc (24.0-r1) (5/19) Purging py3-packaging (24.0-r1) (6/19) Purging py3-parsing-pyc (3.1.2-r1) (7/19) Purging py3-parsing (3.1.2-r1) (8/19) Purging python3-pyc (3.12.3-r0) (9/19) Purging python3-pycache-pyc0 (3.12.3-r0) (10/19) Purging pyc (3.12.3-r0) (11/19) Purging python3 (3.12.3-r0) (12/19) Purging gdbm (1.23-r1) (13/19) Purging libbz2 (1.0.8-r6) (14/19) Purging libffi (3.4.6-r0) (15/19) Purging libpanelw (6.4_p20240330-r0) (16/19) Purging mpdecimal (4.0.0-r0) (17/19) Purging readline (8.2.10-r0) (18/19) Purging sqlite-libs (3.45.2-r0) (19/19) Purging xz-libs (5.6.1-r3) Executing busybox-1.36.1-r25.trigger OK: 380 MiB in 105 packages >>> py3-tld: Updating the community/aarch64 repository index... >>> py3-tld: Signing the index...