INFO: not using any hashes in /data/userland-archives/hashes for bcrypt-3.2.2.tar.gz (overridden with --hash) Source /data/userland-archives/bcrypt-3.2.2.tar.gz... not found, skipping file copy Source https://files.pythonhosted.org/packages/e8/36/edc85ab295ceff724506252b774155eff8a238f13730c8b13badd33ef866/bcrypt-3.2.2.tar.gz... downloading... ok validating signature... checking local signature... not found signature validation failed validating hash... ok patching file tox.ini copy cloning /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/bcrypt-3.2.2 to /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/amd64-3.7 * Getting build dependencies for wheel... 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 /usr/lib/python3.7/vendor-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. warnings.warn(msg, warning_class) listing git files failed - pretending there aren't any reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '.coveragerc' 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' * Building wheel... running bdist_wheel running build running build_py creating build creating build/lib.solaris-2.11-i86pc.64bit-cpython-37 creating build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt copying src/bcrypt/__about__.py -> build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt copying src/bcrypt/__init__.py -> build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt 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 /usr/lib/python3.7/vendor-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. warnings.warn(msg, warning_class) listing git files failed - pretending there aren't any reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '.coveragerc' 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.solaris-2.11-i86pc.64bit-cpython-37/bcrypt copying src/bcrypt/py.typed -> build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt running build_ext generating cffi module 'build/temp.solaris-2.11-i86pc.64bit-cpython-37/_bcrypt.c' creating build/temp.solaris-2.11-i86pc.64bit-cpython-37 building '_bcrypt' extension creating build/temp.solaris-2.11-i86pc.64bit-cpython-37/build creating build/temp.solaris-2.11-i86pc.64bit-cpython-37/build/temp.solaris-2.11-i86pc.64bit-cpython-37 creating build/temp.solaris-2.11-i86pc.64bit-cpython-37/src creating build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c build/temp.solaris-2.11-i86pc.64bit-cpython-37/_bcrypt.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/build/temp.solaris-2.11-i86pc.64bit-cpython-37/_bcrypt.o /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c src/_csrc/bcrypt.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/bcrypt.o src/_csrc/bcrypt.c: In function 'decode_base64': src/_csrc/bcrypt.c:205:22: 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:17: 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; | ^~~~~~~~~ src/_csrc/bcrypt.c: In function 'bcrypt_hashpass': src/_csrc/bcrypt.c:161:37: warning: 'snprintf' output may be truncated before the last format character [-Wformat-truncation=] 161 | snprintf(encrypted, 8, "$2%c$%2.2u$", minor, logr); | ^ src/_csrc/bcrypt.c:161:2: note: 'snprintf' output between 8 and 9 bytes into a destination of size 8 161 | snprintf(encrypted, 8, "$2%c$%2.2u$", minor, logr); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c src/_csrc/bcrypt_pbkdf.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/bcrypt_pbkdf.o In file included from src/_csrc/bcrypt_pbkdf.c:24: src/_csrc/sha2.h:68:2: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:2: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:2: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:2: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:2: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:2: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c src/_csrc/blf.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/blf.o /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c src/_csrc/sha2.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/sha2.o In file included from src/_csrc/sha2.c:38: src/_csrc/sha2.h:68:2: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:2: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:2: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:2: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:2: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:2: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O3 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.7m -c src/_csrc/timingsafe_bcmp.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/timingsafe_bcmp.o /usr/gcc/10/bin/gcc -shared -m64 -fPIC -DPIC -m64 -fPIC -DPIC -m64 -O3 build/temp.solaris-2.11-i86pc.64bit-cpython-37/build/temp.solaris-2.11-i86pc.64bit-cpython-37/_bcrypt.o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/bcrypt.o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/bcrypt_pbkdf.o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/blf.o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/sha2.o build/temp.solaris-2.11-i86pc.64bit-cpython-37/src/_csrc/timingsafe_bcmp.o -L/usr/lib/amd64 -o build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/_bcrypt.abi3.so installing to build/bdist.solaris-2.11-i86pc.64bit/wheel running install running install_lib creating build/bdist.solaris-2.11-i86pc.64bit creating build/bdist.solaris-2.11-i86pc.64bit/wheel creating build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/__about__.py -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/_bcrypt.abi3.so -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/_bcrypt.pyi -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/py.typed -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-37/bcrypt/__init__.py -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt running install_egg_info Copying src/bcrypt.egg-info to build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt-3.2.2-py3.7.egg-info running install_scripts creating build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt-3.2.2.dist-info/WHEEL creating '/jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/amd64-3.7/dist/.tmp-_ejgx8_5/bcrypt-3.2.2-cp37-cp37m-solaris_2_11_i86pc_64bit.whl' and adding 'build/bdist.solaris-2.11-i86pc.64bit/wheel' to it adding 'bcrypt/__about__.py' adding 'bcrypt/__init__.py' adding 'bcrypt/_bcrypt.abi3.so' adding 'bcrypt/_bcrypt.pyi' adding 'bcrypt/py.typed' adding 'bcrypt-3.2.2.dist-info/LICENSE' adding 'bcrypt-3.2.2.dist-info/METADATA' adding 'bcrypt-3.2.2.dist-info/WHEEL' adding 'bcrypt-3.2.2.dist-info/top_level.txt' adding 'bcrypt-3.2.2.dist-info/RECORD' removing build/bdist.solaris-2.11-i86pc.64bit/wheel Successfully built bcrypt-3.2.2-cp37-cp37m-solaris_2_11_i86pc_64bit.whl copy cloning /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/bcrypt-3.2.2 to /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/amd64-3.9 * Getting build dependencies for wheel... /usr/lib/python3.9/vendor-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. warnings.warn(msg, warning_class) 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 listing git files failed - pretending there aren't any reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '.coveragerc' 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' * Building wheel... /usr/lib/python3.9/vendor-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead. warnings.warn(msg, warning_class) running bdist_wheel running build running build_py creating build creating build/lib.solaris-2.11-i86pc.64bit-cpython-39 creating build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt copying src/bcrypt/__init__.py -> build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt copying src/bcrypt/__about__.py -> build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt 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 listing git files failed - pretending there aren't any reading manifest file 'src/bcrypt.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '.coveragerc' 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.solaris-2.11-i86pc.64bit-cpython-39/bcrypt copying src/bcrypt/py.typed -> build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt running build_ext generating cffi module 'build/temp.solaris-2.11-i86pc.64bit-cpython-39/_bcrypt.c' creating build/temp.solaris-2.11-i86pc.64bit-cpython-39 building '_bcrypt' extension creating build/temp.solaris-2.11-i86pc.64bit-cpython-39/build creating build/temp.solaris-2.11-i86pc.64bit-cpython-39/build/temp.solaris-2.11-i86pc.64bit-cpython-39 creating build/temp.solaris-2.11-i86pc.64bit-cpython-39/src creating build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c build/temp.solaris-2.11-i86pc.64bit-cpython-39/_bcrypt.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/build/temp.solaris-2.11-i86pc.64bit-cpython-39/_bcrypt.o /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c src/_csrc/bcrypt.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/bcrypt.o src/_csrc/bcrypt.c: In function 'decode_base64': src/_csrc/bcrypt.c:205:22: 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:17: 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; | ^~~~~~~~~ src/_csrc/bcrypt.c: In function 'bcrypt_hashpass': src/_csrc/bcrypt.c:161:37: warning: 'snprintf' output may be truncated before the last format character [-Wformat-truncation=] 161 | snprintf(encrypted, 8, "$2%c$%2.2u$", minor, logr); | ^ src/_csrc/bcrypt.c:161:2: note: 'snprintf' output between 8 and 9 bytes into a destination of size 8 161 | snprintf(encrypted, 8, "$2%c$%2.2u$", minor, logr); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c src/_csrc/bcrypt_pbkdf.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/bcrypt_pbkdf.o In file included from src/_csrc/bcrypt_pbkdf.c:24: src/_csrc/sha2.h:68:2: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:2: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:2: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:2: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:2: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:2: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c src/_csrc/blf.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/blf.o /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c src/_csrc/sha2.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/sha2.o In file included from src/_csrc/sha2.c:38: src/_csrc/sha2.h:68:2: warning: 'bounded' attribute directive ignored [-Wattributes] 68 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:70:2: warning: 'bounded' attribute directive ignored [-Wattributes] 70 | __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:74:2: warning: 'bounded' attribute directive ignored [-Wattributes] 74 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:76:2: warning: 'bounded' attribute directive ignored [-Wattributes] 76 | __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:80:2: warning: 'bounded' attribute directive ignored [-Wattributes] 80 | __attribute__((__bounded__(__string__,2,3))); | ^~~~~~~~~~~~~ src/_csrc/sha2.h:82:2: warning: 'bounded' attribute directive ignored [-Wattributes] 82 | __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH))); | ^~~~~~~~~~~~~ /usr/gcc/10/bin/gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -O3 -Wall -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -D_REENTRANT -m64 -O2 -fPIC -DPIC -D_XOPEN_SOURCE=600 -D__EXTENSIONS__=1 -D_XPG6 -m64 -O3 -fPIC -Isrc/_csrc -I/usr/include/python3.9 -c src/_csrc/timingsafe_bcmp.c -o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/timingsafe_bcmp.o /usr/gcc/10/bin/gcc -shared -m64 -fPIC -DPIC -m64 -fPIC -DPIC -m64 -O3 build/temp.solaris-2.11-i86pc.64bit-cpython-39/build/temp.solaris-2.11-i86pc.64bit-cpython-39/_bcrypt.o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/bcrypt.o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/bcrypt_pbkdf.o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/blf.o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/sha2.o build/temp.solaris-2.11-i86pc.64bit-cpython-39/src/_csrc/timingsafe_bcmp.o -L/usr/lib/amd64 -o build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/_bcrypt.abi3.so installing to build/bdist.solaris-2.11-i86pc.64bit/wheel running install running install_lib creating build/bdist.solaris-2.11-i86pc.64bit creating build/bdist.solaris-2.11-i86pc.64bit/wheel creating build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/_bcrypt.pyi -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/__init__.py -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/py.typed -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/__about__.py -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt copying build/lib.solaris-2.11-i86pc.64bit-cpython-39/bcrypt/_bcrypt.abi3.so -> build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt running install_egg_info Copying src/bcrypt.egg-info to build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt-3.2.2-py3.9.egg-info running install_scripts creating build/bdist.solaris-2.11-i86pc.64bit/wheel/bcrypt-3.2.2.dist-info/WHEEL creating '/jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/amd64-3.9/dist/.tmp-fv65k7u8/bcrypt-3.2.2-cp39-cp39-solaris_2_11_i86pc_64bit.whl' and adding 'build/bdist.solaris-2.11-i86pc.64bit/wheel' to it adding 'bcrypt/__about__.py' adding 'bcrypt/__init__.py' adding 'bcrypt/_bcrypt.abi3.so' adding 'bcrypt/_bcrypt.pyi' adding 'bcrypt/py.typed' adding 'bcrypt-3.2.2.dist-info/LICENSE' adding 'bcrypt-3.2.2.dist-info/METADATA' adding 'bcrypt-3.2.2.dist-info/WHEEL' adding 'bcrypt-3.2.2.dist-info/top_level.txt' adding 'bcrypt-3.2.2.dist-info/RECORD' removing build/bdist.solaris-2.11-i86pc.64bit/wheel Successfully built bcrypt-3.2.2-cp39-cp39-solaris_2_11_i86pc_64bit.whl Testing dependencies: tox coverage Testing dependencies: tox coverage VALIDATING MANIFEST CONTENT: /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/manifest-i386-bcrypt-37.depend.res /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/manifest-i386-bcrypt-39.depend.res /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/manifest-i386-bcrypt.depend.res /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/manifest-i386-library---python---bcrypt-27.depend.res /jenkins/jobs/oi-userland/workspace/components/python/bcrypt/build/manifest-i386-library---python---bcrypt-35.depend.res NEW PACKAGE CONTENTS ARE LOCALLY VALIDATED AND READY TO GO NEW PACKAGE CONTENTS ARE LOCALLY VALIDATED AND READY TO GO NEW PACKAGE CONTENTS ARE LOCALLY VALIDATED AND READY TO GO NEW PACKAGE CONTENTS ARE LOCALLY VALIDATED AND READY TO GO NEW PACKAGE CONTENTS ARE LOCALLY VALIDATED AND READY TO GO generating metadata: python/bcrypt pkg://openindiana.org/library/python/bcrypt-37@3.2.2,5.11-2023.0.0.0:20230207T180350Z PUBLISHED pkg://openindiana.org/library/python/bcrypt-39@3.2.2,5.11-2023.0.0.0:20230207T180444Z PUBLISHED pkg://openindiana.org/library/python/bcrypt@3.2.2,5.11-2023.0.0.0:20230207T180554Z PUBLISHED pkg://openindiana.org/library/python/bcrypt-27@3.1.7,5.11-2021.0.0.1:20230207T180622Z PUBLISHED pkg://openindiana.org/library/python/bcrypt-35@3.1.7,5.11-2021.0.0.1:20230207T180649Z PUBLISHED