| "make update-unicode -j16" exit with 0. |
| "make update-download -j16" exit with 0. |
| "make update-rubyspec -j16" exit with 0. |
| "make update-src -j16" exit with 0. |
| From https://github.com/ruby/ruby |
| d284700..d2cd903 master -> origin/master |
| "make after-update -j16" exit with 0. |
| "make miniruby -j16" exit with 0. |
| "make ruby -j16" exit with 0. |
| "make all -j16" exit with 0. |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ec_key_new_from_group’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:74:9: warning: ‘EC_KEY_new’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 74 | if (!(ec = EC_KEY_new())) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:968:31: note: declared here |
| 968 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void); |
| | ^~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:77:9: warning: ‘EC_KEY_set_group’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 77 | if (!EC_KEY_set_group(ec, group)) { |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1042:27: note: declared here |
| 1042 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group); |
| | ^~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:78:13: warning: ‘EC_KEY_free’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 78 | EC_KEY_free(ec); |
| | ^~~~~~~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1003:28: note: declared here |
| 1003 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key); |
| | ^~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:87:9: warning: ‘EC_KEY_new_by_curve_name’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 87 | if (!(ec = EC_KEY_new_by_curve_name(nid))) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:998:31: note: declared here |
| 998 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new_by_curve_name(int nid); |
| | ^~~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:90:9: warning: ‘EC_KEY_set_asn1_flag’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 90 | EC_KEY_set_asn1_flag(ec, OPENSSL_EC_NAMED_CURVE); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1087:28: note: declared here |
| 1087 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_asn1_flag(EC_KEY *eckey, int asn1_flag); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:91:9: warning: ‘EC_KEY_set_conv_form’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 91 | EC_KEY_set_conv_form(ec, POINT_CONVERSION_UNCOMPRESSED); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1075:28: note: declared here |
| 1075 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_set_conv_form(EC_KEY *eckey, |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_s_generate’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:115:5: warning: ‘EVP_PKEY_assign’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 115 | if (!pkey || EVP_PKEY_assign_EC_KEY(pkey, ec) != 1) { |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1328:5: note: declared here |
| 1328 | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); |
| | ^~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:117:9: warning: ‘EC_KEY_free’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 117 | EC_KEY_free(ec); |
| | ^~~~~~~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1003:28: note: declared here |
| 1003 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key); |
| | ^~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:122:5: warning: ‘EC_KEY_generate_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 122 | if (!EC_KEY_generate_key(ec)) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1101:27: note: declared here |
| 1101 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_generate_key(EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_initialize’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:153:9: warning: ‘EC_KEY_new’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 153 | if (!(ec = EC_KEY_new())) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:968:31: note: declared here |
| 968 | OSSL_DEPRECATEDIN_3_0 EC_KEY *EC_KEY_new(void); |
| | ^~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:184:5: warning: ‘EVP_PKEY_assign’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 184 | if (!pkey || EVP_PKEY_assign_EC_KEY(pkey, ec) != 1) { |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1328:5: note: declared here |
| 1328 | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key); |
| | ^~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:186:9: warning: ‘EC_KEY_free’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 186 | EC_KEY_free(ec); |
| | ^~~~~~~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1003:28: note: declared here |
| 1003 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_free(EC_KEY *key); |
| | ^~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_get_group’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:233:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 233 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:234:5: warning: ‘EC_KEY_get0_group’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 234 | group = EC_KEY_get0_group(ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1034:39: note: declared here |
| 1034 | OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_get_private_key’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:278:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 278 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:279:5: warning: ‘EC_KEY_get0_private_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 279 | if ((bn = EC_KEY_get0_private_key(ec)) == NULL) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1048:37: note: declared here |
| 1048 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_get_public_key’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:329:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 329 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:330:5: warning: ‘EC_KEY_get0_public_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 330 | if ((point = EC_KEY_get0_public_key(ec)) == NULL) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1062:39: note: declared here |
| 1062 | OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:333:5: warning: ‘EC_KEY_get0_group’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 333 | return ec_point_new(point, EC_KEY_get0_group(ec)); |
| | ^~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1034:39: note: declared here |
| 1034 | OSSL_DEPRECATEDIN_3_0 const EC_GROUP *EC_KEY_get0_group(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_is_public’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:380:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 380 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:382:5: warning: ‘EC_KEY_get0_public_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 382 | return EC_KEY_get0_public_key(ec) ? Qtrue : Qfalse; |
| | ^~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1062:39: note: declared here |
| 1062 | OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_is_private’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:396:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 396 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:398:5: warning: ‘EC_KEY_get0_private_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 398 | return EC_KEY_get0_private_key(ec) ? Qtrue : Qfalse; |
| | ^~~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1048:37: note: declared here |
| 1048 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_export’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:416:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 416 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:417:5: warning: ‘EC_KEY_get0_public_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 417 | if (EC_KEY_get0_public_key(ec) == NULL) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1062:39: note: declared here |
| 1062 | OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:419:5: warning: ‘EC_KEY_get0_private_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 419 | if (EC_KEY_get0_private_key(ec)) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1048:37: note: declared here |
| 1048 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_to_der’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:436:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 436 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:437:5: warning: ‘EC_KEY_get0_public_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 437 | if (EC_KEY_get0_public_key(ec) == NULL) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1062:39: note: declared here |
| 1062 | OSSL_DEPRECATEDIN_3_0 const EC_POINT *EC_KEY_get0_public_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:439:5: warning: ‘EC_KEY_get0_private_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 439 | if (EC_KEY_get0_private_key(ec)) |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1048:37: note: declared here |
| 1048 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_key_check_key’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:489:5: warning: ‘EVP_PKEY_get0_EC_KEY’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 489 | GetEC(self, ec); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:29, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/evp.h:1372:25: note: declared here |
| 1372 | const struct ec_key_st *EVP_PKEY_get0_EC_KEY(const EVP_PKEY *pkey); |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:494:5: warning: ‘EC_KEY_get0_private_key’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 494 | if (EC_KEY_get0_private_key(ec) != NULL) { |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:1048:37: note: declared here |
| 1048 | OSSL_DEPRECATEDIN_3_0 const BIGNUM *EC_KEY_get0_private_key(const EC_KEY *key); |
| | ^~~~~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_group_initialize’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:589:13: warning: ‘PEM_read_bio_ECPKParameters’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 589 | group = PEM_read_bio_ECPKParameters(in, NULL, NULL, NULL); |
| | ^~~~~ |
| In file included from /usr/include/openssl/ssl.h:36, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/pem.h:461:1: note: declared here |
| 461 | DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, ECPKParameters, EC_GROUP) |
| | ^~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_group_to_string’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:1036:9: warning: ‘PEM_write_bio_ECPKParameters’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 1036 | i = PEM_write_bio_ECPKParameters(out, group); |
| | ^ |
| In file included from /usr/include/openssl/ssl.h:36, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/pem.h:461:1: note: declared here |
| 461 | DECLARE_PEM_rw_attr(OSSL_DEPRECATEDIN_3_0, ECPKParameters, EC_GROUP) |
| | ^~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_group_to_text’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:1094:5: warning: ‘ECPKParameters_print’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 1094 | if (!ECPKParameters_print(out, group, 0)) { |
| | ^~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:926:27: note: declared here |
| 926 | OSSL_DEPRECATEDIN_3_0 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, |
| | ^~~~~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: In function ‘ossl_ec_point_initialize’: |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:1181:13: warning: ‘EC_POINT_bn2point’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations] |
| 1181 | point = EC_POINT_bn2point(group, GetBNPtr(arg2), NULL, ossl_bn_ctx); |
| | ^~~~~ |
| In file included from /usr/include/openssl/x509.h:33, |
| from /usr/include/openssl/x509v3.h:25, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl.h:24, |
| from /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c:5: |
| /usr/include/openssl/ec.h:774:33: note: declared here |
| 774 | OSSL_DEPRECATEDIN_3_0 EC_POINT *EC_POINT_bn2point(const EC_GROUP *, |
| | ^~~~~~~~~~~~~~~~~ |
| /tmp/ruby/src/trunk/ext/openssl/ossl_pkey_ec.c: At top level: |
| cc1: note: unrecognized command-line option ‘-Wno-self-assign’ may have been intended to silence earlier diagnostics |
| cc1: note: unrecognized command-line option ‘-Wno-parentheses-equality’ may have been intended to silence earlier diagnostics |
| cc1: note: unrecognized command-line option ‘-Wno-constant-logical-operand’ may have been intended to silence earlier diagnostics |
| "make install -j16" exit with 0. |
| "make yes-btest TESTOPTS='-q -j16'" exit with 0. |
| |
| "make yes-test-basic TESTS='-j16'" exit with 0. |
| "make yes-test-all TESTOPTS='--stderr-on-failure' TESTS='-j16'" exit with 0. |
| /tmp/ruby/src/trunk/lib/yaml.rb:20: warning: already initialized constant YAML |
| /tmp/ruby/src/trunk/lib/rubygems/specification.rb:1308: warning: previous definition of YAML was here |
| "make yes-test-rubyspec TESTS='-j16'" exit with 0. |
| $ /tmp/ruby/build/trunk/miniruby -I/tmp/ruby/src/trunk/lib /tmp/ruby/src/trunk/tool/runruby.rb --archdir=/tmp/ruby/build/trunk --extout=.ext -- /tmp/ruby/src/trunk/spec/mspec/bin/mspec-run -B /tmp/ruby/src/trunk/spec/default.mspec |