Re: Help! Upgrade broke -M

2019-04-25 Thread ToddAndMargo via perl6-users

On 4/23/19 7:27 PM, ToddAndMargo via perl6-users wrote:

Hi All,

Okay, I am, in trouble.  I just upgraded from
     rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
to
     rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
and now I bomb on all my "use lib's".

Virtually everything I have written bombs.


     $ ls CurlUtils*
     CurlUtils.pm6

    $ perl6 -M./CurlUtils -e 'say "x";'
    ===SORRY!===
    Could not find ./CurlUtils at line 1 in:
   inst#/home/tony/.perl6
   inst#/opt/rakudo-pkg/share/perl6/site
   inst#/opt/rakudo-pkg/share/perl6/vendor
   inst#/opt/rakudo-pkg/share/perl6
   ap#
   nqp#
   perl5#

    $ GetUpdates.pl6
    ===SORRY!===
    Could not find CurlUtils at line 6 in:
    file#/home/linuxutil
    inst#/home/tony/.perl6
    inst#/opt/rakudo-pkg/share/perl6/site
    inst#/opt/rakudo-pkg/share/perl6/vendor
    inst#/opt/rakudo-pkg/share/perl6
    ap#
    nqp#
    perl5#

5: use lib '/home/linuxutil';
6: use CurlUtils;


And it is not just CurlUtils.pm6.  It is every pm6 I
have in /home/linuxutil

-T


Ugexe figured it out for me on the chat line.

 Erase or rename `META6.json` from /home/linuxutil

I was in a bit of a panic!


Help! Upgrade broke -M

2019-04-23 Thread ToddAndMargo via perl6-users

Hi All,

Okay, I am, in trouble.  I just upgraded from
rakudo-pkg-Fedora29-2018.11-01.x86_64.rpm
to
rakudo-pkg-Fedora29-2019.03.1-01.x86_64.rpm
and now I bomb on all my "use lib's".

Virtually everything I have written bombs.


$ ls CurlUtils*
CurlUtils.pm6

   $ perl6 -M./CurlUtils -e 'say "x";'
   ===SORRY!===
   Could not find ./CurlUtils at line 1 in:
  inst#/home/tony/.perl6
  inst#/opt/rakudo-pkg/share/perl6/site
  inst#/opt/rakudo-pkg/share/perl6/vendor
  inst#/opt/rakudo-pkg/share/perl6
  ap#
  nqp#
  perl5#

   $ GetUpdates.pl6
   ===SORRY!===
   Could not find CurlUtils at line 6 in:
   file#/home/linuxutil
   inst#/home/tony/.perl6
   inst#/opt/rakudo-pkg/share/perl6/site
   inst#/opt/rakudo-pkg/share/perl6/vendor
   inst#/opt/rakudo-pkg/share/perl6
   ap#
   nqp#
   perl5#

5: use lib '/home/linuxutil';
6: use CurlUtils;


And it is not just CurlUtils.pm6.  It is every pm6 I
have in /home/linuxutil

-T