>>> py3-pygaljs: Building community/py3-pygaljs 1.0.2-r4 (using abuild 3.13.0-r3) started Wed, 24 Apr 2024 23:18:42 +0000
>>> py3-pygaljs: Checking sanity of /home/buildozer/aports/community/py3-pygaljs/APKBUILD...
>>> WARNING: py3-pygaljs: No maintainer
>>> py3-pygaljs: Analyzing dependencies...
>>> py3-pygaljs: Installing for build: build-base python3 py3-setuptools py3-pytest
(1/27) Installing libbz2 (1.0.8-r6)
(2/27) Installing libffi (3.4.6-r0)
(3/27) Installing gdbm (1.23-r1)
(4/27) Installing xz-libs (5.6.1-r3)
(5/27) Installing mpdecimal (4.0.0-r0)
(6/27) Installing libpanelw (6.4_p20240330-r0)
(7/27) Installing readline (8.2.10-r0)
(8/27) Installing sqlite-libs (3.45.3-r0)
(9/27) Installing python3 (3.12.3-r1)
(10/27) Installing python3-pycache-pyc0 (3.12.3-r1)
(11/27) Installing pyc (3.12.3-r1)
(12/27) Installing python3-pyc (3.12.3-r1)
(13/27) Installing py3-parsing (3.1.2-r1)
(14/27) Installing py3-parsing-pyc (3.1.2-r1)
(15/27) Installing py3-packaging (24.0-r1)
(16/27) Installing py3-packaging-pyc (24.0-r1)
(17/27) Installing py3-setuptools (69.5.1-r0)
(18/27) Installing py3-setuptools-pyc (69.5.1-r0)
(19/27) Installing py3-iniconfig (2.0.0-r1)
(20/27) Installing py3-iniconfig-pyc (2.0.0-r1)
(21/27) Installing py3-pluggy (1.4.0-r1)
(22/27) Installing py3-pluggy-pyc (1.4.0-r1)
(23/27) Installing py3-py (1.11.0-r3)
(24/27) Installing py3-py-pyc (1.11.0-r3)
(25/27) Installing py3-pytest (8.1.1-r1)
(26/27) Installing py3-pytest-pyc (8.1.1-r1)
(27/27) Installing .makedepends-py3-pygaljs (20240424.231846)
Executing busybox-1.36.1-r25.trigger
OK: 471 MiB in 129 packages
>>> py3-pygaljs: Cleaning up srcdir
>>> py3-pygaljs: Cleaning up pkgdir
>>> py3-pygaljs: Cleaning up tmpdir
>>> py3-pygaljs: Fetching https://distfiles.alpinelinux.org/distfiles/v3.20/pygaljs-1.0.2.tar.gz
Connecting to distfiles.alpinelinux.org (172.105.82.32:443)
wget: server returned error: HTTP/1.1 404 Not Found
>>> py3-pygaljs: Fetching https://pypi.io/packages/source/p/pygaljs/pygaljs-1.0.2.tar.gz
Connecting to pypi.io (151.101.192.223:443)
Connecting to pypi.org (151.101.128.223:443)
Connecting to files.pythonhosted.org (146.75.72.223:443)
Connecting to files.pythonhosted.org (146.75.72.223:443)
saving to '/var/cache/distfiles/v3.20/pygaljs-1.0.2.tar.gz.part'
pygaljs-1.0.2.tar.gz  54% |*****************               | 49152  0:00:00 ETA
pygaljs-1.0.2.tar.gz 100% |********************************| 89711  0:00:00 ETA
'/var/cache/distfiles/v3.20/pygaljs-1.0.2.tar.gz.part' saved
>>> py3-pygaljs: Fetching https://distfiles.alpinelinux.org/distfiles/v3.20/pygaljs-1.0.2.tar.gz
>>> py3-pygaljs: Checking sha512sums...
pygaljs-1.0.2.tar.gz: OK
>>> py3-pygaljs: Unpacking /var/cache/distfiles/v3.20/pygaljs-1.0.2.tar.gz...
running build
running build_py
creating build
creating build/lib
creating build/lib/pygaljs
copying src/pygaljs/__init__.py -> build/lib/pygaljs
running egg_info
writing src/pygaljs.egg-info/PKG-INFO
writing dependency_links to src/pygaljs.egg-info/dependency_links.txt
writing top-level names to src/pygaljs.egg-info/top_level.txt
reading manifest file 'src/pygaljs.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'docs'
warning: no directories found matching 'examples'
warning: no directories found matching 'ci'
warning: no files found matching '.coveragerc'
warning: no files found matching '.cookiecutterrc'
warning: no files found matching '.isort.cfg'
warning: no files found matching '.pylintrc'
warning: no files found matching 'AUTHORS.rst'
warning: no files found matching 'CONTRIBUTING.rst'
warning: no files found matching '.travis.yml'
warning: no files found matching 'appveyor.yml'
warning: no previously-included files matching '*.py[cod]' found anywhere in distribution
warning: no previously-included files matching '__pycache__' found anywhere in distribution
warning: no previously-included files matching '*.so' found anywhere in distribution
warning: no previously-included files matching '*.dylib' found anywhere in distribution
adding license file 'LICENSE'
writing manifest file 'src/pygaljs.egg-info/SOURCES.txt'
/usr/lib/python3.12/site-packages/setuptools/command/build_py.py:207: _Warning: Package 'pygaljs.static' is absent from the `packages` configuration.
!!

        ********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'pygaljs.static' 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 'pygaljs.static' 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 'pygaljs.static' to be distributed and are
        already explicitly excluding 'pygaljs.static' 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 'pygaljs.static.coffee' is absent from the `packages` configuration.
!!

        ********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'pygaljs.static.coffee' 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 'pygaljs.static.coffee' 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 'pygaljs.static.coffee' to be distributed and are
        already explicitly excluding 'pygaljs.static.coffee' 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 'pygaljs.static.javascripts' is absent from the `packages` configuration.
!!

        ********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'pygaljs.static.javascripts' 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 'pygaljs.static.javascripts' 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 'pygaljs.static.javascripts' to be distributed and are
        already explicitly excluding 'pygaljs.static.javascripts' 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 'pygaljs.static.latest' is absent from the `packages` configuration.
!!

        ********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'pygaljs.static.latest' 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 'pygaljs.static.latest' 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 'pygaljs.static.latest' to be distributed and are
        already explicitly excluding 'pygaljs.static.latest' 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)
creating build/lib/pygaljs/static
copying src/pygaljs/static/.git -> build/lib/pygaljs/static
copying src/pygaljs/static/Gruntfile.coffee -> build/lib/pygaljs/static
copying src/pygaljs/static/README.md -> build/lib/pygaljs/static
copying src/pygaljs/static/bower.json -> build/lib/pygaljs/static
copying src/pygaljs/static/package.json -> build/lib/pygaljs/static
creating build/lib/pygaljs/static/2.0.x
copying src/pygaljs/static/2.0.x/pygal-tooltips.js -> build/lib/pygaljs/static/2.0.x
copying src/pygaljs/static/2.0.x/pygal-tooltips.min.js -> build/lib/pygaljs/static/2.0.x
creating build/lib/pygaljs/static/coffee
copying src/pygaljs/static/coffee/pygal-tooltips.coffee -> build/lib/pygaljs/static/coffee
creating build/lib/pygaljs/static/javascripts
copying src/pygaljs/static/javascripts/pygal-tooltips.js -> build/lib/pygaljs/static/javascripts
copying src/pygaljs/static/javascripts/svg.jquery.js -> build/lib/pygaljs/static/javascripts
creating build/lib/pygaljs/static/latest
copying src/pygaljs/static/latest/pygal-tooltips.js -> build/lib/pygaljs/static/latest
copying src/pygaljs/static/latest/pygal-tooltips.min.js -> build/lib/pygaljs/static/latest
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.1.1, pluggy-1.4.0
rootdir: /home/buildozer/aports/community/py3-pygaljs/src/pygaljs-1.0.2
configfile: setup.cfg
collected 1 item

tests/test_pygaljs.py .                                                  [100%]

============================== 1 passed in 0.07s ===============================
>>> py3-pygaljs: Entering fakeroot...
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-pygaljs/pkg
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/coffee
copying build/lib/pygaljs/static/coffee/pygal-tooltips.coffee -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/coffee
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/2.0.x
copying build/lib/pygaljs/static/2.0.x/pygal-tooltips.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/2.0.x
copying build/lib/pygaljs/static/2.0.x/pygal-tooltips.min.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/2.0.x
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/latest
copying build/lib/pygaljs/static/latest/pygal-tooltips.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/latest
copying build/lib/pygaljs/static/latest/pygal-tooltips.min.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/latest
copying build/lib/pygaljs/static/package.json -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
copying build/lib/pygaljs/static/README.md -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
creating /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/javascripts
copying build/lib/pygaljs/static/javascripts/svg.jquery.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/javascripts
copying build/lib/pygaljs/static/javascripts/pygal-tooltips.js -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static/javascripts
copying build/lib/pygaljs/static/bower.json -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
copying build/lib/pygaljs/static/.git -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
copying build/lib/pygaljs/static/Gruntfile.coffee -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/static
copying build/lib/pygaljs/__init__.py -> /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs
byte-compiling /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/__init__.py to __init__.cpython-312.pyc
running install_egg_info
running egg_info
writing src/pygaljs.egg-info/PKG-INFO
writing dependency_links to src/pygaljs.egg-info/dependency_links.txt
writing top-level names to src/pygaljs.egg-info/top_level.txt
reading manifest file 'src/pygaljs.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'docs'
warning: no directories found matching 'examples'
warning: no directories found matching 'ci'
warning: no files found matching '.coveragerc'
warning: no files found matching '.cookiecutterrc'
warning: no files found matching '.isort.cfg'
warning: no files found matching '.pylintrc'
warning: no files found matching 'AUTHORS.rst'
warning: no files found matching 'CONTRIBUTING.rst'
warning: no files found matching '.travis.yml'
warning: no files found matching 'appveyor.yml'
warning: no previously-included files matching '__pycache__' found anywhere in distribution
warning: no previously-included files matching '*.so' found anywhere in distribution
warning: no previously-included files matching '*.dylib' found anywhere in distribution
adding license file 'LICENSE'
writing manifest file 'src/pygaljs.egg-info/SOURCES.txt'
Copying src/pygaljs.egg-info to /home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs-1.0.2-py3.12.egg-info
running install_scripts
>>> py3-pygaljs-pyc*: Running split function pyc...
'/home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs/usr/lib/python3.12/site-packages/pygaljs/__pycache__' -> '/home/buildozer/aports/community/py3-pygaljs/pkg/py3-pygaljs-pyc/usr/lib/python3.12/site-packages/pygaljs/__pycache__'
>>> py3-pygaljs-pyc*: Preparing subpackage py3-pygaljs-pyc...
>>> py3-pygaljs-pyc*: Running postcheck for py3-pygaljs-pyc
>>> py3-pygaljs*: Running postcheck for py3-pygaljs
>>> py3-pygaljs*: Preparing package py3-pygaljs...
>>> py3-pygaljs*: Stripping binaries
>>> WARNING: py3-pygaljs*: No arch specific binaries found so arch should probably be set to "noarch"
>>> py3-pygaljs-pyc*: Scanning shared objects
>>> py3-pygaljs*: Scanning shared objects
>>> py3-pygaljs-pyc*: Tracing dependencies...
	python3
	python3~3.12
>>> py3-pygaljs-pyc*: Package size: 32.0 KB
>>> py3-pygaljs-pyc*: Compressing data...
>>> py3-pygaljs-pyc*: Create checksum...
>>> py3-pygaljs-pyc*: Create py3-pygaljs-pyc-1.0.2-r4.apk
>>> py3-pygaljs*: Tracing dependencies...
	python3
	python3~3.12
>>> py3-pygaljs*: Package size: 384.0 KB
>>> py3-pygaljs*: Compressing data...
>>> py3-pygaljs*: Create checksum...
>>> py3-pygaljs*: Create py3-pygaljs-1.0.2-r4.apk
>>> py3-pygaljs: Build complete at Wed, 24 Apr 2024 23:18:53 +0000 elapsed time 0h 0m 11s
>>> py3-pygaljs: Cleaning up srcdir
>>> py3-pygaljs: Cleaning up pkgdir
>>> py3-pygaljs: Uninstalling dependencies...
(1/27) Purging .makedepends-py3-pygaljs (20240424.231846)
(2/27) Purging py3-setuptools-pyc (69.5.1-r0)
(3/27) Purging py3-setuptools (69.5.1-r0)
(4/27) Purging py3-pytest-pyc (8.1.1-r1)
(5/27) Purging py3-pytest (8.1.1-r1)
(6/27) Purging py3-iniconfig-pyc (2.0.0-r1)
(7/27) Purging py3-iniconfig (2.0.0-r1)
(8/27) Purging py3-packaging-pyc (24.0-r1)
(9/27) Purging py3-packaging (24.0-r1)
(10/27) Purging py3-parsing-pyc (3.1.2-r1)
(11/27) Purging py3-parsing (3.1.2-r1)
(12/27) Purging py3-pluggy-pyc (1.4.0-r1)
(13/27) Purging py3-pluggy (1.4.0-r1)
(14/27) Purging py3-py-pyc (1.11.0-r3)
(15/27) Purging py3-py (1.11.0-r3)
(16/27) Purging python3-pyc (3.12.3-r1)
(17/27) Purging python3-pycache-pyc0 (3.12.3-r1)
(18/27) Purging pyc (3.12.3-r1)
(19/27) Purging python3 (3.12.3-r1)
(20/27) Purging gdbm (1.23-r1)
(21/27) Purging libbz2 (1.0.8-r6)
(22/27) Purging libffi (3.4.6-r0)
(23/27) Purging libpanelw (6.4_p20240330-r0)
(24/27) Purging mpdecimal (4.0.0-r0)
(25/27) Purging readline (8.2.10-r0)
(26/27) Purging sqlite-libs (3.45.3-r0)
(27/27) Purging xz-libs (5.6.1-r3)
Executing busybox-1.36.1-r25.trigger
OK: 414 MiB in 102 packages
>>> py3-pygaljs: Updating the community/ppc64le repository index...
>>> py3-pygaljs: Signing the index...