[perl #66560] #line directives in src/pmc confuse Sun's compiler.

2009-07-24 Thread Patrick R. Michaud via RT
On Fri Jun 12 13:42:59 2009, doughera wrote: > Trying a build with the rakudo "ins" branch today on OpenSolaris/x86 >with > Sun's compiler, I hit the following error: > > [...] > "./src/pmc/p6invocation.pmc", line 22: cannot find include file: >"pmc_perl6multisub.h" > cc: acomp failed for

[perl #66574] [BUG] inc branch: make perl6 fails, parrot-includes aren't passed to $(CC)

2009-07-24 Thread Patrick R. Michaud via RT
On Sat Jun 13 19:07:16 2009, ing...@exherbo.org wrote: > This is using Rakudo's inc branch, building against parrot trunk, >r39541. > > Seems to work fine up until it tries to build the perl6 executable. > When building the perl6 executable, $(CINCLUDES) isn't passed to the >compiler, > as

[perl #66558] Re: $(LD_OUT) can't have a space after it for MS linking.

2009-07-24 Thread Patrick R. Michaud via RT
On Fri Jun 12 11:36:31 2009, doughera wrote: > In the 'ins' branch, build/Makefile.in looks like it's heading down the > same wrong road as parrot. See parrot's TT #700 for more details and a > patch for parrot. I'd suggest a similar approach for rakudo. > > The problem is that while MS forbid

[perl #63724] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names_and_variables/perl.t commit 7a029f8dfbb76deae6424164fc8e500b14879ee2 Author: kyle Date: Fri Jul 24 21:22:30 2009 + [t/spec] Test for RT #63724 git-svn-id: http://svn.pugscod

[perl #67852] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S03-operators/bit.t commit 8579d5842f0fa3907dc40cf7f9747019fdf4670c Author: kyle Date: Fri Jul 24 20:19:49 2009 + [t/spec] Test for RT #67852 git-svn-id: http://svn.pugscode.org/p...@

[perl #67886] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S03-junctions/misc.t commit 91c983863551730385716aa7a62ac728b4c02c39 Author: kyle Date: Fri Jul 24 19:49:30 2009 + [t/spec] label the tests for RT #67886 git-svn-id: http://svn.pugsco

[perl #67864] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S05-match/blocks.t commit 2f97978bac871ca9d2669c4b1050ac4a8b0c523d Author: moritz Date: Fri Jul 24 19:38:30 2009 + [t/spec] test for RT #67864 git-svn-id: http://svn.pugscode.org/p...

[perl #67866] [BUG] Error with stringifying .WHAT on any junctions

2009-07-24 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #67866] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67866 > 19:37 rakudo: say any("foo","bar").WHAT 19:37 rakudo dd5767: OUTPUT«Null PMC ac

[perl #63686] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S03-junctions/misc.t commit dcde0ac24640877f0b8ff37a22ffef553283bbad Author: kyle Date: Fri Jul 24 19:38:28 2009 + [t/spec] (perhaps incomplete) test for RT #63686 git-svn-id: http://

[perl #63646] tests available

2009-07-24 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names_and_variables/names.t commit 438559f312bb2e4c1db0fa8c5db5fac505f271e4 Author: kyle Date: Fri Jul 24 16:52:53 2009 + [t/spec] Test for RT #63646 git-svn-id: http://svn.pugsco

[perl #67852] [BUG] The string-oriented bitwise ops generate Parrot strings (instead of Rakudo strings) in Rakudo

2009-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67852] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67852 > rakudo: say ('r' ~& 's').PARROT rakudo e989e6: OUTPUT«String␤» rakudo: say 's'.PARROT

[perl #67848] [BUG] optional param and named flattened argument with nothing to receive it blows up in Rakudo

2009-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67848] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67848 > rakudo: my $code = {"Foo"}; my %h = :bar; $code(| %h); rakudo e989e6: OUTPUT«FixedInte

r27701 - docs/Perl6/Spec

2009-07-24 Thread pugs-commits
Author: masak Date: 2009-07-24 16:28:42 +0200 (Fri, 24 Jul 2009) New Revision: 27701 Modified: docs/Perl6/Spec/S06-routines.pod Log: [S06] fixed some spelling and consistency stuff Modified: docs/Perl6/Spec/S06-routines.pod === --

r27700 - docs/Perl6/Spec/S32-setting-library

2009-07-24 Thread pugs-commits
Author: hinrik Date: 2009-07-24 16:24:11 +0200 (Fri, 24 Jul 2009) New Revision: 27700 Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod Log: [S32/Containers] Fix =item line for C Modified: docs/Perl6/Spec/S32-setting-library/Containers.pod ===

[perl #67846] [BUG] Less than awesome error message on passing :$!foo-type pairs to subs in Rakudo

2009-07-24 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67846] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67846 > rakudo: sub foo(:$bar) { say $bar }; class A { has $.bar; method baz() { foo(:$.bar) }

r27697 - docs/Perl6/Spec

2009-07-24 Thread pugs-commits
Author: wollmers Date: 2009-07-24 12:41:42 +0200 (Fri, 24 Jul 2009) New Revision: 27697 Modified: docs/Perl6/Spec/S28-special-names.pod Log: added unicode variables Modified: docs/Perl6/Spec/S28-special-names.pod === --- docs/Perl