Open sanssecours opened 6 years ago
Could you show us the output of the following command?
plenv install -l
Thank you for the quick reply. The command
plenv install --list
prints the following output on Travis:
Available versions:
599 Internal Exception, https://fastapi.metacpan.org/v1/release/_search, Can't verify SSL peers without knowing which Certificate Authorities to trust This problem can be fixed by either setting the PERL_LWP_SSL_CA_FILE envirionment variable or by installing the Mozilla::CA module. To disable verification of SSL peers set the PERL_LWP_SSL_VERIFY_HOSTNAME envirionment variable to 0. If you do this you can't be sure that you communicate with the expected peer.
. On my local machine it prints the following error message:
Available versions:
599 Internal Exception, https://fastapi.metacpan.org/v1/release/_search, Can't connect to fastapi.metacpan.org:443 LWP::Protocol::https::Socket: SSL connect attempt failed error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version at /Library/Perl/5.18/LWP/Protocol/http.pm line 47.
.
@sanssecours Thanks. The original issue is https://github.com/miyagawa/HTTP-Tinyish/issues/14
Oh, the second error (on your local machine) is different. It means your Net::SSLeay (openssl) does not support TLSv1.2.
miyagawa/HTTP-Tinyish#14 has been fixed. Please upgrade perl-build to https://github.com/tokuhirom/Perl-Build/commit/92222dbe92b0ad0c518a79d29109e5e2925cc3ca.
Thank you for the update. I installed the latest version of perl-build
via
brew install perl-build --HEAD
. Unfortunately Travis still reports the same problem.
Thank you for the update. I installed the latest version of
perl-build
viabrew install perl-build --HEAD
. Unfortunately Travis still reports the same problem.
I believe that perl-build should be a dependency of plenv for brew. This is the same behavior for "rbenv", it depends on "ruby-build".
I made a pull request to homebrew-core for plenv, adding this, and tested with great success...
I'm new to the tool and am looking to help is all.
👋 Hi,
thank you for providing this very useful tool 💖. The bug report below contains an issue I noticed about one week ago.
Steps to Reproduce the Problem
Expected Result
The last command should install the latest version of Perl.
Actual Result
The command prints the following error message:
. I created a repo that reproduces the problem here.