>>> py3-yaml: Building main/py3-yaml 5.3.1-r1 (using abuild 3.6.0-r1) started Wed, 20 Jan 2021 03:10:44 +0000 >>> py3-yaml: Checking sanity of /home/buildozer/aports/main/py3-yaml/APKBUILD... >>> py3-yaml: Analyzing dependencies... >>> py3-yaml: Installing for build: build-base python3-dev yaml-dev cython (1/12) Installing libbz2 (1.0.8-r1) (2/12) Installing libffi (3.3-r2) (3/12) Installing gdbm (1.13-r1) (4/12) Installing xz-libs (5.2.5-r0) (5/12) Installing readline (8.0.4-r0) (6/12) Installing sqlite-libs (3.32.1-r0) (7/12) Installing python3 (3.8.5-r0) (8/12) Installing python3-dev (3.8.5-r0) (9/12) Installing yaml (0.2.4-r1) (10/12) Installing yaml-dev (0.2.4-r1) (11/12) Installing cython (0.29.19-r0) (12/12) Installing .makedepends-py3-yaml (20210120.031045) Executing busybox-1.31.1-r19.trigger OK: 404 MiB in 96 packages >>> py3-yaml: Cleaning up srcdir >>> py3-yaml: Cleaning up pkgdir >>> py3-yaml: Fetching https://distfiles.alpinelinux.org/distfiles/v3.12/PyYAML-5.3.1.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 100 164k 100 164k 0 0 686k 0 --:--:-- --:--:-- --:--:-- 683k >>> py3-yaml: Fetching https://distfiles.alpinelinux.org/distfiles/v3.12/PyYAML-5.3.1.tar.gz >>> py3-yaml: Checking sha512sums... PyYAML-5.3.1.tar.gz: OK CVE-2020-14343.patch: OK >>> py3-yaml: Unpacking /var/cache/distfiles/v3.12/PyYAML-5.3.1.tar.gz... >>> py3-yaml: CVE-2020-14343.patch patching file lib/yaml/constructor.py patching file lib3/yaml/constructor.py patching file tests/lib/test_recursive.py patching file tests/lib3/test_recursive.py running build running build_py creating build creating build/lib.linux-i686-3.8 creating build/lib.linux-i686-3.8/yaml copying lib3/yaml/events.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/constructor.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/loader.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/emitter.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/dumper.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/error.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/__init__.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/cyaml.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/reader.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/composer.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/parser.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/serializer.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/nodes.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/tokens.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/resolver.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/representer.py -> build/lib.linux-i686-3.8/yaml copying lib3/yaml/scanner.py -> build/lib.linux-i686-3.8/yaml running build_ext cythoning ext/_yaml.pyx to ext/_yaml.c building '_yaml' extension creating build/temp.linux-i686-3.8 creating build/temp.linux-i686-3.8/ext gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fno-semantic-interposition -fomit-frame-pointer -g -fno-semantic-interposition -fomit-frame-pointer -g -fno-semantic-interposition -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -I/usr/include/python3.8 -c ext/_yaml.c -o build/temp.linux-i686-3.8/ext/_yaml.o In file included from ext/_yaml.c:597: ext/_yaml.h:10: warning: "PyString_CheckExact" redefined 10 | #define PyString_CheckExact PyBytes_CheckExact | ext/_yaml.c:486: note: this is the location of the previous definition 486 | #define PyString_CheckExact PyUnicode_CheckExact | ext/_yaml.c: In function '__pyx_pf_5_yaml_get_version_string': ext/_yaml.c:1898:17: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers] 1898 | __pyx_v_value = yaml_get_version_string(); | ^ ext/_yaml.c: In function '__pyx_pf_5_yaml_7CParser___init__': ext/_yaml.c:3428:52: warning: passing argument 2 of 'yaml_parser_set_input' from incompatible pointer type [-Wincompatible-pointer-types] 3428 | yaml_parser_set_input((&__pyx_v_self->parser), __pyx_f_5_yaml_input_handler, ((void *)__pyx_v_self)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | int (*)(void *, char *, size_t, size_t *) {aka int (*)(void *, char *, unsigned int, unsigned int *)} In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:1370:30: note: expected 'int (*)(void *, unsigned char *, size_t, size_t *)' {aka 'int (*)(void *, unsigned char *, unsigned int, unsigned int *)'} but argument is of type 'int (*)(void *, char *, size_t, size_t *)' {aka 'int (*)(void *, char *, unsigned int, unsigned int *)'} 1370 | yaml_read_handler_t *handler, void *data); | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~ In file included from /usr/include/python3.8/Python.h:96, from ext/_yaml.c:4: /usr/include/python3.8/bytesobject.h:87:57: warning: pointer targets in passing argument 2 of 'yaml_parser_set_input_string' differ in signedness [-Wpointer-sign] 87 | #define PyBytes_AS_STRING(op) (assert(PyBytes_Check(op)), \ | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~ | | | char * 88 | (((PyBytesObject *)(op))->ob_sval)) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ext/_yaml.h:11:29: note: in expansion of macro 'PyBytes_AS_STRING' 11 | #define PyString_AS_STRING PyBytes_AS_STRING | ^~~~~~~~~~~~~~~~~ ext/_yaml.c:3669:59: note: in expansion of macro 'PyString_AS_STRING' 3669 | yaml_parser_set_input_string((&__pyx_v_self->parser), PyString_AS_STRING(__pyx_v_stream), PyString_GET_SIZE(__pyx_v_stream)); | ^~~~~~~~~~~~~~~~~~ In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:1344:30: note: expected 'const unsigned char *' but argument is of type 'char *' 1344 | const unsigned char *input, size_t size); | ~~~~~~~~~~~~~~~~~~~~~^~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__token_to_object': ext/_yaml.c:5515:71: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 5515 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.handle); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 417, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:5527:71: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 5527 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.tag_directive.prefix); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 418, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:6529:63: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 6529 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.alias.value); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 448, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:6613:64: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 6613 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.anchor.value); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 451, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:6697:61: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 6697 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.tag.handle); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 454, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:6709:61: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 6709 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_token->data.tag.suffix); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 455, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:6833:64: warning: pointer targets in passing argument 1 of 'PyUnicode_DecodeUTF8' differ in signedness [-Wpointer-sign] 6833 | __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_token->data.scalar.value, __pyx_v_token->data.scalar.length, ((char *)"strict")); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 460, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:462:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 462 | PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__event_to_object': ext/_yaml.c:8532:63: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 8532 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->handle); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 574, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:8544:63: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 8544 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_tag_directive->prefix); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 575, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:8787:63: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 8787 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.alias.anchor); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 586, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:8891:66: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 8891 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.scalar.anchor); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 591, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:8932:66: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 8932 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.scalar.tag); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 594, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:8953:64: warning: pointer targets in passing argument 1 of 'PyUnicode_DecodeUTF8' differ in signedness [-Wpointer-sign] 8953 | __pyx_t_4 = PyUnicode_DecodeUTF8(__pyx_v_event->data.scalar.value, __pyx_v_event->data.scalar.length, ((char *)"strict")); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 595, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:462:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 462 | PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:9294:74: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 9294 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.anchor); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 620, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:9335:74: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 9335 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.sequence_start.tag); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 623, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:9567:73: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 9567 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.anchor); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 637, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:9608:73: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 9608 | __pyx_t_4 = PyUnicode_FromString(__pyx_v_event->data.mapping_start.tag); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 640, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__compose_node': ext/_yaml.c:11305:75: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 11305 | __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.alias.anchor); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 734, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:11625:76: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 11625 | __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.anchor); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 750, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:11681:84: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 11681 | __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.anchor); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 753, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:11737:83: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 11737 | __pyx_t_6 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.anchor); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 756, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__compose_scalar_node': ext/_yaml.c:12398:74: warning: pointer targets in passing argument 1 of 'PyUnicode_DecodeUTF8' differ in signedness [-Wpointer-sign] 12398 | __pyx_t_2 = PyUnicode_DecodeUTF8(__pyx_v_self->parsed_event.data.scalar.value, __pyx_v_self->parsed_event.data.scalar.length, ((char *)"strict")); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 791, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:462:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 462 | PyAPI_FUNC(PyObject*) PyUnicode_DecodeUTF8( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c:12621:76: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 12621 | __pyx_t_2 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.scalar.tag); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 804, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__compose_sequence_node': ext/_yaml.c:13162:84: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 13162 | __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.sequence_start.tag); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 837, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_7CParser__compose_mapping_node': ext/_yaml.c:13790:83: warning: pointer targets in passing argument 1 of 'PyUnicode_FromString' differ in signedness [-Wpointer-sign] 13790 | __pyx_t_3 = PyUnicode_FromString(__pyx_v_self->parsed_event.data.mapping_start.tag); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 876, __pyx_L1_error) | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~ | | | yaml_char_t * {aka unsigned char *} In file included from /usr/include/python3.8/Python.h:97, from ext/_yaml.c:4: /usr/include/python3.8/unicodeobject.h:137:23: note: expected 'const char *' but argument is of type 'yaml_char_t *' {aka 'unsigned char *'} 137 | PyAPI_FUNC(PyObject*) PyUnicode_FromString( | ^~~~~~~~~~~~~~~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_input_handler': ext/_yaml.c:14614:87: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'unsigned int'} [-Wsign-compare] 14614 | __pyx_t_3 = (((__pyx_v_parser->stream_cache_len - __pyx_v_parser->stream_cache_pos) < __pyx_v_size) != 0); | ^ ext/_yaml.c: In function '__pyx_pf_5_yaml_8CEmitter___init__': ext/_yaml.c:15139:53: warning: passing argument 2 of 'yaml_emitter_set_output' from incompatible pointer type [-Wincompatible-pointer-types] 15139 | yaml_emitter_set_output((&__pyx_v_self->emitter), __pyx_f_5_yaml_output_handler, ((void *)__pyx_v_self)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | int (*)(void *, char *, size_t) {aka int (*)(void *, char *, unsigned int)} In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:1837:31: note: expected 'int (*)(void *, unsigned char *, size_t)' {aka 'int (*)(void *, unsigned char *, unsigned int)'} but argument is of type 'int (*)(void *, char *, size_t)' {aka 'int (*)(void *, char *, unsigned int)'} 1837 | yaml_write_handler_t *handler, void *data); | ~~~~~~~~~~~~~~~~~~~~~~^~~~~~~ ext/_yaml.c: In function '__pyx_f_5_yaml_8CEmitter__object_to_event': ext/_yaml.c:16497:44: warning: pointer targets in assignment from 'char *' to 'yaml_char_t *' {aka 'unsigned char *'} differ in signedness [-Wpointer-sign] 16497 | __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle); | ^ ext/_yaml.c:16612:44: warning: pointer targets in assignment from 'char *' to 'yaml_char_t *' {aka 'unsigned char *'} differ in signedness [-Wpointer-sign] 16612 | __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix); | ^ ext/_yaml.c:16949:62: warning: pointer targets in passing argument 2 of 'yaml_alias_event_initialize' differ in signedness [-Wpointer-sign] 16949 | __pyx_t_2 = ((yaml_alias_event_initialize(__pyx_v_event, __pyx_v_anchor) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:555:69: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 555 | yaml_alias_event_initialize(yaml_event_t *event, const yaml_char_t *anchor); | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:17664:63: warning: pointer targets in passing argument 2 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 17664 | __pyx_t_2 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:581:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 581 | const yaml_char_t *anchor, const yaml_char_t *tag, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:17664:79: warning: pointer targets in passing argument 3 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 17664 | __pyx_t_2 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:581:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 581 | const yaml_char_t *anchor, const yaml_char_t *tag, | ~~~~~~~~~~~~~~~~~~~^~~ ext/_yaml.c:17664:92: warning: pointer targets in passing argument 4 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 17664 | __pyx_t_2 = ((yaml_scalar_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:582:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 582 | const yaml_char_t *value, int length, | ~~~~~~~~~~~~~~~~~~~^~~~~ ext/_yaml.c:18098:71: warning: pointer targets in passing argument 2 of 'yaml_sequence_start_event_initialize' differ in signedness [-Wpointer-sign] 18098 | __pyx_t_3 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:604:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 604 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:18098:87: warning: pointer targets in passing argument 3 of 'yaml_sequence_start_event_initialize' differ in signedness [-Wpointer-sign] 18098 | __pyx_t_3 = ((yaml_sequence_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:604:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 604 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~ ext/_yaml.c:18532:70: warning: pointer targets in passing argument 2 of 'yaml_mapping_start_event_initialize' differ in signedness [-Wpointer-sign] 18532 | __pyx_t_2 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:636:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 636 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:18532:86: warning: pointer targets in passing argument 3 of 'yaml_mapping_start_event_initialize' differ in signedness [-Wpointer-sign] 18532 | __pyx_t_2 = ((yaml_mapping_start_event_initialize(__pyx_v_event, __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:636:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 636 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~ ext/_yaml.c: In function '__pyx_pf_5_yaml_8CEmitter_12serialize': ext/_yaml.c:20114:42: warning: pointer targets in assignment from 'char *' to 'yaml_char_t *' {aka 'unsigned char *'} differ in signedness [-Wpointer-sign] 20114 | __pyx_v_tag_directives_end->handle = PyString_AS_STRING(__pyx_v_handle); | ^ ext/_yaml.c:20229:42: warning: pointer targets in assignment from 'char *' to 'yaml_char_t *' {aka 'unsigned char *'} differ in signedness [-Wpointer-sign] 20229 | __pyx_v_tag_directives_end->prefix = PyString_AS_STRING(__pyx_v_prefix); | ^ ext/_yaml.c: In function '__pyx_f_5_yaml_8CEmitter__serialize_node': ext/_yaml.c:21092:65: warning: pointer targets in passing argument 2 of 'yaml_alias_event_initialize' differ in signedness [-Wpointer-sign] 21092 | __pyx_t_2 = ((yaml_alias_event_initialize((&__pyx_v_event), __pyx_v_anchor) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:555:69: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 555 | yaml_alias_event_initialize(yaml_event_t *event, const yaml_char_t *anchor); | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:21903:68: warning: pointer targets in passing argument 2 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 21903 | __pyx_t_2 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:581:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 581 | const yaml_char_t *anchor, const yaml_char_t *tag, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:21903:84: warning: pointer targets in passing argument 3 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 21903 | __pyx_t_2 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:581:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 581 | const yaml_char_t *anchor, const yaml_char_t *tag, | ~~~~~~~~~~~~~~~~~~~^~~ ext/_yaml.c:21903:97: warning: pointer targets in passing argument 4 of 'yaml_scalar_event_initialize' differ in signedness [-Wpointer-sign] 21903 | __pyx_t_2 = ((yaml_scalar_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_value, __pyx_v_length, __pyx_v_plain_implicit, __pyx_v_quoted_implicit, __pyx_v_scalar_style) == 0) != 0); | ^~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:582:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 582 | const yaml_char_t *value, int length, | ~~~~~~~~~~~~~~~~~~~^~~~~ ext/_yaml.c:22290:76: warning: pointer targets in passing argument 2 of 'yaml_sequence_start_event_initialize' differ in signedness [-Wpointer-sign] 22290 | __pyx_t_2 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:604:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 604 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:22290:92: warning: pointer targets in passing argument 3 of 'yaml_sequence_start_event_initialize' differ in signedness [-Wpointer-sign] 22290 | __pyx_t_2 = ((yaml_sequence_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_sequence_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:604:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 604 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~ ext/_yaml.c:22820:75: warning: pointer targets in passing argument 2 of 'yaml_mapping_start_event_initialize' differ in signedness [-Wpointer-sign] 22820 | __pyx_t_2 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0); | ^~~~~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:636:28: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 636 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~~~~ ext/_yaml.c:22820:91: warning: pointer targets in passing argument 3 of 'yaml_mapping_start_event_initialize' differ in signedness [-Wpointer-sign] 22820 | __pyx_t_2 = ((yaml_mapping_start_event_initialize((&__pyx_v_event), __pyx_v_anchor, __pyx_v_tag, __pyx_v_implicit, __pyx_v_mapping_style) == 0) != 0); | ^~~~~~~~~~~ | | | char * In file included from ext/_yaml.h:2, from ext/_yaml.c:597: /usr/include/yaml.h:636:55: note: expected 'const yaml_char_t *' {aka 'const unsigned char *'} but argument is of type 'char *' 636 | const yaml_char_t *anchor, const yaml_char_t *tag, int implicit, | ~~~~~~~~~~~~~~~~~~~^~~ gcc -shared -Wl,--as-needed -Wl,--as-needed -Wl,--as-needed -Os -fomit-frame-pointer -Os -fomit-frame-pointer build/temp.linux-i686-3.8/ext/_yaml.o -L/usr/lib -lyaml -o build/lib.linux-i686-3.8/_yaml.cpython-38-i386-linux-gnu.so /usr/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'python_requires' warnings.warn(msg) /usr/lib/python3.8/site-packages/Cython/Compiler/Main.py:369: FutureWarning: Cython directive 'language_level' not set, using 2 for now (Py2). This will change in a later release! File: /home/buildozer/aports/main/py3-yaml/src/pyyaml-5.3.1/ext/_yaml.pxd tree = Parsing.p_module(s, pxd, full_module_name) running test running build_py running build_ext skipping 'ext/_yaml.c' Cython extension (up-to-date) ....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................../usr/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'python_requires' warnings.warn(msg) =========================================================================== TESTS: 2614 >>> py3-yaml: Entering fakeroot... running install running build running build_py running build_ext skipping 'ext/_yaml.c' Cython extension (up-to-date) running install_lib creating /home/buildozer/aports/main/py3-yaml/pkg creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8 creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages copying build/lib.linux-i686-3.8/_yaml.cpython-38-i386-linux-gnu.so -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/events.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/constructor.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/loader.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/emitter.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/dumper.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml creating /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/nodes.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/events.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/representer.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/cyaml.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/error.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/parser.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/dumper.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/scanner.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/tokens.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/reader.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/constructor.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/emitter.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/resolver.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/__init__.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/loader.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/composer.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/__pycache__/serializer.cpython-38.pyc -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml/__pycache__ copying build/lib.linux-i686-3.8/yaml/error.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/__init__.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/cyaml.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/reader.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/composer.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/parser.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/serializer.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/nodes.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/tokens.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/resolver.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/representer.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml copying build/lib.linux-i686-3.8/yaml/scanner.py -> /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/yaml running install_egg_info Writing /home/buildozer/aports/main/py3-yaml/pkg/py3-yaml/usr/lib/python3.8/site-packages/PyYAML-5.3.1-py3.8.egg-info /usr/lib/python3.8/distutils/dist.py:274: UserWarning: Unknown distribution option: 'python_requires' warnings.warn(msg) >>> py3-yaml*: Running postcheck for py3-yaml >>> py3-yaml*: Preparing package py3-yaml... >>> py3-yaml*: Stripping binaries >>> py3-yaml*: Scanning shared objects >>> py3-yaml*: Tracing dependencies... so:libc.musl-x86.so.1 so:libyaml-0.so.2 >>> py3-yaml*: Package size: 632.0 KB >>> py3-yaml*: Compressing data... >>> py3-yaml*: Create checksum... >>> py3-yaml*: Create py3-yaml-5.3.1-r1.apk >>> py3-yaml: Build complete at Wed, 20 Jan 2021 03:11:10 +0000 elapsed time 0h 0m 26s >>> py3-yaml: Cleaning up srcdir >>> py3-yaml: Cleaning up pkgdir >>> py3-yaml: Uninstalling dependencies... (1/12) Purging .makedepends-py3-yaml (20210120.031045) (2/12) Purging python3-dev (3.8.5-r0) (3/12) Purging python3 (3.8.5-r0) (4/12) Purging yaml-dev (0.2.4-r1) (5/12) Purging yaml (0.2.4-r1) (6/12) Purging cython (0.29.19-r0) (7/12) Purging libbz2 (1.0.8-r1) (8/12) Purging libffi (3.3-r2) (9/12) Purging gdbm (1.13-r1) (10/12) Purging xz-libs (5.2.5-r0) (11/12) Purging readline (8.0.4-r0) (12/12) Purging sqlite-libs (3.32.1-r0) Executing busybox-1.31.1-r19.trigger OK: 315 MiB in 84 packages >>> py3-yaml: Updating the main/x86 repository index... >>> py3-yaml: Signing the index...