>>> py3-apsw: Building testing/py3-apsw 3.37.0-r0 (using abuild 3.9.0-r0) started Wed, 26 Jan 2022 09:56:28 +0000 >>> py3-apsw: Checking sanity of /home/buildozer/aports/testing/py3-apsw/APKBUILD... >>> py3-apsw: Analyzing dependencies... >>> py3-apsw: Installing for build: build-base python3 python3-dev py3-setuptools sqlite-dev (1/15) Installing libffi (3.4.2-r1) (2/15) Installing gdbm (1.22-r0) (3/15) Installing mpdecimal (2.5.1-r1) (4/15) Installing readline (8.1.1-r0) (5/15) Installing sqlite-libs (3.37.2-r0) (6/15) Installing python3 (3.10.1-r0) (7/15) Installing python3-dev (3.10.1-r0) (8/15) Installing py3-ordered-set (4.0.2-r3) (9/15) Installing py3-appdirs (1.4.4-r3) (10/15) Installing py3-parsing (2.4.7-r3) (11/15) Installing py3-six (1.16.0-r1) (12/15) Installing py3-packaging (21.3-r0) (13/15) Installing py3-setuptools (52.0.0-r5) (14/15) Installing sqlite-dev (3.37.2-r0) (15/15) Installing .makedepends-py3-apsw (20220126.095629) Executing busybox-1.35.0-r1.trigger OK: 466 MiB in 116 packages >>> py3-apsw: Cleaning up srcdir >>> py3-apsw: Cleaning up pkgdir >>> py3-apsw: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-apsw-3.37.0-r1.tar.gz >>> py3-apsw: Fetching https://distfiles.alpinelinux.org/distfiles/edge/py3-apsw-3.37.0-r1.tar.gz >>> py3-apsw: Checking sha512sums... py3-apsw-3.37.0-r1.tar.gz: OK >>> py3-apsw: Unpacking /var/cache/distfiles/edge/py3-apsw-3.37.0-r1.tar.gz... /usr/lib/python3.10/site-packages/setuptools/dist.py:461: UserWarning: Normalizing '3.37.0-r1' to '3.37.0.post1' warnings.warn(tmpl.format(**locals())) running build running build_ext SQLite: Using system sqlite include/libraries building 'apsw' extension creating build creating build/temp.linux-aarch64-3.10 creating build/temp.linux-aarch64-3.10/src gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -g -g -g -DTHREAD_STACK_SIZE=0x100000 -Os -Os -fPIC -DEXPERIMENTAL=1 -DNDEBUG=1 -DAPSW_FORK_CHECKER=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -Isrc -I/usr/include/python3.10 -c src/apsw.c -o build/temp.linux-aarch64-3.10/src/apsw.o In file included from src/apsw.c:139: src/pyutil.c: In function 'Call_PythonMethod': src/pyutil.c:196:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 196 | res = PyEval_CallObject(method, args); | ^~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:145: src/util.c: In function 'apsw_write_unraiseable': src/util.c:141:7: warning: 'PyEval_CallFunction' is deprecated [-Wdeprecated-declarations] 141 | result = PyEval_CallFunction(excepthook, "(OOO)", err_type ? err_type : Py_None, err_value ? err_value : Py_None, err_traceback ? err_traceback : Py_None); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:26:43: note: declared here 26 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallFunction( | ^~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:145: src/util.c:153:5: warning: 'PyEval_CallFunction' is deprecated [-Wdeprecated-declarations] 153 | result = PyEval_CallFunction(excepthook, "(OOO)", err_type ? err_type : Py_None, err_value ? err_value : Py_None, err_traceback ? err_traceback : Py_None); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:26:43: note: declared here 26 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallFunction( | ^~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:148: src/apswbuffer.c: In function 'APSWBuffer_hash': src/apswbuffer.c:132:12: warning: comparison of integer expressions of different signedness: 'Py_uhash_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare] 132 | if (hash == -1) | ^~ In file included from src/apsw.c:151: src/statementcache.c: In function 'statementcache_prepare': src/statementcache.c:234:7: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 234 | if( sc->cache && sc->numentries && ((PyUnicode_CheckExact(query) && PyUnicode_GET_DATA_SIZE(query) < SC_MAXSIZE) | ^~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:151: src/statementcache.c:234:7: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 234 | if( sc->cache && sc->numentries && ((PyUnicode_CheckExact(query) && PyUnicode_GET_DATA_SIZE(query) < SC_MAXSIZE) | ^~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:151: src/statementcache.c:234:7: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 234 | if( sc->cache && sc->numentries && ((PyUnicode_CheckExact(query) && PyUnicode_GET_DATA_SIZE(query) < SC_MAXSIZE) | ^~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'Connection_init': src/connection.c:433:5: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 433 | hookresult = PyEval_CallObject(hook, hookargs); | ^~~~~~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'rollbackhookcb': src/connection.c:1004:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 1004 | retval = PyEval_CallObject(self->rollbackhook, NULL); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'commithookcb': src/connection.c:1142:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 1142 | retval = PyEval_CallObject(self->commithook, NULL); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'walhookcb': src/connection.c:1220:3: warning: 'PyEval_CallFunction' is deprecated [-Wdeprecated-declarations] 1220 | retval = PyEval_CallFunction(self->walhook, "(OO&i)", self, convertutf8string, dbname, npages); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:26:43: note: declared here 26 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallFunction( | ^~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'progresshandlercb': src/connection.c:1308:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 1308 | retval = PyEval_CallObject(self->progresshandler, NULL); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/connection.c: In function 'Connection_autovacuum_pages': src/connection.c:1585:82: warning: passing argument 2 of 'sqlite3_autovacuum_pages' from incompatible pointer type [-Wincompatible-pointer-types] 1585 | PYSQLITE_CON_CALL(res = sqlite3_autovacuum_pages(self->db, autovacuum_pages_cb, callable, autovacuum_pages_cleanup)), | ^~~~~~~~~~~~~~~~~~~ | | | int (*)(void *, const char *, unsigned int, unsigned int, unsigned int) src/apsw.c:113:5: note: in definition of macro 'APSW_FAULT_INJECT' 113 | good; \ | ^~~~ src/util.c:72:30: note: in expansion of macro 'INUSE_CALL' 72 | #define PYSQLITE_CON_CALL(y) INUSE_CALL(_PYSQLITE_CALL_E(self->db, y)) | ^~~~~~~~~~ src/util.c:72:41: note: in expansion of macro '_PYSQLITE_CALL_E' 72 | #define PYSQLITE_CON_CALL(y) INUSE_CALL(_PYSQLITE_CALL_E(self->db, y)) | ^~~~~~~~~~~~~~~~ src/connection.c:1585:23: note: in expansion of macro 'PYSQLITE_CON_CALL' 1585 | PYSQLITE_CON_CALL(res = sqlite3_autovacuum_pages(self->db, autovacuum_pages_cb, callable, autovacuum_pages_cleanup)), | ^~~~~~~~~~~~~~~~~ In file included from src/apsw.c:61: /usr/include/sqlite3.h:6478:3: note: expected 'unsigned int (*)(void *, const char *, unsigned int, unsigned int, unsigned int)' but argument is of type 'int (*)(void *, const char *, unsigned int, unsigned int, unsigned int)' 6478 | unsigned int(*)(void*,const char*,unsigned int,unsigned int,unsigned int), | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'collationneeded_cb': src/connection.c:1613:5: warning: 'PyEval_CallFunction' is deprecated [-Wdeprecated-declarations] 1613 | res = PyEval_CallFunction(self->collationneeded, "(OO)", self, pyname); | ^~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:26:43: note: declared here 26 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallFunction( | ^~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'Connection_serialize': src/connection.c:1834:28: warning: pointer targets in passing argument 1 of 'PyBytes_FromStringAndSize' differ in signedness [-Wpointer-sign] 1834 | pyres = converttobytes(serialization, size); | ^~~~~~~~~~~~~ | | | unsigned char * In file included from /usr/include/python3.10/Python.h:82, from src/apsw.c:77: /usr/include/python3.10/bytesobject.h:34:50: note: expected 'const char *' but argument is of type 'unsigned char *' 34 | PyAPI_FUNC(PyObject *) PyBytes_FromStringAndSize(const char *, Py_ssize_t); | ^~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c:1816:7: warning: unused variable 'res' [-Wunused-variable] 1816 | int res = SQLITE_OK; | ^~~ In file included from src/apsw.c:145: src/connection.c: In function 'Connection_deserialize': src/connection.c:1909:67: warning: pointer targets in passing argument 3 of 'sqlite3_deserialize' differ in signedness [-Wpointer-sign] 1909 | PYSQLITE_CON_CALL(res = sqlite3_deserialize(self->db, dbname, newcontents, buflen, buflen, SQLITE_DESERIALIZE_RESIZEABLE | SQLITE_DESERIALIZE_FREEONCLOSE)); | ^~~~~~~~~~~ | | | char * src/util.c:62:7: note: in definition of macro 'INUSE_CALL' 62 | x; \ | ^ src/util.c:72:41: note: in expansion of macro '_PYSQLITE_CALL_E' 72 | #define PYSQLITE_CON_CALL(y) INUSE_CALL(_PYSQLITE_CALL_E(self->db, y)) | ^~~~~~~~~~~~~~~~ src/connection.c:1909:5: note: in expansion of macro 'PYSQLITE_CON_CALL' 1909 | PYSQLITE_CON_CALL(res = sqlite3_deserialize(self->db, dbname, newcontents, buflen, buflen, SQLITE_DESERIALIZE_RESIZEABLE | SQLITE_DESERIALIZE_FREEONCLOSE)); | ^~~~~~~~~~~~~~~~~ In file included from src/apsw.c:61: /usr/include/sqlite3.h:10030:18: note: expected 'unsigned char *' but argument is of type 'char *' 10030 | unsigned char *pData, /* The serialized database content */ | ~~~~~~~~~~~~~~~^~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'cbdispatch_func': src/connection.c:2284:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 2284 | retval = PyEval_CallObject(cbinfo->scalarfunc, pyargs); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'getaggregatefunctioncontext': src/connection.c:2325:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 2325 | retval = PyEval_CallObject(cbinfo->aggregatefactory, NULL); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:154: src/connection.c: In function 'cbdispatch_step': src/connection.c:2404:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 2404 | retval = PyEval_CallObject(aggfc->stepfunc, pyargs); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from src/apsw.c:169: src/vfs.c: In function 'apswvfs_excepthook': src/vfs.c:281:3: warning: 'PyEval_CallObjectWithKeywords' is deprecated [-Wdeprecated-declarations] 281 | return PyEval_CallObject(excepthook, args); | ^~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:17:43: note: declared here 17 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallObjectWithKeywords( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c: In function 'apsw_logger': src/apsw.c:321:5: warning: 'PyEval_CallFunction' is deprecated [-Wdeprecated-declarations] 321 | res = PyEval_CallFunction(arg, "iO", errcode, msgaspystring); | ^~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:26:43: note: declared here 26 | Py_DEPRECATED(3.9) PyAPI_FUNC(PyObject *) PyEval_CallFunction( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c: In function 'formatsqlvalue': src/apsw.c:1094:5: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations] 1094 | unires = PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(value) + 2); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:551:42: note: declared here 551 | Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode( | ^~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1094:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1094 | unires = PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(value) + 2); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1094:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1094 | unires = PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(value) + 2); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1094:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1094 | unires = PyUnicode_FromUnicode(NULL, PyUnicode_GET_SIZE(value) + 2); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1097:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1097 | res = PyUnicode_AS_UNICODE(unires); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1099:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1099 | memcpy(res, PyUnicode_AS_UNICODE(value), PyUnicode_GET_DATA_SIZE(value)); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1099:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1099 | memcpy(res, PyUnicode_AS_UNICODE(value), PyUnicode_GET_DATA_SIZE(value)); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1099:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1099 | memcpy(res, PyUnicode_AS_UNICODE(value), PyUnicode_GET_DATA_SIZE(value)); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1099:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1099 | memcpy(res, PyUnicode_AS_UNICODE(value), PyUnicode_GET_DATA_SIZE(value)); | ^~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1100:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1100 | res += PyUnicode_GET_SIZE(value); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1100:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1100 | res += PyUnicode_GET_SIZE(value); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1100:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1100 | res += PyUnicode_GET_SIZE(value); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1103:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1103 | res = PyUnicode_AS_UNICODE(unires) + 1; | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1104:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1104 | left = PyUnicode_GET_SIZE(value); | ^~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1104:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1104 | left = PyUnicode_GET_SIZE(value); | ^~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1104:5: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1104 | left = PyUnicode_GET_SIZE(value); | ^~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1112:9: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1112 | APSW_FAULT_INJECT(FormatSQLValueResizeFails, | ^~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1112:9: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1112 | APSW_FAULT_INJECT(FormatSQLValueResizeFails, | ^~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1112:9: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1112 | APSW_FAULT_INJECT(FormatSQLValueResizeFails, | ^~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1120:9: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1120 | res = PyUnicode_AS_UNICODE(unires) + (PyUnicode_GET_SIZE(unires) - left - moveamount - 1); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1120:9: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1120 | res = PyUnicode_AS_UNICODE(unires) + (PyUnicode_GET_SIZE(unires) - left - moveamount - 1); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1120:9: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1120 | res = PyUnicode_AS_UNICODE(unires) + (PyUnicode_GET_SIZE(unires) - left - moveamount - 1); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c:1120:9: warning: '_PyUnicode_get_wstr_length' is deprecated [-Wdeprecated-declarations] 1120 | res = PyUnicode_AS_UNICODE(unires) + (PyUnicode_GET_SIZE(unires) - left - moveamount - 1); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:446:26: note: declared here 446 | static inline Py_ssize_t _PyUnicode_get_wstr_length(PyObject *op) { | ^~~~~~~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1168:5: warning: 'PyUnicode_FromUnicode' is deprecated [-Wdeprecated-declarations] 1168 | APSW_FAULT_INJECT(FormatSQLValuePyUnicodeFromUnicodeFails, | ^~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:551:42: note: declared here 551 | Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode( | ^~~~~~~~~~~~~~~~~~~~~ src/apsw.c:1177:5: warning: 'PyUnicode_AsUnicode' is deprecated [-Wdeprecated-declarations] 1177 | res = PyUnicode_AS_UNICODE(unires); | ^~~ In file included from /usr/include/python3.10/unicodeobject.h:1046, from /usr/include/python3.10/Python.h:83, from src/apsw.c:77: /usr/include/python3.10/cpython/unicodeobject.h:580:45: note: declared here 580 | Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode( | ^~~~~~~~~~~~~~~~~~~ src/apsw.c: In function 'PyInit_apsw': src/apsw.c:1325:3: warning: 'PyEval_InitThreads' is deprecated [-Wdeprecated-declarations] 1325 | PyEval_InitThreads(); | ^~~~~~~~~~~~~~~~~~ In file included from /usr/include/python3.10/Python.h:130, from src/apsw.c:77: /usr/include/python3.10/ceval.h:122:37: note: declared here 122 | Py_DEPRECATED(3.9) PyAPI_FUNC(void) PyEval_InitThreads(void); | ^~~~~~~~~~~~~~~~~~ creating build/lib.linux-aarch64-3.10 gcc -shared -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Os -Os build/temp.linux-aarch64-3.10/src/apsw.o -L/usr/lib -lsqlite3 -o build/lib.linux-aarch64-3.10/apsw.cpython-310-aarch64-linux-gnu.so /usr/lib/python3.10/site-packages/setuptools/dist.py:461: UserWarning: Normalizing '3.37.0-r1' to '3.37.0.post1' warnings.warn(tmpl.format(**locals())) running check >>> py3-apsw: Entering fakeroot... /usr/lib/python3.10/site-packages/setuptools/dist.py:461: UserWarning: Normalizing '3.37.0-r1' to '3.37.0.post1' warnings.warn(tmpl.format(**locals())) running install running build running build_ext SQLite: Using system sqlite include/libraries running install_lib creating /home/buildozer/aports/testing/py3-apsw/pkg creating /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw creating /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr creating /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr/lib creating /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr/lib/python3.10 creating /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr/lib/python3.10/site-packages copying build/lib.linux-aarch64-3.10/apsw.cpython-310-aarch64-linux-gnu.so -> /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr/lib/python3.10/site-packages running install_egg_info running egg_info creating apsw.egg-info writing apsw.egg-info/PKG-INFO writing dependency_links to apsw.egg-info/dependency_links.txt writing top-level names to apsw.egg-info/top_level.txt writing manifest file 'apsw.egg-info/SOURCES.txt' reading manifest file 'apsw.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' writing manifest file 'apsw.egg-info/SOURCES.txt' Copying apsw.egg-info to /home/buildozer/aports/testing/py3-apsw/pkg/py3-apsw/usr/lib/python3.10/site-packages/apsw-3.37.0.post1-py3.10.egg-info running install_scripts >>> py3-apsw*: Running postcheck for py3-apsw >>> py3-apsw*: Preparing package py3-apsw... >>> py3-apsw*: Stripping binaries >>> py3-apsw*: Scanning shared objects >>> py3-apsw*: Tracing dependencies... python3 so:libc.musl-aarch64.so.1 so:libsqlite3.so.0 >>> py3-apsw*: Package size: 332.0 KB >>> py3-apsw*: Compressing data... >>> py3-apsw*: Create checksum... >>> py3-apsw*: Create py3-apsw-3.37.0-r0.apk >>> py3-apsw: Build complete at Wed, 26 Jan 2022 09:56:35 +0000 elapsed time 0h 0m 7s >>> py3-apsw: Cleaning up srcdir >>> py3-apsw: Cleaning up pkgdir >>> py3-apsw: Uninstalling dependencies... (1/15) Purging .makedepends-py3-apsw (20220126.095629) (2/15) Purging python3-dev (3.10.1-r0) (3/15) Purging py3-setuptools (52.0.0-r5) (4/15) Purging py3-ordered-set (4.0.2-r3) (5/15) Purging py3-appdirs (1.4.4-r3) (6/15) Purging py3-packaging (21.3-r0) (7/15) Purging py3-parsing (2.4.7-r3) (8/15) Purging py3-six (1.16.0-r1) (9/15) Purging python3 (3.10.1-r0) (10/15) Purging sqlite-dev (3.37.2-r0) (11/15) Purging sqlite-libs (3.37.2-r0) (12/15) Purging libffi (3.4.2-r1) (13/15) Purging gdbm (1.22-r0) (14/15) Purging mpdecimal (2.5.1-r1) (15/15) Purging readline (8.1.1-r0) Executing busybox-1.35.0-r1.trigger OK: 365 MiB in 101 packages >>> py3-apsw: Updating the testing/aarch64 repository index... >>> py3-apsw: Signing the index...