I installed the 2015.02 version of Perl 6 (Rakudo Star) by following these instructions on the perl6.org site:
<quote> To install Rakudo and Panda using rakudobrew: rakudobrew build moar rakudobrew build-panda Finally, install Task::Star. This will install all the modules that are shipped with the Rakudo Star Perl 6 distribution: panda install Task::Star </quote> Since I saw no words regarding installation of a new version I blindly repeated the instructions above, and I see my perl6 is indeed updated to 2015.03. However, I got this error message during the last step (panda install task::Star) for the last module (LWP::Simple): <quote> ==> Fetching LWP::Simple ==> Building LWP::Simple Compiling lib/LWP/Simple.pm to mbc ==> Testing LWP::Simple t/000-load-module.t ............. ok t/basic-auth.t .................. ok t/custom-headers-and-content.t .. ok t/get-binary-camelia.t .......... ok t/get-chunked-6guts.t ........... ok t/get-perl6-org.t ............... ok t/get-unsized.t ................. ok t/get-w3-latin1-utf8.t .......... ok t/get-w3-redirect.t ............. ok t/getstore.t .................... ok t/parse-url.t ................... ok Failed to connect: connection timed out in method initialize at src/gen/m-CORE.setting:24980 in method new at src/gen/m-CORE.setting:24964 in block <unit> at t/socket-sanity.t:6 t/socket-sanity.t ............... Dubious, test returned 255 (wstat 65280, 0xff00) Failed 2/2 subtests t/stringify-headers.t ........... ok Test Summary Report ------------------- t/socket-sanity.t (Wstat: 65280 Tests: 0 Failed: 0) Non-zero exit status: 255 Parse errors: Bad plan. You planned 2 tests but ran 0. Files=13, Tests=53, 79 wallclock secs ( 0.05 usr 0.02 sys + 10.71 cusr 0.95 csys = 11.73 CPU) Result: FAIL test stage failed for LWP::Simple: Tests failed in method install at lib/Panda.pm:125 in block at lib/Panda.pm:1 in method resolve at lib/Panda.pm:185 in sub MAIN at /home/tbrowde/.rakudobrew/bin/../moar-nom/install/languages/perl6/site/bin/panda:20 in sub MAIN at /home/tbrowde/.rakudobrew/bin/../moar-nom/install/languages/perl6/site/bin/panda:18 in block <unit> at /home/tbrowde/.rakudobrew/bin/../moar-nom/install/languages/perl6/site/bin/panda:77 Failure Summary ---------------- Task::Star *test stage failed for LWP::Simple: Tests failed </quote> Questions: 1. Is there a better or proper way to upgrade to a new Rakudo Star release? 2. Is the failure of LWP::Simple a bug or just some weird misconfiguration on my system? Thanks. Cheers! -Tom