Hi guys,
I've setup my own server with Perl 5.22.1, and I'm having issues installing a Perl module (
Kavorka, which is an annoying requirement of
Net::Stripe). After some digging, it seems to be around this :
PERL_DL_NONLAZY=1 "/usr/bin/perl" "-MExtUtils::Command::MM" "-MTest::H
+arness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/l
+ib', 'blib/arch')" t/*.t
t/01basic.t .................... ok
t/02named-functions.t .......... Can't locate object method "_set_decl
+ared_name" via package "Kavorka::Sub::Fun" at /root/.cpan/build/Kavor
+ka-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 182.
t/02named-functions.t .......... Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/03anon-functions.t ........... Can't locate object method "declared_
+name" via package "Kavorka::Sub::Fun" at /root/.cpan/build/Kavorka-0.
+037-RoeMIW/blib/lib/Kavorka/Sub.pm line 48.
t/03anon-functions.t ........... Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/04named-methods.t ............ Can't locate object method "_set_decl
+ared_name" via package "Kavorka::Sub::Method" at /root/.cpan/build/Ka
+vorka-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 182.
t/04named-methods.t ............ Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/05anon-methods.t ............. Can't locate object method "declared_
+name" via package "Kavorka::Sub::Method" at /root/.cpan/build/Kavorka
+-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 48.
t/05anon-methods.t ............. Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/10positional.t ............... Can't locate object method "_set_decl
+ared_name" via package "Kavorka::Sub::Fun" at /root/.cpan/build/Kavor
+ka-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 182.
t/10positional.t ............... Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/11named.t .................... Can't locate object method "_set_decl
+ared_name" via package "Kavorka::Sub::Fun" at /root/.cpan/build/Kavor
+ka-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 182.
t/11named.t .................... Dubious, test returned 255 (wstat 652
+80, 0xff00)
No subtests run
t/12invocant.t ................. Can't locate object method "_set_decl
+ared_name" via package "Kavorka::Sub::Method" at /root/.cpan/build/Ka
+vorka-0.037-RoeMIW/blib/lib/Kavorka/Sub.pm line 182.
t/12invocant.t ................. Dubious, test returned 255 (wstat 652
+80, 0xff00)
...etc
I found a report of a bug in Devel::CallParser:
https://rt.cpan.org/Public/Bug/Display.html?id=110623
I made the change the suggest in the patch for CallParser.xs in the .gz file, but I can't work out what this file is meant to be:
t/pad2.t
(I don't see it in the .gz from CPAN)
Can anyone point me? Its sooooo frustrating that ALL of my issues are resting on this one bug, that after over a year still doesn't seem to have been fixed in the official releas :/
Thanks!
Andy