+ case "${usergroup_phase}" in + local run_cmd + run_cmd=run_su + shift + run_su /opt/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/lastpass-cli-1.6.1nb2/work.log + su pbulk -c '"$@"' make /opt/pkg/bin/bmake all BATCH=1 DEPENDS_TARGET=/nonexistent WRKLOG=/tmp/bulklog/lastpass-cli-1.6.1nb2/work.log ===> Building for lastpass-cli-1.6.1nb2 [ 2%] Building C object CMakeFiles/lpass.dir/clipboard.c.o [ 4%] Building C object CMakeFiles/lpass.dir/agent.c.o [ 9%] Building C object CMakeFiles/lpass.dir/blob.c.o [ 9%] Building C object CMakeFiles/lpass.dir/cipher.c.o [ 11%] Building C object CMakeFiles/lpass.dir/cmd-add.c.o /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c: In function 'cipher_rsa_decrypt': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:75:9: warning: 'EVP_PKEY_get1_RSA' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 75 | rsa = EVP_PKEY_get1_RSA(pkey); | ^~~ In file included from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:39: /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/evp.h:1407:16: note: declared here 1407 | struct rsa_st *EVP_PKEY_get1_RSA(EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:80:9: warning: 'RSA_private_decrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 80 | if (RSA_private_decrypt(len, (unsigned char *)ciphertext, (unsigned char *)ret, rsa, RSA_PKCS1_OAEP_PADDING) < 0) { | ^~ In file included from /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/x509.h:36, from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:45: /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/rsa.h:302:5: note: declared here 302 | int RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:89:9: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 89 | RSA_free(rsa); | ^~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/rsa.h:304:28: note: declared here 304 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c: In function 'cipher_rsa_encrypt_bytes': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:119:9: warning: 'EVP_PKEY_get1_RSA' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 119 | rsa = EVP_PKEY_get1_RSA(pubkey); | ^~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/evp.h:1407:16: note: declared here 1407 | struct rsa_st *EVP_PKEY_get1_RSA(EVP_PKEY *pkey); | ^~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:123:9: warning: 'RSA_public_encrypt' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 123 | ret = RSA_public_encrypt(in_len, plaintext, | ^~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/rsa.h:293:5: note: declared here 293 | int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, | ^~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:134:9: warning: 'RSA_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 134 | RSA_free(rsa); | ^~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/rsa.h:304:28: note: declared here 304 | OSSL_DEPRECATEDIN_3_0 void RSA_free(RSA *r); | ^~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c: In function 'cipher_encrypt_private_key': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:499:40: warning: pointer targets in passing argument 1 of 'cipher_aes_encrypt' differ in signedness [-Wpointer-sign] 499 | ctext_len = cipher_aes_encrypt(key_ptext, key, &ctext); | ^~~~~~~~~ | | | unsigned char * /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:230:39: note: expected 'const char *' but argument is of type 'unsigned char *' 230 | size_t cipher_aes_encrypt(const char *plaintext, | ~~~~~~~~~~~~^~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c: In function 'cipher_sha256_hex': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:518:9: warning: 'SHA256_Init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 518 | if (!SHA256_Init(&sha256)) | ^~ In file included from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/kdf.h:5, from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.h:4, from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:36: /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/sha.h:73:27: note: declared here 73 | OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c); | ^~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:520:9: warning: 'SHA256_Update' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 520 | if (!SHA256_Update(&sha256, bytes, len)) | ^~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/sha.h:74:27: note: declared here 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c, | ^~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cipher.c:522:9: warning: 'SHA256_Final' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] 522 | if (!SHA256_Final(hash, &sha256)) | ^~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/openssl/sha.h:76:27: note: declared here 76 | OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c); | ^~~~~~~~~~~~ [ 13%] Building C object CMakeFiles/lpass.dir/cmd-duplicate.c.o [ 16%] Building C object CMakeFiles/lpass.dir/cmd-edit.c.o [ 18%] Building C object CMakeFiles/lpass.dir/cmd-export.c.o [ 20%] Building C object CMakeFiles/lpass.dir/cmd-generate.c.o [ 23%] Building C object CMakeFiles/lpass.dir/cmd-import.c.o [ 25%] Building C object CMakeFiles/lpass.dir/cmd-login.c.o [ 27%] Building C object CMakeFiles/lpass.dir/cmd-logout.c.o [ 30%] Building C object CMakeFiles/lpass.dir/cmd-ls.c.o [ 32%] Building C object CMakeFiles/lpass.dir/cmd-mv.c.o [ 34%] Building C object CMakeFiles/lpass.dir/cmd-passwd.c.o [ 37%] Building C object CMakeFiles/lpass.dir/cmd-rm.c.o [ 39%] Building C object CMakeFiles/lpass.dir/cmd-share.c.o [ 41%] Building C object CMakeFiles/lpass.dir/cmd-show.c.o [ 44%] Building C object CMakeFiles/lpass.dir/cmd-status.c.o [ 46%] Building C object CMakeFiles/lpass.dir/cmd-sync.c.o [ 48%] Building C object CMakeFiles/lpass.dir/cmd.c.o [ 51%] Building C object CMakeFiles/lpass.dir/config.c.o [ 53%] Building C object CMakeFiles/lpass.dir/edit.c.o [ 55%] Building C object CMakeFiles/lpass.dir/endpoints-login.c.o [ 58%] Building C object CMakeFiles/lpass.dir/endpoints-share.c.o [ 60%] Building C object CMakeFiles/lpass.dir/endpoints.c.o [ 62%] Building C object CMakeFiles/lpass.dir/feature-flag.c.o [ 65%] Building C object CMakeFiles/lpass.dir/format.c.o [ 67%] Building C object CMakeFiles/lpass.dir/http.c.o [ 69%] Building C object CMakeFiles/lpass.dir/json-format.c.o [ 72%] Building C object CMakeFiles/lpass.dir/kdf.c.o /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c: In function 'http_post_lastpass_v_noexit': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:309:9: warning: 'CURLOPT_PROGRESSFUNCTION' is deprecated: since 7.32.0. Use CURLOPT_XFERINFOFUNCTION [-Wdeprecated-declarations] 309 | curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, check_interruption); | ^~~~~~~~~~~~~~~~ In file included from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.h:6, from /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:36: /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:1337:21: note: declared here 1337 | CURLOPTDEPRECATED(CURLOPT_PROGRESSFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 56, | ^~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:1124:40: note: in definition of macro 'CURLOPTDEPRECATED' 1124 | #define CURLOPTDEPRECATED(na,t,nu,v,m) na CURL_DEPRECATED(v,m) = t + nu | ^~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:55:7: warning: 'CURLOPT_PROGRESSFUNCTION' is deprecated: since 7.32.0. Use CURLOPT_XFERINFOFUNCTION [-Wdeprecated-declarations] 55 | _Pragma("GCC diagnostic pop") | ^~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:47:9: note: in expansion of macro 'CURL_IGNORE_DEPRECATION' 47 | CURL_IGNORE_DEPRECATION( \ | ^~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:309:9: note: in expansion of macro 'curl_easy_setopt' 309 | curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, check_interruption); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:1337:21: note: declared here 1337 | CURLOPTDEPRECATED(CURLOPT_PROGRESSFUNCTION, CURLOPTTYPE_FUNCTIONPOINT, 56, | ^~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:1124:40: note: in definition of macro 'CURLOPTDEPRECATED' 1124 | #define CURLOPTDEPRECATED(na,t,nu,v,m) na CURL_DEPRECATED(v,m) = t + nu | ^~ [ 74%] Building C object CMakeFiles/lpass.dir/log.c.o [ 76%] Building C object CMakeFiles/lpass.dir/lpass.c.o /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:288:9: note: in expansion of macro 'curl_easy_setopt' 288 | curl_easy_setopt(curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:294:25: note: in expansion of macro 'curl_easy_setopt' 294 | curl_easy_setopt(curl, CURLOPT_VERBOSE, 1); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:302:9: note: in expansion of macro 'curl_easy_setopt' 302 | curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:303:9: note: in expansion of macro 'curl_easy_setopt' 303 | curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:308:9: note: in expansion of macro 'curl_easy_setopt' 308 | curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/typecheck-gcc.h:50:15: warning: call to '_curl_easy_setopt_err_long' declared with attribute warning: curl_easy_setopt expects a long argument [-Wattribute-warning] 50 | _curl_easy_setopt_err_long(); \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/.buildlink/include/curl/curl.h:54:7: note: in definition of macro 'CURL_IGNORE_DEPRECATION' 54 | statements \ | ^~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/http.c:310:9: note: in expansion of macro 'curl_easy_setopt' 310 | curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0); | ^~~~~~~~~~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/lpass.c: In function 'help': /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/lpass.c:88:37: error: implicit declaration of function 'basename' [-Wimplicit-function-declaration] 88 | printf(" %s %s\n", basename(ARGV[0]), commands[i].usage); | ^~~~~~~~ /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/lpass.c:88:28: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'int' [-Wformat=] 88 | printf(" %s %s\n", basename(ARGV[0]), commands[i].usage); | ~^ ~~~~~~~~~~~~~~~~~ | | | | char * int | %d --- CMakeFiles/lpass.dir/lpass.c.o --- *** [CMakeFiles/lpass.dir/lpass.c.o] Error code 1 bmake[2]: stopped making "CMakeFiles/lpass.dir/build" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build [ 79%] Building C object CMakeFiles/lpass.dir/notes.c.o bmake[2]: 1 error bmake[2]: stopped making "CMakeFiles/lpass.dir/build" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build --- CMakeFiles/lpass.dir/all --- *** [CMakeFiles/lpass.dir/all] Error code 2 bmake[1]: stopped making "all" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build bmake[1]: 1 error bmake[1]: stopped making "all" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build *** [all] Error code 2 bmake: stopped making "all" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build bmake: 1 error bmake: stopped making "all" in /home/pbulk/build/security/lastpass-cli/work/lastpass-cli-1.6.1/cmake-pkgsrc-build *** Error code 2 Stop. bmake[1]: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/security/lastpass-cli *** Error code 1 Stop. bmake: stopped making "all" in /data/jenkins/workspace/pkgsrc-upstream-trunk/security/lastpass-cli