>>> py3-bcrypt: Building main/py3-bcrypt 3.2.2-r1 (using abuild 3.9.0-r5) started Sun, 14 Aug 2022 19:29:56 +0000 >>> py3-bcrypt: Checking sanity of /home/buildozer/aports/main/py3-bcrypt/APKBUILD... >>> py3-bcrypt: Analyzing dependencies... >>> py3-bcrypt: Installing for build: build-base py3-cffi python3-dev py3-setuptools py3-cparser libffi-dev (1/18) Installing libbz2 (1.0.8-r2) (2/18) Installing gdbm (1.23-r0) (3/18) Installing mpdecimal (2.5.1-r1) (4/18) Installing readline (8.1.2-r0) (5/18) Installing sqlite-libs (3.39.2-r0) (6/18) Installing python3 (3.10.5-r2) (7/18) Installing py3-cparser (2.20-r2) (8/18) Installing py3-cffi (1.15.1-r0) (9/18) Installing python3-dev (3.10.5-r2) (10/18) Installing py3-appdirs (1.4.4-r4) (11/18) Installing py3-more-itertools (8.13.0-r0) (12/18) Installing py3-ordered-set (4.0.2-r4) (13/18) Installing py3-parsing (3.0.9-r0) (14/18) Installing py3-packaging (21.3-r2) (15/18) Installing py3-setuptools (59.4.0-r0) (16/18) Installing linux-headers (5.16.7-r1) (17/18) Installing libffi-dev (3.4.2-r1) (18/18) Installing .makedepends-py3-bcrypt (20220814.193000) Executing busybox-1.35.0-r22.trigger OK: 1331 MiB in 105 packages >>> py3-bcrypt: Cleaning up srcdir >>> py3-bcrypt: Cleaning up pkgdir >>> py3-bcrypt: Fetching py3-bcrypt-3.2.2.tar.gz::https://github.com/pyca/bcrypt/archive/3.2.2.tar.gz >>> py3-bcrypt: Fetching py3-bcrypt-3.2.2.tar.gz::https://github.com/pyca/bcrypt/archive/3.2.2.tar.gz >>> py3-bcrypt: Checking sha512sums... py3-bcrypt-3.2.2.tar.gz: OK >>> py3-bcrypt: Unpacking /var/cache/distfiles/py3-bcrypt-3.2.2.tar.gz... running build running build_py creating build creating build/lib.linux-riscv64-3.10 creating build/lib.linux-riscv64-3.10/bcrypt copying src/bcrypt/__about__.py -> build/lib.linux-riscv64-3.10/bcrypt copying src/bcrypt/__init__.py -> build/lib.linux-riscv64-3.10/bcrypt running egg_info creating src/bcrypt.egg-info writing src/bcrypt.egg-info/PKG-INFO writing dependency_links to src/bcrypt.egg-info/dependency_links.txt writing requirements to src/bcrypt.egg-info/requires.txt writing top-level names to src/bcrypt.egg-info/top_level.txt writing manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files found matching 'requirements.txt' warning: no previously-included files found matching 'release.py' warning: no previously-included files found matching 'mypy.ini' warning: no previously-included files matching '*' found under directory '.github' warning: no previously-included files matching '*' found under directory '.circleci' adding license file 'LICENSE' writing manifest file 'src/bcrypt.egg-info/SOURCES.txt' copying src/bcrypt/_bcrypt.pyi -> build/lib.linux-riscv64-3.10/bcrypt copying src/bcrypt/py.typed -> build/lib.linux-riscv64-3.10/bcrypt running build_ext generating cffi module 'build/temp.linux-riscv64-3.10/_bcrypt.c' creating build/temp.linux-riscv64-3.10 building '_bcrypt' extension creating build/temp.linux-riscv64-3.10/build creating build/temp.linux-riscv64-3.10/build/temp.linux-riscv64-3.10 creating build/temp.linux-riscv64-3.10/src creating build/temp.linux-riscv64-3.10/src/_csrc gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c build/temp.linux-riscv64-3.10/_bcrypt.c -o build/temp.linux-riscv64-3.10/build/temp.linux-riscv64-3.10/_bcrypt.o In file included from src/_csrc/pycabcrypt.h:7, from build/temp.linux-riscv64-3.10/_bcrypt.c:570: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/pycabcrypt.h:4: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c src/_csrc/bcrypt.c -o build/temp.linux-riscv64-3.10/src/_csrc/bcrypt.o In file included from src/_csrc/pycabcrypt.h:7, from src/_csrc/blf.h:35, from src/_csrc/bcrypt.c:35: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/bcrypt.c:34: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | src/_csrc/bcrypt.c: In function 'decode_base64': src/_csrc/bcrypt.c:205:29: warning: pointer targets in initialization of 'const u_int8_t *' {aka 'const unsigned char *'} from 'const char *' differ in signedness [-Wpointer-sign] 205 | const u_int8_t *p = b64data; | ^~~~~~~ src/_csrc/bcrypt.c: In function 'encode_base64': src/_csrc/bcrypt.c:247:24: warning: pointer targets in initialization of 'u_int8_t *' {aka 'unsigned char *'} from 'char *' differ in signedness [-Wpointer-sign] 247 | u_int8_t *bp = b64buffer; | ^~~~~~~~~ gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c src/_csrc/bcrypt_pbkdf.c -o build/temp.linux-riscv64-3.10/src/_csrc/bcrypt_pbkdf.o In file included from src/_csrc/pycabcrypt.h:7, from src/_csrc/bcrypt_pbkdf.c:22: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/bcrypt_pbkdf.c:18: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | In file included from src/_csrc/bcrypt_pbkdf.c:24: src/_csrc/sha2.h:68:9: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:9: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:9: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:9: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:9: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:9: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c src/_csrc/blf.c -o build/temp.linux-riscv64-3.10/src/_csrc/blf.o In file included from src/_csrc/pycabcrypt.h:7, from src/_csrc/blf.h:35, from src/_csrc/blf.c:42: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/blf.c:40: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c src/_csrc/sha2.c -o build/temp.linux-riscv64-3.10/src/_csrc/sha2.o In file included from src/_csrc/pycabcrypt.h:7, from src/_csrc/sha2.c:37: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/pycabcrypt.h:4: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | In file included from src/_csrc/sha2.c:38: src/_csrc/sha2.h:68:9: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:9: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:9: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:9: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:9: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:9: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.c:440:22: warning: argument 1 of type 'u_int8_t[]' {aka 'unsigned char[]'} with mismatched bound [-Warray-parameter=] 440 | SHA256Final(u_int8_t digest[], SHA2_CTX *context) | ~~~~~~~~~^~~~~~~~ src/_csrc/sha2.h:69:18: note: previously declared as 'u_int8_t[32]' {aka 'unsigned char[32]'} 69 | void SHA256Final(u_int8_t[SHA256_DIGEST_LENGTH], SHA2_CTX *) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/_csrc/sha2.c:759:22: warning: argument 1 of type 'u_int8_t[]' {aka 'unsigned char[]'} with mismatched bound [-Warray-parameter=] 759 | SHA512Final(u_int8_t digest[], SHA2_CTX *context) | ~~~~~~~~~^~~~~~~~ src/_csrc/sha2.h:81:18: note: previously declared as 'u_int8_t[64]' {aka 'unsigned char[64]'} 81 | void SHA512Final(u_int8_t[SHA512_DIGEST_LENGTH], SHA2_CTX *) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ src/_csrc/sha2.c:796:22: warning: argument 1 of type 'u_int8_t[]' {aka 'unsigned char[]'} with mismatched bound [-Warray-parameter=] 796 | SHA384Final(u_int8_t digest[], SHA2_CTX *context) | ~~~~~~~~~^~~~~~~~ src/_csrc/sha2.h:75:18: note: previously declared as 'u_int8_t[48]' {aka 'unsigned char[48]'} 75 | void SHA384Final(u_int8_t[SHA384_DIGEST_LENGTH], SHA2_CTX *) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fomit-frame-pointer -g -fomit-frame-pointer -g -fomit-frame-pointer -g -DTHREAD_STACK_SIZE=0x100000 -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -Isrc/_csrc -I/usr/include/python3.10 -c src/_csrc/timingsafe_bcmp.c -o build/temp.linux-riscv64-3.10/src/_csrc/timingsafe_bcmp.o In file included from src/_csrc/pycabcrypt.h:7, from src/_csrc/timingsafe_bcmp.c:18: src/_csrc/portable_endian.h:35: warning: "htobe16" redefined 35 | # define htobe16(x) htons(x) | In file included from /usr/include/sys/types.h:70, from src/_csrc/pycabcrypt.h:4: /usr/include/endian.h:35: note: this is the location of the previous definition 35 | #define htobe16(x) __bswap16(x) | src/_csrc/portable_endian.h:36: warning: "htole16" redefined 36 | # define htole16(x) (x) | /usr/include/endian.h:41: note: this is the location of the previous definition 41 | #define htole16(x) (uint16_t)(x) | src/_csrc/portable_endian.h:37: warning: "be16toh" redefined 37 | # define be16toh(x) ntohs(x) | /usr/include/endian.h:36: note: this is the location of the previous definition 36 | #define be16toh(x) __bswap16(x) | src/_csrc/portable_endian.h:38: warning: "le16toh" redefined 38 | # define le16toh(x) (x) | /usr/include/endian.h:42: note: this is the location of the previous definition 42 | #define le16toh(x) (uint16_t)(x) | src/_csrc/portable_endian.h:40: warning: "htobe32" redefined 40 | # define htobe32(x) htonl(x) | /usr/include/endian.h:37: note: this is the location of the previous definition 37 | #define htobe32(x) __bswap32(x) | src/_csrc/portable_endian.h:41: warning: "htole32" redefined 41 | # define htole32(x) (x) | /usr/include/endian.h:43: note: this is the location of the previous definition 43 | #define htole32(x) (uint32_t)(x) | src/_csrc/portable_endian.h:42: warning: "be32toh" redefined 42 | # define be32toh(x) ntohl(x) | /usr/include/endian.h:38: note: this is the location of the previous definition 38 | #define be32toh(x) __bswap32(x) | src/_csrc/portable_endian.h:43: warning: "le32toh" redefined 43 | # define le32toh(x) (x) | /usr/include/endian.h:44: note: this is the location of the previous definition 44 | #define le32toh(x) (uint32_t)(x) | src/_csrc/portable_endian.h:45: warning: "htobe64" redefined 45 | # define htobe64(x) (((uint64_t)htonl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)htonl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:39: note: this is the location of the previous definition 39 | #define htobe64(x) __bswap64(x) | src/_csrc/portable_endian.h:46: warning: "htole64" redefined 46 | # define htole64(x) (x) | /usr/include/endian.h:45: note: this is the location of the previous definition 45 | #define htole64(x) (uint64_t)(x) | src/_csrc/portable_endian.h:47: warning: "be64toh" redefined 47 | # define be64toh(x) (((uint64_t)ntohl(((uint32_t)(((uint64_t)(x)) >> 32)))) | (((uint64_t)ntohl(((uint32_t)(x)))) << 32)) | /usr/include/endian.h:40: note: this is the location of the previous definition 40 | #define be64toh(x) __bswap64(x) | src/_csrc/portable_endian.h:48: warning: "le64toh" redefined 48 | # define le64toh(x) (x) | /usr/include/endian.h:46: note: this is the location of the previous definition 46 | #define le64toh(x) (uint64_t)(x) | gcc -shared -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Wl,--as-needed,-O1,--sort-common -Os -fomit-frame-pointer -Os -fomit-frame-pointer build/temp.linux-riscv64-3.10/build/temp.linux-riscv64-3.10/_bcrypt.o build/temp.linux-riscv64-3.10/src/_csrc/bcrypt.o build/temp.linux-riscv64-3.10/src/_csrc/bcrypt_pbkdf.o build/temp.linux-riscv64-3.10/src/_csrc/blf.o build/temp.linux-riscv64-3.10/src/_csrc/sha2.o build/temp.linux-riscv64-3.10/src/_csrc/timingsafe_bcmp.o -L/usr/lib -o build/lib.linux-riscv64-3.10/bcrypt/_bcrypt.abi3.so >>> py3-bcrypt: Entering fakeroot... running install /usr/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. warnings.warn( running build running build_py running egg_info writing src/bcrypt.egg-info/PKG-INFO writing dependency_links to src/bcrypt.egg-info/dependency_links.txt writing requirements to src/bcrypt.egg-info/requires.txt writing top-level names to src/bcrypt.egg-info/top_level.txt reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no previously-included files found matching 'requirements.txt' warning: no previously-included files found matching 'release.py' warning: no previously-included files found matching 'mypy.ini' warning: no previously-included files matching '*' found under directory '.github' warning: no previously-included files matching '*' found under directory '.circleci' adding license file 'LICENSE' writing manifest file 'src/bcrypt.egg-info/SOURCES.txt' running build_ext generating cffi module 'build/temp.linux-riscv64-3.10/_bcrypt.c' already up-to-date running install_lib creating /home/buildozer/aports/main/py3-bcrypt/pkg creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10 creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages creating /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt copying build/lib.linux-riscv64-3.10/bcrypt/__about__.py -> /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt copying build/lib.linux-riscv64-3.10/bcrypt/_bcrypt.pyi -> /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt copying build/lib.linux-riscv64-3.10/bcrypt/_bcrypt.abi3.so -> /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt copying build/lib.linux-riscv64-3.10/bcrypt/py.typed -> /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt copying build/lib.linux-riscv64-3.10/bcrypt/__init__.py -> /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt byte-compiling /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt/__about__.py to __about__.cpython-310.pyc byte-compiling /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt/__init__.py to __init__.cpython-310.pyc running install_egg_info Copying src/bcrypt.egg-info to /home/buildozer/aports/main/py3-bcrypt/pkg/py3-bcrypt/usr/lib/python3.10/site-packages/bcrypt-3.2.2-py3.10.egg-info running install_scripts >>> py3-bcrypt*: Running postcheck for py3-bcrypt >>> py3-bcrypt*: Preparing package py3-bcrypt... >>> py3-bcrypt*: Stripping binaries >>> py3-bcrypt*: Scanning shared objects >>> py3-bcrypt*: Tracing dependencies... py3-cffi so:libc.musl-riscv64.so.1 >>> py3-bcrypt*: Package size: 116.0 KB >>> py3-bcrypt*: Compressing data... >>> py3-bcrypt*: Create checksum... >>> py3-bcrypt*: Create py3-bcrypt-3.2.2-r1.apk >>> py3-bcrypt: Build complete at Sun, 14 Aug 2022 19:30:32 +0000 elapsed time 0h 0m 36s >>> py3-bcrypt: Cleaning up srcdir >>> py3-bcrypt: Cleaning up pkgdir >>> py3-bcrypt: Uninstalling dependencies... (1/18) Purging .makedepends-py3-bcrypt (20220814.193000) (2/18) Purging py3-cffi (1.15.1-r0) (3/18) Purging python3-dev (3.10.5-r2) (4/18) Purging py3-setuptools (59.4.0-r0) (5/18) Purging py3-appdirs (1.4.4-r4) (6/18) Purging py3-more-itertools (8.13.0-r0) (7/18) Purging py3-ordered-set (4.0.2-r4) (8/18) Purging py3-packaging (21.3-r2) (9/18) Purging py3-parsing (3.0.9-r0) (10/18) Purging py3-cparser (2.20-r2) (11/18) Purging python3 (3.10.5-r2) (12/18) Purging libffi-dev (3.4.2-r1) (13/18) Purging linux-headers (5.16.7-r1) (14/18) Purging libbz2 (1.0.8-r2) (15/18) Purging gdbm (1.23-r0) (16/18) Purging mpdecimal (2.5.1-r1) (17/18) Purging readline (8.1.2-r0) (18/18) Purging sqlite-libs (3.39.2-r0) Executing busybox-1.35.0-r22.trigger OK: 1170 MiB in 87 packages >>> py3-bcrypt: Updating the main/riscv64 repository index... >>> py3-bcrypt: Signing the index...