Re: Parrot build error/bug

2009-04-27 Thread chromatic
On Monday 27 April 2009 23:14:52 Michael wrote: > I'm running Fedora 11 (beta) on a Intel quad core CPU. > Below is the output of the "perl Configure.pl --gen-parrot" command: > Configuring Parrot ... > /usr/bin/perl Configure.pl > Can't locate Test

[perl #63908] ~$stuff.WHAT should end in ()

2009-04-27 Thread Patrick R. Michaud via RT
Now fixed in f5bbcad (and tests in t/spec updated to match). Thanks, Pm

Parrot build error/bug

2009-04-27 Thread Michael
For the Rakudo Perl 6 masters out there I downloaded the current build of Rakudo using git.(2/26/09) as per the Rakudo.org site. when I try to build it (using the instructions on the site) I get a error message that don't understand.(maybe missing a file) I can't wait to start learning Perl 6

Re: [Padre-dev] Padre Perl6 Outline view

2009-04-27 Thread Gabor Szabo
On Sun, Apr 26, 2009 at 12:14 AM, Ahmad Zawawi wrote: > Hi people, > > I just finished Perl6 Outline view which i promised Gabor 3 or 4 > months ago :) So you can now see Perl 6 > packages/modules/grammars/roles in parent nodes and under them you can > see methods/submethods/subroutines/rules/toke

r26511 - docs/Perl6/Spec

2009-04-27 Thread pugs-commits
Author: lwall Date: 2009-04-28 06:14:10 +0200 (Tue, 28 Apr 2009) New Revision: 26511 Modified: docs/Perl6/Spec/S03-operators.pod docs/Perl6/Spec/S12-objects.pod Log: [S12] doc syntax for exporting subset and enum [S12] enum uses (...) rather than [...], since <...> is defined as ()-like [S03

Re: [perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Will Coleda
On Mon, Apr 27, 2009 at 8:10 PM, Patrick R. Michaud via RT wrote: > I think this bug should now be fixed in 456ade5 -- it no longer > segfaults on the test program I'm giving it.  The problem appears to > have been that 'when' statements (and 'loop' and 'repeat') were failing > to create the impli

Re: [perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Patrick R. Michaud
On Mon, Apr 27, 2009 at 08:45:47PM -0400, Will Coleda wrote: > On Mon, Apr 27, 2009 at 8:10 PM, Patrick R. Michaud via RT > wrote: > > I think this bug should now be fixed in 456ade5 -- it no longer > > segfaults on the test program I'm giving it.   > [...] > > I'll assign the ticket to moritz++,

[perl #64208] Segfault when make()ing things in a when-block in grammar actions

2009-04-27 Thread Patrick R. Michaud via RT
I think this bug should now be fixed in 456ade5 -- it no longer segfaults on the test program I'm giving it. The problem appears to have been that 'when' statements (and 'loop' and 'repeat') were failing to create the implicit $/ lexical var (as well as $_ and $!), and thus the 'make' function wou

[perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud via RT
Now fixed in f93154a. We need to verify there's a spectest for this particular problem. We should also add spectests to make sure that matches underscores. Assigning to moritz++ for test updates. Thanks! Pm

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Will Coleda
On Mon, Apr 27, 2009 at 12:26 PM, Patrick R. Michaud wrote: > > Answered on #perl6: >    16:14 pmichaud: _ is considered an alpha > > So, we need to patch PGE so that matches underscore, and > we need some tests to match. > > Pm > Created TT #585 for parrot to track this issue. -- Will "Coke"

oops, server problem

2009-04-27 Thread yary
Looks like the failed tests are due to a problem uploading the reports, not with anything inside Parrot itself. I'll see if I can figure out who can fix that.

Parrot's failing smoke tests

2009-04-27 Thread yary
Hello all, looks like Parrot's been failing some automated smoke tests for the last couple days. Here are links to the last passing reports: http://buildbot.eigenstate.net:8040/fc6-x86_64-trunk/builds/1451 http://buildbot.eigenstate.net:8040/OpenBSD-trunk-builder/builds/150 and the first failing

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud
On Mon, Apr 27, 2009 at 08:31:38AM -0500, Patrick R. Michaud wrote: > On Sat, Apr 25, 2009 at 04:33:44PM -0700, Geoffrey Broadwell wrote: > > Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine. > > [...] > > $ ./perl6 -e 'module Foo { sub _foo { say "foo" } }; Foo::_foo()' > >

Re: [perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread jerry gay
On Mon, Apr 27, 2009 at 08:02, Patrick R. Michaud wrote: > On Sun, Apr 26, 2009 at 07:04:28AM -0700, webmas...@cosmicperl.com via RT > wrote: >> Infinoid helped me track the problem down to * being escaped on some of >> the directories for the cleanup. So things like:- >> $(PMC_DIR)\*.h >> Need t

Re: [perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread Patrick R. Michaud
On Sun, Apr 26, 2009 at 07:04:28AM -0700, webmas...@cosmicperl.com via RT wrote: > Infinoid helped me track the problem down to * being escaped on some of > the directories for the cleanup. So things like:- > $(PMC_DIR)\*.h > Need to be:- > $(PMC_DIR)\\*.h > > Parrot already does this in it's make

Re: [perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread Patrick R. Michaud
On Sat, Apr 25, 2009 at 04:33:44PM -0700, Geoffrey Broadwell wrote: > Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine. > [...] > $ ./perl6 -e 'module Foo { sub _foo { say "foo" } }; Foo::_foo()' > Statement not terminated properly at line 1, near "_foo()" While the patch ap

Parrot Bug Summary

2009-04-27 Thread Parrot Bug Summary
Parrot Bug Summary http://rt.perl.org/rt3/NoAuth/parrot/Overview.html Generated at Mon Apr 27 13:00:01 2009 GMT --- * Numbers * New Issues * Overview of Open Issues * Ticket Status By Version * Requestors with m

[perl #65006] mingw32-make realclean doesn't clean everything

2009-04-27 Thread webmas...@cosmicperl.com via RT
Infinoid helped me track the problem down to * being escaped on some of the directories for the cleanup. So things like:- $(PMC_DIR)\*.h Need to be:- $(PMC_DIR)\\*.h Parrot already does this in it's makefile on Win32 so doesn't have this issue. I've attached a patch that fixes things. Lyle 000

[perl #65146] [PATCH] fixed typo

2009-04-27 Thread Tokuhiro Matsuno
# New Ticket Created by "Tokuhiro Matsuno" # Please include the string: [perl #65146] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65146 > --- README |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --gi

[perl #65164] [TODO] Implement [^^]

2009-04-27 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65164] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65164 > rakudo: say 1 ^^ 1 rakudo c4f676: OUTPUT«␤» rakudo: say 1 ^^ 1 ^^ 1 rakudo c4f676: O

[perl #65128] Cannot return empty typed List

2009-04-27 Thread Brian S. Julin
# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #65128] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65128 > The following work as expected: my Num List sub f () { return ("A") }; my Num List

Re: How to use the sockets?

2009-04-27 Thread Carl Mäsak
Moritz (>): > I've gathered that Rakudo now implements sockets, and I wanted to do > some basic data shuffling for testing purposes. Could anybody point me > to a really simple, working example? > > I tried to cargo-cult it from Web.pm > (

[perl #60176] Rakudo fails on defining classes with core roles

2009-04-27 Thread Carl Mäsak via RT
On Tue Nov 04 09:05:10 2008, jn...@jnthn.net wrote: > On Mon Oct 27 10:55:52 2008, masak wrote: > > Rakudo r32151 can't create classes with roles from the Rakudo-defined > > classes. > > > > $ ./perl6 -e 'role B {}; class A does B {}' # this works > > > > $ perl6 -e 'class A does Int {}' # this d

How to use the sockets?

2009-04-27 Thread Moritz Lenz
Hi, I've gathered that Rakudo now implements sockets, and I wanted to do some basic data shuffling for testing purposes. Could anybody point me to a really simple, working example? I tried to cargo-cult it from Web.pm (

[perl #65138] [PATCH] Foo::_foo() parsefails

2009-04-27 Thread via RT
# New Ticket Created by Geoffrey Broadwell # Please include the string: [perl #65138] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65138 > Rakudo doesn't parse Foo::_foo() properly, while Foo::foo() works fine. Before pa

[perl #65132] Rakudo still parses 'int time', STD.pm doesn't

2009-04-27 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65132] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65132 > std: int time std 26432: OUTPUT«# PARSE FAILED #␤Syntax error (two terms in a

.to_charnames() and .from_charnames()

2009-04-27 Thread Helmut Wollmersdorfer
IMHO something like the Perl 5 charnames::viacode(ord($char)); charnames::vianame($charname); is needed in Perl 6. Use cases: - test - diagnosis - manipulation on charname-level (e.g. get base character of LATIN CAPITAL LETTER L WITH STROKE, which has no de-composition) To be defined (T

Whitespace in \c[...], \x[...], etc.

2009-04-27 Thread Helmut Wollmersdorfer
It's not explicitly specified, if insignificant whitespace is allowed in \c[...], \x[...], etc. Std.pm allows e.g. "\x[ 41 , 42 , 43 ]" For convenience - especially with long charnames - it should be possible to write "\c[ SPACE, # blafasel LATIN SMALL LETT

Interpolation of "\c[$charname]"?

2009-04-27 Thread Helmut Wollmersdorfer
It's not explicitly specified, if a something like my $charname = 'SPACE'; my $string = "\c[$charname]"; should interpolate or not. I assume 'not'. Right? Helmut Wollmersdorfer

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

2009-04-27 Thread pugs-commits
Author: wollmers Date: 2009-04-27 09:51:37 +0200 (Mon, 27 Apr 2009) New Revision: 26481 Modified: docs/Perl6/Spec/S32-setting-library/Str.pod Log: typo Modified: docs/Perl6/Spec/S32-setting-library/Str.pod === --- docs/Perl6/Spec/

r26479 - docs/Perl6/Spec

2009-04-27 Thread pugs-commits
Author: szabgab Date: 2009-04-27 09:06:56 +0200 (Mon, 27 Apr 2009) New Revision: 26479 Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod Log: dos2unix Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod === ---