Adopt a module!

2016-02-02 Thread Tadeusz Sośnierz
My fellow Perl6ers, Some of you probably recognize my (nick)name, I've been around for quite a while. These days, however, as you inevitably noticed if you happened to submit a bug or a PR to one of my modules on github, I find myself with less and less tuits for Perl 6 stuff; most of what I w

[perl #127454] Parameter Bug

2016-02-02 Thread via RT
# New Ticket Created by # Please include the string: [perl #127454] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127454 > Hello, I think is a bug, and I think it's in Perl6. I was not able to find a work around for it in P

Re: Announce: Rakudo Perl 6 compiler, Release #95 (2016.01)

2016-02-02 Thread Will Coleda
FYI, there is now 2016.01.1 release; This has the addition of one patch that provides greater support for those trying to package a Rakudo Perl 6 installation. Regards. On Tue, Feb 2, 2016 at 12:06 AM, Will Coleda wrote: > On behalf of the Rakudo development team, I’m very happy to announce the

run "...", :out forgetting about the exit code?

2016-02-02 Thread Peter Pentchev
Hi, [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false"; say $p.exitcode;'1 [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false", :out; say $p.exitcode;' 0 [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false

Re: run "...", :out forgetting about the exit code?

2016-02-02 Thread Peter Pentchev
On Wed, Feb 03, 2016 at 01:37:18AM +0200, Peter Pentchev wrote: > Hi, > > [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false"; say > $p.exitcode;'1 > [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false", > :out; say $p.exitcode

Re: run "...", :out forgetting about the exit code?

2016-02-02 Thread Brandon Allbery
On Tue, Feb 2, 2016 at 6:37 PM, Peter Pentchev wrote: > So, uhm, what am I missing? Shouldn't $p.exitcode remain 1 no matter > whether > I've invoked run() with or without :out? Should I file a bug? > https://rt.perl.org/Ticket/Display.html?id=125757 -- brandon s allbery kf8nh

Re: run "...", :out forgetting about the exit code?

2016-02-02 Thread Peter Pentchev
On Wed, Feb 03, 2016 at 01:37:18AM +0200, Peter Pentchev wrote: > Hi, > > [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false"; say > $p.exitcode;'1 > [roam@straylight ~]$ perl6 -e 'use v6.c; use strict; my $p = run "false", > :out; say $p.exitcode

Re: run "...", :out forgetting about the exit code?

2016-02-02 Thread Peter Pentchev
On Tue, Feb 02, 2016 at 06:41:12PM -0500, Brandon Allbery wrote: > On Tue, Feb 2, 2016 at 6:37 PM, Peter Pentchev wrote: > > > So, uhm, what am I missing? Shouldn't $p.exitcode remain 1 no matter > > whether > > I've invoked run() with or without :out? Should I file a bug? > > > > https://rt.p

Failed to install latest Rakudo

2016-02-02 Thread Tom Browder
I entered: $ rakudobrew build moar 2016.01.1 and after a while I saw: Rakudo has been built and installed. Updating shims Done, moar-2016.01.1 built Then: $ perl6 -v This is Rakudo version 2015.12 built on MoarVM version 2015.12 implementing Perl 6.c. Am I doing something wrong? As far

Finding and fixing Perl 6 bugs

2016-02-02 Thread Tom Browder
This page: http://perl6.org/getting-started/involved references finding and fixing bugs but it doesn't point to further help. At the very least I believe there should be on that page a list of all the Perl 6 projects and what address to send bug reports to. Also a consolidated list of preferre

Re: Failed to install latest Rakudo

2016-02-02 Thread Peter Pentchev
On Tue, Feb 02, 2016 at 08:45:44PM -0600, Tom Browder wrote: > I entered: > > $ rakudobrew build moar 2016.01.1 > > and after a while I saw: > > > Rakudo has been built and installed. > Updating shims > Done, moar-2016.01.1 built > > > Then: > > $ perl6 -v > This is Rakudo version 2015.1

Re: Finding and fixing Perl 6 bugs

2016-02-02 Thread Peter Pentchev
On Tue, Feb 02, 2016 at 09:17:23PM -0600, Tom Browder wrote: > This page: > > http://perl6.org/getting-started/involved > > references finding and fixing bugs but it doesn't point to further help. > > At the very least I believe there should be on that page a list of all the > Perl 6 projects