>>> py3-astor: Building community/py3-astor 0.8.1-r5 (using abuild 3.14.1-r1) started Thu, 31 Oct 2024 20:38:53 +0000
>>> py3-astor: Validating /home/buildozer/aports/community/py3-astor/APKBUILD...
>>> py3-astor: Analyzing dependencies...
>>> py3-astor: Installing for build: build-base python3 py3-setuptools
(1/18) Installing libbz2 (1.0.8-r6)
(2/18) Installing libffi (3.4.6-r0)
(3/18) Installing gdbm (1.24-r0)
(4/18) Installing xz-libs (5.6.3-r0)
(5/18) Installing mpdecimal (4.0.0-r0)
(6/18) Installing libpanelw (6.5_p20241006-r2)
(7/18) Installing sqlite-libs (3.47.0-r0)
(8/18) Installing python3 (3.12.7-r1)
(9/18) Installing python3-pycache-pyc0 (3.12.7-r1)
(10/18) Installing pyc (3.12.7-r1)
(11/18) Installing python3-pyc (3.12.7-r1)
(12/18) Installing py3-parsing (3.1.4-r0)
(13/18) Installing py3-parsing-pyc (3.1.4-r0)
(14/18) Installing py3-packaging (24.1-r0)
(15/18) Installing py3-packaging-pyc (24.1-r0)
(16/18) Installing py3-setuptools (70.3.0-r0)
(17/18) Installing py3-setuptools-pyc (70.3.0-r0)
(18/18) Installing .makedepends-py3-astor (20241031.203904)
Executing busybox-1.37.0-r3.trigger
OK: 310 MiB in 119 packages
>>> py3-astor: Cleaning up srcdir
>>> py3-astor: Cleaning up pkgdir
>>> py3-astor: Cleaning up tmpdir
>>> py3-astor: Fetching https://distfiles.alpinelinux.org/distfiles/v3.21/astor-0.8.1.tar.gz
Connecting to distfiles.alpinelinux.org (172.105.82.32:443)
saving to '/var/cache/distfiles/v3.21/astor-0.8.1.tar.gz.part'
astor-0.8.1.tar.gz.p 100% |********************************| 41340  0:00:00 ETA
'/var/cache/distfiles/v3.21/astor-0.8.1.tar.gz.part' saved
>>> py3-astor: Fetching https://distfiles.alpinelinux.org/distfiles/v3.21/astor-0.8.1.tar.gz
>>> py3-astor: Checking sha512sums...
astor-0.8.1.tar.gz: OK
fix-tests.patch: OK
>>> py3-astor: Unpacking /var/cache/distfiles/v3.21/astor-0.8.1.tar.gz...
>>> py3-astor: fix-tests.patch
patching file tests/test_code_gen.py
running build
running build_py
creating build
creating build/lib
creating build/lib/astor
copying astor/__init__.py -> build/lib/astor
copying astor/source_repr.py -> build/lib/astor
copying astor/string_repr.py -> build/lib/astor
copying astor/code_gen.py -> build/lib/astor
copying astor/rtrip.py -> build/lib/astor
copying astor/codegen.py -> build/lib/astor
copying astor/file_util.py -> build/lib/astor
copying astor/node_util.py -> build/lib/astor
copying astor/tree_walk.py -> build/lib/astor
copying astor/op_util.py -> build/lib/astor
running egg_info
creating astor.egg-info
writing astor.egg-info/PKG-INFO
writing dependency_links to astor.egg-info/dependency_links.txt
writing top-level names to astor.egg-info/top_level.txt
writing manifest file 'astor.egg-info/SOURCES.txt'
reading manifest file 'astor.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGES'
adding license file 'LICENSE'
adding license file 'AUTHORS'
writing manifest file 'astor.egg-info/SOURCES.txt'
copying astor/VERSION -> build/lib/astor
test_annassign (tests.test_code_gen.CodegenTestCase.test_annassign) ... ok
test_arguments (tests.test_code_gen.CodegenTestCase.test_arguments) ... ok
test_assignment_expr (tests.test_code_gen.CodegenTestCase.test_assignment_expr) ... ok
test_async_comprehension (tests.test_code_gen.CodegenTestCase.test_async_comprehension) ... ok
test_async_def_with_for (tests.test_code_gen.CodegenTestCase.test_async_def_with_for) ... ok
test_attribute (tests.test_code_gen.CodegenTestCase.test_attribute) ... ok
test_class_definition_with_starbases_and_kwargs (tests.test_code_gen.CodegenTestCase.test_class_definition_with_starbases_and_kwargs) ... ok
test_compile_types (tests.test_code_gen.CodegenTestCase.test_compile_types) ... ok
test_complex (tests.test_code_gen.CodegenTestCase.test_complex) ... /home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:31: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead
  return astorexpr(ast.Num(n=x))
/usr/lib/python3.12/ast.py:587: DeprecationWarning: Attribute n is deprecated and will be removed in Python 3.14; use value instead
  return Constant(*args, **kwargs)
ok
test_comprehension (tests.test_code_gen.CodegenTestCase.test_comprehension) ... ok
test_constant_nodes (tests.test_code_gen.CodegenTestCase.test_constant_nodes) ... ok
test_del_statement (tests.test_code_gen.CodegenTestCase.test_del_statement) ... ok
test_deprecated_constant_nodes (tests.test_code_gen.CodegenTestCase.test_deprecated_constant_nodes) ... /home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:532: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Num(3)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:536: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Num(-93)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:540: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Num(837.3888)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:544: DeprecationWarning: ast.Num is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Num(-0.9877)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:547: DeprecationWarning: ast.Ellipsis is deprecated and will be removed in Python 3.14; use ast.Constant instead
  self.assertAstEqualsSource(ast.Ellipsis(), "...")
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:551: DeprecationWarning: ast.Bytes is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Bytes(b"Bytes")),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:555: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.Str("String")),
ok
test_deprecated_constants_as_name (tests.test_code_gen.CodegenTestCase.test_deprecated_constants_as_name) ... skipped 'ast.Name used for True, False, None until Python 3.4'
test_deprecated_name_constants (tests.test_code_gen.CodegenTestCase.test_deprecated_name_constants) ... /home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:519: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.NameConstant(value=True)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:523: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.NameConstant(value=False)),
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/tests/test_code_gen.py:527: DeprecationWarning: ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead
  ast.Assign(targets=[ast.Name(id='spam')], value=ast.NameConstant(value=None)),
ok
test_dictionary_literals (tests.test_code_gen.CodegenTestCase.test_dictionary_literals) ... ok
test_docstring_class (tests.test_code_gen.CodegenTestCase.test_docstring_class) ... ok
test_docstring_function (tests.test_code_gen.CodegenTestCase.test_docstring_function) ... ok
test_docstring_method (tests.test_code_gen.CodegenTestCase.test_docstring_method) ... ok
test_docstring_module (tests.test_code_gen.CodegenTestCase.test_docstring_module) ... ok
test_double_await (tests.test_code_gen.CodegenTestCase.test_double_await) ... ok
test_elif (tests.test_code_gen.CodegenTestCase.test_elif) ... ok
test_empty_iterable_literals (tests.test_code_gen.CodegenTestCase.test_empty_iterable_literals) ... ok
test_fstring_debugging (tests.test_code_gen.CodegenTestCase.test_fstring_debugging) ... /home/buildozer/aports/community/py3-astor/src/astor-0.8.1/astor/code_gen.py:599: DeprecationWarning: ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead
  if isinstance(value, ast.Str):
/home/buildozer/aports/community/py3-astor/src/astor-0.8.1/astor/code_gen.py:601: DeprecationWarning: Attribute s is deprecated and will be removed in Python 3.14; use value instead
  self.write(value.s.replace('{', '{{').replace('}', '}}'))
ok
test_fstring_escaped_braces (tests.test_code_gen.CodegenTestCase.test_fstring_escaped_braces) ... ok
test_fstring_trailing_newline (tests.test_code_gen.CodegenTestCase.test_fstring_trailing_newline) ... ok
test_fstrings (tests.test_code_gen.CodegenTestCase.test_fstrings) ... ok
test_huge_int (tests.test_code_gen.CodegenTestCase.test_huge_int) ... ok
test_imports (tests.test_code_gen.CodegenTestCase.test_imports) ... ok
test_inf (tests.test_code_gen.CodegenTestCase.test_inf) ... ok
test_matrix_multiplication (tests.test_code_gen.CodegenTestCase.test_matrix_multiplication) ... ok
test_multiple_call_unpackings (tests.test_code_gen.CodegenTestCase.test_multiple_call_unpackings) ... ok
test_nan (tests.test_code_gen.CodegenTestCase.test_nan) ... ok
test_non_string_leakage (tests.test_code_gen.CodegenTestCase.test_non_string_leakage) ... ok
test_output_formatting (tests.test_code_gen.CodegenTestCase.test_output_formatting) ... ok
test_pass_arguments_node (tests.test_code_gen.CodegenTestCase.test_pass_arguments_node) ... ok
test_positional_only_arguments (tests.test_code_gen.CodegenTestCase.test_positional_only_arguments) ... ok
test_pow (tests.test_code_gen.CodegenTestCase.test_pow) ... ok
test_right_hand_side_dictionary_unpacking (tests.test_code_gen.CodegenTestCase.test_right_hand_side_dictionary_unpacking) ... ok
test_slicing (tests.test_code_gen.CodegenTestCase.test_slicing) ... ok
test_try_expect (tests.test_code_gen.CodegenTestCase.test_try_expect) ... ok
test_tuple_corner_cases (tests.test_code_gen.CodegenTestCase.test_tuple_corner_cases) ... ok
test_unary (tests.test_code_gen.CodegenTestCase.test_unary) ... ok
test_unicode_literals (tests.test_code_gen.CodegenTestCase.test_unicode_literals) ... ok
test_with (tests.test_code_gen.CodegenTestCase.test_with) ... ok
test_yield (tests.test_code_gen.CodegenTestCase.test_yield) ... ok
test_fast_compare (tests.test_misc.FastCompareTestCase.test_fast_compare) ... ok
test_get_mat_mult (tests.test_misc.GetSymbolTestCase.test_get_mat_mult) ... ok
test_aliases (tests.test_misc.PublicAPITestCase.test_aliases) ... ok
test_codegen_as_submodule (tests.test_misc.PublicAPITestCase.test_codegen_as_submodule) ... ok
test_codegen_from_root (tests.test_misc.PublicAPITestCase.test_codegen_from_root) ... ok
test_to_source_invalid_customize_generator (tests.test_misc.PublicAPITestCase.test_to_source_invalid_customize_generator) ... ok
test_split_lines_unicode_support (tests.test_misc.SourceReprTestCase.test_split_lines_unicode_support) ... skipped 'only applies to Python 2'
test_auto_generated_attributes (tests.test_misc.TreeWalkTestCase.test_auto_generated_attributes) ... ok

----------------------------------------------------------------------
Ran 54 tests in 0.039s

OK (skipped=2)
>>> py3-astor: 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-astor/pkg
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages
creating /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/__init__.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/source_repr.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/string_repr.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/code_gen.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/VERSION -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/rtrip.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/codegen.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/file_util.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/node_util.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/tree_walk.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
copying build/lib/astor/op_util.py -> /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/__init__.py to __init__.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/source_repr.py to source_repr.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/string_repr.py to string_repr.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/code_gen.py to code_gen.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/rtrip.py to rtrip.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/codegen.py to codegen.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/file_util.py to file_util.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/node_util.py to node_util.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/tree_walk.py to tree_walk.cpython-312.pyc
byte-compiling /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor/op_util.py to op_util.cpython-312.pyc
running install_egg_info
running egg_info
writing astor.egg-info/PKG-INFO
writing dependency_links to astor.egg-info/dependency_links.txt
writing top-level names to astor.egg-info/top_level.txt
reading manifest file 'astor.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'CHANGES'
adding license file 'LICENSE'
adding license file 'AUTHORS'
writing manifest file 'astor.egg-info/SOURCES.txt'
Copying astor.egg-info to /home/buildozer/aports/community/py3-astor/pkg/py3-astor/usr/lib/python3.12/site-packages/astor-0.8.1-py3.12.egg-info
running install_scripts
>>> py3-astor-pyc*: Running split function pyc...
'usr/lib/python3.12/site-packages/astor/__pycache__' -> '/home/buildozer/aports/community/py3-astor/pkg/py3-astor-pyc/usr/lib/python3.12/site-packages/astor/__pycache__'
>>> py3-astor-pyc*: Preparing subpackage py3-astor-pyc...
>>> py3-astor-pyc*: Running postcheck for py3-astor-pyc
>>> py3-astor*: Running postcheck for py3-astor
>>> py3-astor*: Preparing package py3-astor...
>>> py3-astor-pyc*: Tracing dependencies...
	python3
	python3~3.12
>>> py3-astor-pyc*: Package size: 99.4 KB
>>> py3-astor-pyc*: Compressing data...
>>> py3-astor-pyc*: Create checksum...
>>> py3-astor-pyc*: Create py3-astor-pyc-0.8.1-r5.apk
>>> py3-astor*: Tracing dependencies...
	python3
	python3~3.12
>>> py3-astor*: Package size: 73.7 KB
>>> py3-astor*: Compressing data...
>>> py3-astor*: Create checksum...
>>> py3-astor*: Create py3-astor-0.8.1-r5.apk
>>> py3-astor: Build complete at Thu, 31 Oct 2024 20:39:05 +0000 elapsed time 0h 0m 12s
>>> py3-astor: Cleaning up srcdir
>>> py3-astor: Cleaning up pkgdir
>>> py3-astor: Uninstalling dependencies...
(1/18) Purging .makedepends-py3-astor (20241031.203904)
(2/18) Purging py3-setuptools-pyc (70.3.0-r0)
(3/18) Purging py3-setuptools (70.3.0-r0)
(4/18) Purging py3-packaging-pyc (24.1-r0)
(5/18) Purging py3-packaging (24.1-r0)
(6/18) Purging py3-parsing-pyc (3.1.4-r0)
(7/18) Purging py3-parsing (3.1.4-r0)
(8/18) Purging python3-pyc (3.12.7-r1)
(9/18) Purging python3-pycache-pyc0 (3.12.7-r1)
(10/18) Purging pyc (3.12.7-r1)
(11/18) Purging python3 (3.12.7-r1)
(12/18) Purging gdbm (1.24-r0)
(13/18) Purging libbz2 (1.0.8-r6)
(14/18) Purging libffi (3.4.6-r0)
(15/18) Purging libpanelw (6.5_p20241006-r2)
(16/18) Purging mpdecimal (4.0.0-r0)
(17/18) Purging sqlite-libs (3.47.0-r0)
(18/18) Purging xz-libs (5.6.3-r0)
Executing busybox-1.37.0-r3.trigger
OK: 271 MiB in 101 packages
>>> py3-astor: Updating the community/armv7 repository index...
>>> py3-astor: Signing the index...