Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/3/19 3:15 PM, ToddAndMargo via perl6-users wrote: Hi All, Help! I just upgraded Fedora from 30 to 31. I upgraded to rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm from https://github.com/nxadm/rakudo-pkg/releases Now P6 can not find my subs inside my modules: # perl6

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 2:28 AM, Tom Browder wrote: One thing I noticed, you are missing a line at the top of your modules that should read something like "unit module MyModule;", and the export(:some-key) is okay. Hi Tom, I had thought all my moduels used "unit module MyModule;", but into everyone life

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 6:45 AM, Tom Browder wrote: If you have much more trouble, I would file a bug with the FC folks. That is in the works. I am wait from some good ammunition from the git folks.

Re: env?

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 8:40 AM, Andy Bach wrote: At the top of all my Perl 6 programs, I place #!/usr/bin/env perl6 So I decided to run env by itself and see what I got: $ /usr/bin/env perl6 You may want to `zef install Readline` or `zef install Linenoise` or use rlwrap for a line

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 6:45 AM, Tom Browder wrote: In the future, with paying customers, I would some careful testing before upgrading the OS. It has sure bitten me in the past! Hi Tom, I never do. This computer is a mock up of their configuration. It does to get released to then until it works here.

Re: env?

2019-11-04 Thread Andy Bach
> At the top of all my Perl 6 programs, I place > #!/usr/bin/env perl6 > > So I decided to run env by itself and see what I got: > > $ /usr/bin/env perl6 > You may want to `zef install Readline` or `zef install > Linenoise` or use rlwrap for a line editor > > To exit

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 7:40 AM ToddAndMargo via perl6-users wrote: ... > I really think this is a Fedora 31 issue and not a Perl issue. > And really want to keep my rpm database intact. Ok, then please deal with @nxdm on the issue you filed. Using the git interface is best I believe. If you

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 5:19 AM, Tom Browder wrote: On Mon, Nov 4, 2019 at 6:59 AM Tom Browder wrote: I'm using almost latest master: $ ./perl6-m -v This is Rakudo version 2019.07-447-gc745d6b10 built on MoarVM version 2019.07.1-309-g48491b896 implementing Perl 6.d. And I can run our test sandbox with no

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 6:59 AM Tom Browder wrote: I'm using almost latest master: $ ./perl6-m -v This is Rakudo version 2019.07-447-gc745d6b10 built on MoarVM version 2019.07.1-309-g48491b896 implementing Perl 6.d. And I can run our test sandbox with no problems--weird! Back to my system-wide

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 4:59 AM, Tom Browder wrote: On Mon, Nov 4, 2019 at 06:52 ToddAndMargo via perl6-users mailto:perl6-users@perl.org>> wrote: ... Okay, that's sounding more like an FC/package interface issue. I'm going to check my latest build of Rakudo against our little test sandbox and see what

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 06:52 ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: ... Okay, that's sounding more like an FC/package interface issue. I'm going to check my latest build of Rakudo against our little test sandbox and see what happens. In the meantime, why don't you try

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 04/11/2019 03:56, ToddAndMargo via perl6-users wrote: On 11/3/19 3:15 PM, ToddAndMargo via perl6-users wrote: Hi All, Help! I just upgraded Fedora from 30 to 31. I upgraded to rakudo-pkg-Fedora31-2019.07.1-03.x86_64.rpm from https://github.com/nxadm/rakudo-pkg/releases Now P6 can not

Re: FC31 can't find my module subs

2019-11-04 Thread Timo Paulssen
Todd, can you please double-check if putting a comma in between the :import-tags in the "use" statement makes a difference? Like this: # perl6 -I./p6lib -e 'use ModuleTest :ModuleTest, :ModuleTst; ModuleTest; ModuleTst; # correct' # perl6 -I./p6lib -e 'use ModuleTest :ModuleTest :ModuleTst;

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 4:47 AM, Tom Browder wrote: On Mon, Nov 4, 2019 at 06:25 ToddAndMargo via perl6-users mailto:perl6-users@perl.org>> wrote: ... Okay, now we're getting somewhere! That's just a warning, but it runs. I am running an older version of Perl 6 (Raku) than you, so I don't get the

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 06:25 ToddAndMargo via perl6-users < perl6-users@perl.org> wrote: ... Okay, now we're getting somewhere! That's just a warning, but it runs. I am running an older version of Perl 6 (Raku) than you, so I don't get the warning. For the next step, try two things: 1. Run

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 3:42 AM, Tom Browder wrote: On Mon, Nov 4, 2019 at 04:44 ToddAndMargo via perl6-users wrote: ... Todd, please don't be so careless in what you show us. It's difficult to zero in on your problem. Do me a favor and go to a clean, empty directory somewhere named 'mytest', and create

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 04:44 ToddAndMargo via perl6-users wrote: ... Todd, please don't be so careless in what you show us. It's difficult to zero in on your problem. Do me a favor and go to a clean, empty directory somewhere named 'mytest', and create EXACTLY what I describe here: + create a

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 2:28 AM, Tom Browder wrote: On Mon, Nov 4, 2019 at 02:25 JJ Merelo > wrote: El lun., 4 nov. 2019 a las 8:35, ToddAndMargo via perl6-users (mailto:perl6-users@perl.org>>) escribió: Problem still occurs with selinux disabled One thing I

Re: FC31 can't find my module subs

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/4/19 12:24 AM, JJ Merelo wrote: El lun., 4 nov. 2019 a las 8:35, ToddAndMargo via perl6-users (mailto:perl6-users@perl.org>>) escribió: Problem still occurs with selinux disabled selinux operates at a higher level. This is plain and simple not having the write bit set for your

Re: FC31 can't find my module subs

2019-11-04 Thread Tom Browder
On Mon, Nov 4, 2019 at 02:25 JJ Merelo wrote: > > > El lun., 4 nov. 2019 a las 8:35, ToddAndMargo via perl6-users (< > perl6-users@perl.org>) escribió: > >> >> Problem still occurs with selinux disabled > > One thing I noticed, you are missing a line at the top of your modules that should read

Re: FC31 can't find my module subs

2019-11-04 Thread JJ Merelo
El lun., 4 nov. 2019 a las 8:35, ToddAndMargo via perl6-users (< perl6-users@perl.org>) escribió: > > Problem still occurs with selinux disabled > > selinux operates at a higher level. This is plain and simple not having the write bit set for your particular user. Anyway, try this (as a regular

Re: FC31 can't find my module subs

2019-11-04 Thread JJ Merelo
El lun., 4 nov. 2019 a las 8:52, ToddAndMargo via perl6-users (< perl6-users@perl.org>) escribió: > On 11/3/19 11:31 PM, JJ Merelo wrote: > > Again, running stuff and installing it as root is never a good idea > > > Most of my programs are for system administration and I have > no choice but to

Re: env?

2019-11-04 Thread ToddAndMargo via perl6-users
On 11/3/19 10:25 PM, William Michels via perl6-users wrote: I've seen this message as well. I believe it's the default message you get when you start up the Perl6 (Raku) REPL, but don't have Readline or Linenoise installed (or your machine needs help knowing where to look). Maybe try 'echo