Re: Logo considerations

2009-03-23 Thread Darren Duncan
Timothy S. Nelson wrote [on p6l]: On Tue, 24 Mar 2009, Timothy S. Nelson wrote: On Mon, 23 Mar 2009, Richard Hainsworth wrote: Alternatively, if we stay away from animals, then how about something to do with parallelism, or super-positioning, or even a strange attractor, since perl6 can be st

Re: Logo considerations

2009-03-23 Thread Timothy S. Nelson
On Tue, 24 Mar 2009, Timothy S. Nelson wrote: On Mon, 23 Mar 2009, Richard Hainsworth wrote: My choice would be a lion, perhaps one lazing in the sun. The meaning that it is lazy, but it has raw power when it needs, and is the king of the jungle. Is there a way we can also show it t

Re: Logo considerations

2009-03-23 Thread Timothy S. Nelson
On Mon, 23 Mar 2009, Richard Hainsworth wrote: My choice would be a lion, perhaps one lazing in the sun. The meaning that it is lazy, but it has raw power when it needs, and is the king of the jungle. Is there a way we can also show it to be impatient and hubristic? :) Alternatively,

[perl #64096] [PATCH] Add a Perl 6 version of trim to Any.pm in the setting

2009-03-23 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #64096] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64096 > The following patch adds a Perl 6 version of trim to Any.pm in the setting.>From 20cb7

RE: Rakduo Logo Proposal

2009-03-23 Thread Conrad Schneiker
> From: Steffen Schwigon [mailto:s...@renormalist.net] > Why not taking a camel with 6 humps? > > Just joking, could not resist. :-) You want 6 humps? I'll give you 6 humps! Check this out: http://www.athenalab.com/Rakudo_logo.htm Best regards, Conrad Conrad Schneiker www.AthenaLab.com

Re: [perl #64108] [PATCH] Added a Perl 6 version of rand and cis to Any.pm in the setting

2009-03-23 Thread Moritz Lenz
Hi, Cory Spencer (via RT) wrote: > The following patch adds a Perl 6 version of rand and cis to Any.pm in the > setting. Thanks for the patch. Unfortunately, it doesn't apply cleanly here (at rakudo 748771092a53e8910df4c633567c9a57b090a12e), does it depend on a previous patch you send? [...] >

Re: Probelm building Rakudo under Cygwin and Vista-64

2009-03-23 Thread Moritz Lenz
Hi, I'm no Cygwin user, but I've heard that copying libparrot.dll to the Rakudo directory has helped in some cases, maybe that's worth a try. Cheers, Moritz

[perl #64046] [BUG] an enum does not smartmatch in given ... { when ... { ... } }

2009-03-23 Thread Martin Berends
# New Ticket Created by "Martin Berends" # Please include the string: [perl #64046] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64046 > Unsure whether the following should work, but it doesn't: perl6 -e 'enum E ; my E $

[perl #64060] [PATCH] Move capitalize from builtins to setting

2009-03-23 Thread via RT
# New Ticket Created by Clinton Gormley # Please include the string: [perl #64060] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64060 > The attached patch moves capitalize from builtins/any-str.pir to setting/Any-str.pm,

Probelm building Rakudo under Cygwin and Vista-64

2009-03-23 Thread Michael Matsko
All, I'm trying to build Rakudo as a prelude to getting started in development. I'm trying to build under Cygwin on a Vista-64 system. I'm configuring the system with ./Configure.pl --gen-parrot. Parrot downloads from svn and builds quite nicely. I run make and it compiles, but doesn't want

Re: Logo considerations

2009-03-23 Thread jerry gay
On Mon, Mar 23, 2009 at 09:22, Richard Hainsworth wrote: > Hats off to the designer of the gimel symbol - the associations with anarchy > are probably right for perl6. But to be honest, a letter didnt quite inspire > me. Since, I dont want to criticize without providing other ideas, here are > som

[perl #64054] Can't exec "C:/Program": No such file or directory at build/gen_parrot.pl line 63.

2009-03-23 Thread via RT
# New Ticket Created by Bora # Please include the string: [perl #64054] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64054 > Hey , I was trying to install Raduko using the instruction from http://www.perlfoundation.org/

[perl #64042] [BUG] rakudo - assign with "of Type" doesn't constraint

2009-03-23 Thread via RT
# New Ticket Created by Hojung Yoon # Please include the string: [perl #64042] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64042 > "my Type $a" doesn't constraint, while "my $a of Type" does constraint.

[perl #64094] [BUG] Infinite loop in Rakudo during subst

2009-03-23 Thread via RT
# New Ticket Created by Matthew Walton # Please include the string: [perl #64094] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64094 > Run this: perl6 -e "my $x = 'wibble'; $x.subst(/+ $$/, '');" Watch your processor us

[perl #64062] split should return captured delimiters

2009-03-23 Thread via RT
# New Ticket Created by Clinton Gormley # Please include the string: [perl #64062] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64062 > 'abc-def--ghi'.split(/(\-+)/) should return ['abc','-','def,'--','ghi'] bu

[perl #64090] Cannot store a regular expression in a Regex variable in Rakudo

2009-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64090] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64090 > rakudo: my Regex $r = /foo/ rakudo de786f: OUTPUT«Type mismatch in assignment [...] A

[perl #64072] If statements in modules produce a Null PMC access at runtime in Rakudo

2009-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64072] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64072 > rakudo: module Foo { if 1 { say 42 } } rakudo de786f: OUTPUT«Null PMC access in get_pm

[perl #64100] Can't use enums as roles

2009-03-23 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64100] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64100 > S12 says: `'Note that C and C are really role names'' (and I guess that holds true fo

[perl #64080] Infinite pretzel recursion when replacing a hash value with an array containing the old value in Rakudo

2009-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64080] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64080 > rakudo: my %p; %p = [%p, 4]; say %p.perl infinite recursion. on my box, it eventually

[perl #64078] Null PMC access when calling .arity on a non-defined sub in Rakudo

2009-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64078] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64078 > rakudo: say &foo.arity rakudo de786f: OUTPUT«Null PMC access in can()␤current instr.:

Probelm building Rakudo under Cygwin and Vista-64

2009-03-23 Thread Michael Matsko
All, I'm trying to build Rakudo as a prelude to getting started in development. I'm trying to build under Cygwin on a Vista-64 system. I'm configuring the system with ./Configure.pl --gen-parrot. Parrot downloads from svn and builds quite nicely. I run make and it compiles, but doesn't want to

Re: [perl #63616] Named captures are Str's, not Matches

2009-03-23 Thread Moritz Lenz
Moritz Lenz (via RT) wrote: > 09:26 <@moritz_> rakudo: rule w { . }; 'a' ~~ m//; for %($/).kv -> > $k, $v {say $v.WHAT }; > 09:26 < p6eval> rakudo 4ec17d: OUTPUT«Str␤» > > I think the output should be 'Match', not 'Str'. not only .kv turn a Match into Str, also .pairs: 09:06 < moritz_> rakudo: c

Re: r25902 - docs/Perl6/Spec

2009-03-23 Thread Moritz Lenz
pugs-comm...@feather.perl6.nl wrote: > Author: lwall > Date: 2009-03-19 01:43:53 +0100 (Thu, 19 Mar 2009) > New Revision: 25902 > > Modified: >docs/Perl6/Spec/S05-regex.pod > Log: > [S05] define .caps and .chunks methods on match objects > > > Modified: docs/Perl6/Spec/S05-regex.pod > ==

r25970 - docs/Perl6/Spec

2009-03-23 Thread pugs-commits
Author: lwall Date: 2009-03-23 02:27:32 +0100 (Mon, 23 Mar 2009) New Revision: 25970 Modified: docs/Perl6/Spec/S05-regex.pod Log: clarifications to .caps and .chunks requested by moritz++ Modified: docs/Perl6/Spec/S05-regex.pod =

[perl #64104] make()ing a range 1..$/ leads to segmentation fault

2009-03-23 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64104] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64104 > Rakudo 8207372ae394ca87667e974a2be2cd547def1f9c on parrot r37565 (amd64 linux) grammar

Re: [perl #64042] AutoReply: [BUG] rakudo - assign with "of Type" doesn't constraint

2009-03-23 Thread hojung yoon
sorry, i corrects a wrong typo. from >> "my Type $a" doesn't constraint, while "my $a of Type" does constraint. to >> "my Type $a" does constraint, while "my $a of Type" doesn't constraint.

[perl #64102] [TODO] Function form of enum constructor

2009-03-23 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64102] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64102 > >From S12: There's also a pseudo-functional form: $x = "Today" but day(Tue

[perl #64048] Null PMC access when calling sub declared after method with same name has been exported in Rakudo

2009-03-23 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #64048] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64048 > This issue is slightly complicated, and can probably be summarized better than I've done

[perl #64108] [PATCH] Added a Perl 6 version of rand and cis to Any.pm in the setting

2009-03-23 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #64108] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64108 > The following patch adds a Perl 6 version of rand and cis to Any.pm in the setting.>Fr

[perl #64058] A note about installing Rakudo

2009-03-23 Thread via RT
# New Ticket Created by Bora # Please include the string: [perl #64058] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64058 > 1 . Download git from http://github.com/guides/home 2 . Download Strawberry Perl from http:/

Re: [perl #64094] AutoReply: [BUG] Infinite loop in Rakudo during subst

2009-03-23 Thread Matthew Walton
Turns out that the loop is actually caused by the +, not the subst, as I had the same inside an ordinary match. jnthn tells me that the + is a bit redundant, but it shouldn't cause a loop. * also succumbs. signature.asc Description: This is a digitally signed message part

[perl #64098] [BUG] MMD on subset types fails for short name

2009-03-23 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #64098] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64098 > class Object is also { method f { 'Object' }; } class Bool is also { method f {

[perl #64092] [PATCH] Add Perl 6 versions of p5chomp and p5chop to Any.pm

2009-03-23 Thread via RT
# New Ticket Created by Cory Spencer # Please include the string: [perl #64092] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=64092 > The following patch adds Perl 6 versions of the p5chomp and p5chop methods to Any-str.

r25969 - docs/Perl6/Spec

2009-03-23 Thread pugs-commits
Author: lwall Date: 2009-03-23 01:41:38 +0100 (Mon, 23 Mar 2009) New Revision: 25969 Modified: docs/Perl6/Spec/S02-bits.pod Log: clarify (we hope) how the top-level lexical, package, and dynamic scopes interact Modified: docs/Perl6/Spec/S02-bits.pod ==

Re: Rakduo Logo Proposal

2009-03-23 Thread Timothy S. Nelson
On Sat, 21 Mar 2009, Steffen Schwigon wrote: Hi! Why not taking a camel with 6 humps? Just joking, could not resist. :-) Does that mean that "Alice" should be the standard name in all Perl 6 examples? :) - | Na

Logo considerations

2009-03-23 Thread Richard Hainsworth
Hats off to the designer of the gimel symbol - the associations with anarchy are probably right for perl6. But to be honest, a letter didnt quite inspire me. Since, I dont want to criticize without providing other ideas, here are some thoughts. Logos can contain meaning. I am not sure whether

Re: [perl #43691] [TODO] lex_source_files() collects lisp files as well but shouldn't

2009-03-23 Thread François Perrad
2009/3/22 Will Coleda via RT : > On Thu Jun 05 12:31:31 2008, coke wrote: >> On Wed Jun 04 13:17:47 2008, bernhard wrote: >> > On Mo. 09. Jul. 2007, 06:56:53, pcoch wrote: >> > > In lib/Parrot/Distribution.pm there is the todo item: >> > > >> > > # XXX: lex_source_files() collects lisp files as

r25966 - docs/Perl6/Spec

2009-03-23 Thread pugs-commits
Author: moritz Date: 2009-03-22 21:58:27 +0100 (Sun, 22 Mar 2009) New Revision: 25966 Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod Log: [S14] use named arguments to .new() in an example Modified: docs/Perl6/Spec/S14-roles-and-parametric-types.pod ===