[perl #127342] LTA error message talks about BOOTSTRAPATTR (say Int.^attributes)

2016-01-21 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127342] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127342 > Code: say Int.^attributes Result: Method 'gist' not found for invocant of class 'BOOTS

Re: is there a Perl 5 converter?

2016-01-21 Thread Tom Browder
On Thu, Jan 21, 2016 at 1:39 PM, Aaron Baugher wrote: > Tom Browder writes: > >> Thanks, Aaron, good explanation. But can you find a description of >> '<->' in the Perl 6 docs? > > It's mentioned here: https://doc.perl6.org/language/control#for ... > I don't know if it's actually an operator, wh

[perl #127341] LTA error message mentions $!tai ( Duration.new(∞) )

2016-01-21 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127341] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127341 > Code: my $x = Duration.new(∞) Result: Type check failed in assignment to $!tai; expect

[perl #127308] Configure.pl with moar fails to find C compiler on older Darwin

2016-01-21 Thread Tobias Leich via RT
Does that mean that we *always always always* have a gcc binary?

Re: [perl #127308] Configure.pl with moar fails to find C compiler on older Darwin

2016-01-21 Thread Brandon Allbery
On Thu, Jan 21, 2016 at 2:29 PM, Tobias Leich via RT < perl6-bugs-follo...@perl.org> wrote: > Can't we do something like this[^1] on darwin also? > > [^1] https://github.com/MoarVM/MoarVM/blob/master/build/setup.pm#L445 > > Like, checking for the existance of clang, and falling back to gcc? > gcc

Re: is there a Perl 5 converter?

2016-01-21 Thread Patrick R. Michaud
On Thu, Jan 21, 2016 at 01:39:15PM -0600, Aaron Baugher wrote: > Tom Browder writes: > > > Thanks, Aaron, good explanation. But can you find a description of > > '<->' in the Perl 6 docs? > > It's mentioned here: https://doc.perl6.org/language/control#for > > And here, where it's called the "d

Re: is there a Perl 5 converter?

2016-01-21 Thread Aaron Baugher
Tom Browder writes: > Thanks, Aaron, good explanation. But can you find a description of > '<->' in the Perl 6 docs? It's mentioned here: https://doc.perl6.org/language/control#for And here, where it's called the "double-ended arrow", though I don't know how official that name is: https://desi

[perl #127308] Configure.pl with moar fails to find C compiler on older Darwin

2016-01-21 Thread Tobias Leich via RT
Can't we do something like this[^1] on darwin also? [^1] https://github.com/MoarVM/MoarVM/blob/master/build/setup.pm#L445 Like, checking for the existance of clang, and falling back to gcc?

Re: is there a Perl 5 converter?

2016-01-21 Thread Tom Browder
On Thu, Jan 21, 2016 at 12:00 PM, Aaron Baugher wrote: > Tom Browder writes: ... >> For the example Perl 5 input I like the Blue_Tiger translation, except >> I haven't so far found an description of the '<->' operator. Why >> would Blue_Tiger prefer it to the '->' operator which I've seen in all

Re: is there a Perl 5 converter?

2016-01-21 Thread Aaron Baugher
Tom Browder writes: > Perl 5 source > == >> my @aaa = qw( a b c d e f g ); >> for my $c (@aaa) { > > Perl::ToPerl6 > = >> my @aaa = qw ( a b c d e f g ); >> for (@aaa) -> $c { > > Blue_Tiger > >> my @aaa = < a b c d e f g >; >> for @aaa <-> $c { > > For the example Perl 5

Re: [perl #127340] no line number on error

2016-01-21 Thread mt1957
On 01/21/2016 06:35 PM, mt1957 (via RT) wrote: # New Ticket Created by mt1957 # Please include the string: [perl #127340] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127340 > L.s. Got this error; Internal error: zeroed ta

[perl #127340] no line number on error

2016-01-21 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #127340] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127340 > L.s. Got this error; Internal error: zeroed target thread ID in work pass I really don't kno

Re: is there a Perl 5 converter?

2016-01-21 Thread Tom Browder
On Thursday, January 21, 2016, Bruce Gray wrote: > On Jan 21, 2016, at 2:36 AM, Steve Mynott wrote: > > On 21 January 2016 at 01:40, Darren Duncan wrote: > >> On 2016-01-20 5:02 PM, ToddAndMargo wrote: > > There are at least two source code translators in progress: > > http://search.cpan.org/dis

Re: [perl #127308] Configure.pl with moar fails to find C compiler on older Darwin

2016-01-21 Thread Steve Mynott via RT
My guess is that the PPC version of OS X probably still has the real GCC as its compiler rather than clang as on more modern systems. You could try looking for the config line which contains the definiton of clang for OS X/darwin and changing it to gcc or if you are using rakudobrew maybe somethin

Re: [perl #127308] Configure.pl with moar fails to find C compiler on older Darwin

2016-01-21 Thread Brandon Allbery via RT
On Wed, Jan 20, 2016 at 11:37 AM, Steve Mynott wrote: > My guess is that the PPC version of OS X probably still has the real > GCC as its compiler rather than clang as on more modern systems. > This will also be true of Intel-based Macs with Xcode 3.x or earlier (roughly OS X 10.6 and earlier).

Re: is there a Perl 5 converter?

2016-01-21 Thread Bruce Gray
On Jan 21, 2016, at 2:36 AM, Steve Mynott wrote: > On 21 January 2016 at 01:40, Darren Duncan wrote: >> On 2016-01-20 5:02 PM, ToddAndMargo wrote: >>> >>> or is it all by hand? >> >> >> If you mean a source code translator, I don't know of one right now but I >> wouldn't be surprised if one

[perl #127339] problem using Duration

2016-01-21 Thread via RT
# New Ticket Created by mt1957 # Please include the string: [perl #127339] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127339 > l.s. In REPL; > my Duration $d .= new(10); 10 > $d += 1000 1010 > $d -= 900 110 > $d *= 2

Re: [perl #127330] [SLOW] 10_000 lines with 「say ‘a’;」 take 16 seconds to run

2016-01-21 Thread Elizabeth Mattijsen
> On 21 Jan 2016, at 00:42, Alex Jakimenko (via RT) > wrote: > > # New Ticket Created by Alex Jakimenko > # Please include the string: [perl #127330] > # in the subject line of all future correspondence about this issue. > # https://rt.perl.org/Ticket/Display.html?id=127330 > > > > Create

Re: is there a Perl 5 converter?

2016-01-21 Thread Steve Mynott
On 21 January 2016 at 01:40, Darren Duncan wrote: > On 2016-01-20 5:02 PM, ToddAndMargo wrote: >> >> or is it all by hand? > > > If you mean a source code translator, I don't know of one right now but I > wouldn't be surprised if one exists, that at least handles a common subset > of Perl 5 code.