r27822 - docs/Perl6/Spec

2009-07-30 Thread pugs-commits
Author: wayland Date: 2009-07-31 02:08:15 +0200 (Fri, 31 Jul 2009) New Revision: 27822 Modified: docs/Perl6/Spec/S17-concurrency.pod docs/Perl6/Spec/S22-package-format.pod docs/Perl6/Spec/S26-documentation.pod Log: [S17, S22, S26] Turned URLs into links Modified: docs/Perl6/Spec/S17-con

Re: Rakudo release numbers

2009-07-30 Thread Patrick R. Michaud
On Thu, Jul 30, 2009 at 07:47:36PM -0400, Mark J. Reed wrote: > On Thu, Jul 30, 2009 at 7:40 PM, Patrick R. Michaud wrote: > \> Unfortunately, the .rpm format doesn't allow hyphens in package > > version numbers, so we probably need to switch to something different. > > The "obvious" choices would

Re: Rakudo release numbers

2009-07-30 Thread Mark J. Reed
On Thu, Jul 30, 2009 at 7:40 PM, Patrick R. Michaud wrote: \> Unfortunately, the .rpm format doesn't allow hyphens in package > version numbers, so we probably need to switch to something different. > The "obvious" choices would be things like "2009.07" or "200907", > but neither of those represent

Rakudo release numbers

2009-07-30 Thread Patrick R. Michaud
Since Rakudo started issuing its own releases independently of Parrot, we've been using "-MM" as the version number in the filename (e.g., the Chicago release was "rakudo-2009-07.tar.gz"). Unfortunately, the .rpm format doesn't allow hyphens in package version numbers, so we probably need to

[perl #64688] tests available

2009-07-30 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S10-packages/basic.t commit f8866a9b95a6789d0692b1018a771d35e7ff35ef Author: kyle Date: Thu Jul 30 19:22:33 2009 + [t/spec] Tests for RT #64688 git-svn-id: http://svn.pugscode.org/p..

[perl #64642] tests available

2009-07-30 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S12-class/inheritance.t commit 47d8157ad8d75cc99f108a8c63a42e39ae49f6e1 Author: kyle Date: Thu Jul 30 18:53:48 2009 + [t/spec] Test for RT #64642 git-svn-id: http://svn.pugscode.org/p

Re: Placeholder variable misuse.

2009-07-30 Thread Patrick R. Michaud
On Thu, Jul 30, 2009 at 10:29:04AM -0500, Kyle Hasselbacher wrote: > In Rakudo right now, this lives: "{$foo;$^foo}(1)" > > However, the spec test expects it to die during compilation (see the > end of S06-signature/positional-placeholders.t). It says, "A > non-twigil variable should not precede

Placeholder variable misuse.

2009-07-30 Thread Kyle Hasselbacher
In Rakudo right now, this lives: "{$foo;$^foo}(1)" However, the spec test expects it to die during compilation (see the end of S06-signature/positional-placeholders.t). It says, "A non-twigil variable should not precede a corresponding twigil variable." In Rakudo right now, this says 3: sub fo

r27816 - docs/Perl6/Spec

2009-07-30 Thread pugs-commits
Author: moritz Date: 2009-07-30 15:26:44 +0200 (Thu, 30 Jul 2009) New Revision: 27816 Modified: docs/Perl6/Spec/S09-data.pod Log: [S09] standard hash defaults to Object for values We don't want to autothread on assignment to hash. jnthn++ Modified: docs/Perl6/Spec/S09-data.pod ===

Re: Please test vim support

2009-07-30 Thread Hinrik Örn Sigurðsson
Sure.

[perl #68004] +* does not generate Code

2009-07-30 Thread via RT
# New Ticket Created by Solomon Foster # Please include the string: [perl #68004] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68004 > According to http://perlcabal.org/syn/S03.html#Nesting_of_metaoperators +* should gene

[perl #68008] [TODO] &[<=>] does not work

2009-07-30 Thread via RT
# New Ticket Created by Solomon Foster # Please include the string: [perl #68008] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68008 > colomon: rakudo: say sort(&[<=>], <1 10 2 3>).perl [08:46am] p6eval: rakudo 6999e5: OU

[perl #68024] [TODO] Make &infix:{$op} work

2009-07-30 Thread via RT
# New Ticket Created by Geoffrey Broadwell # Please include the string: [perl #68024] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68024 > Allow the name of an operator to be specified dynamically without using eval to ha

[perl #67998] [BUG] Cannot define method in eval in the BUILD method of the base class of the class being constructed in Rakudo

2009-07-30 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #67998] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=67998 > rakudo: class A { submethod BUILD { eval 'method foo { say "OH HAI" }' } }; class B is