Build Rakudo with Distutils

2010-03-26 Thread François Perrad
Find attached a script 'setup.nqp' for building/testing Rakudo. The library 'disutils' is shipped with Parrot. See https://trac.parrot.org/parrot/browser/trunk/runtime/parrot/library/distutils.pir This library removes the dependences with Makefile & various make utilities, and remove the configu

[perl #73836] [BUG] Cannot do infix: on two item operands in Rakudo

2010-03-26 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #73836] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73836 > rakudo: say 2 Z 3 rakudo db0f85: OUTPUT«No applicable candidates found to dispatch to

Re: [perl #73818] Test::is flattens arguments

2010-03-26 Thread Mark J. Reed
Yes, I found that after I submitted the bug. I still find it surprising that differently-nested structures stringify to the same thing, and the names seem a bit misleading, since stringification is still "deep" (it has to recurse into the structure to pull out all the leaves). I'm wondering if th

[perl #73816] Zip flattens result

2010-03-26 Thread Mark J. Reed
# New Ticket Created by "Mark J. Reed" # Please include the string: [perl #73816] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73816 > > my @a = (1,2) Z (3,4); say @a.perl [1, 3, 2, 4] Per S03, that should be [[1,3],[2,4

[perl #73818] Test::is flattens arguments

2010-03-26 Thread Mark J. Reed
# New Ticket Created by "Mark J. Reed" # Please include the string: [perl #73818] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73818 > This test currently passes: is [1,2,3,4], [[1,2],[3,4]] and I'm thinking it probably

[perl #73808] Providing a list of attributes to a single 'has' leads to IMCC syntax errors

2010-03-26 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #73808] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73808 > ./perl6 -e 'class A { has ($!a, $!b) }' error:imcc:syntax error, unexpected ')' (')')

[perl #73806] if() not parsed as sub call; should do, and emit a warning

2010-03-26 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #73806] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73806 > 10:15 <@moritz_> rakudo: my @b= 5, 1, 2; if(@b>2) {say 'yes';} 10:15 <+p6eval> rakudo db0