[perl #114968] Typed arrays do not check type during list assignement

2014-10-05 Thread Christian Bartolomaeus via RT
This dies now (probably for a while already). I added a test to S09-typed-arrays/arrays.t with the following commit: https://github.com/perl6/roast/commit/26af8f842f11d0fca1f0479c67c15b206d10fcd8

Re: make dying on latest git version

2014-10-05 Thread Francis (Grizzly) Smit
On 06/10/14 14:38, Francis (Grizzly) Smit wrote: On 06/10/14 13:05, Francis (Grizzly) Smit wrote: I did git pull then perl Configure.pl --gen-moar --gen-nqp --gen-parrot --backends=moar,parrot,jvm then make which after a long time exits with this error message ./perl6-p --setting=NULL --ll-exc

Re: make dying on latest git version

2014-10-05 Thread Francis (Grizzly) Smit
On 06/10/14 13:05, Francis (Grizzly) Smit wrote: I did git pull then perl Configure.pl --gen-moar --gen-nqp --gen-parrot --backends=moar,parrot,jvm then make which after a long time exits with this error message ./perl6-p --setting=NULL --ll-exception --optimize=3 --target=pir --stagestats --ou

make dying on latest git version

2014-10-05 Thread Francis (Grizzly) Smit
I did git pull then perl Configure.pl --gen-moar --gen-nqp --gen-parrot --backends=moar,parrot,jvm then make which after a long time exits with this error message ./perl6-p --setting=NULL --ll-exception --optimize=3 --target=pir --stagestats --output=src/gen/p-CORE.setting.pir gen/parrot/COR

[perl #111956] [BUG] LTA error message when quantifier follows nothing in Rakudo

2014-10-05 Thread Christian Bartolomaeus via RT
The error message with nom is now "Quantifier quantifies nothing": > / * / ===SORRY!=== Error while compiling Quantifier quantifies nothing at :1 --> / *⏏ / expecting any of: statement list prefix or term prefix or meta-prefix > / a+ + / ===SORRY!=== Error while c

Re: bug in latest git version of perl6-p

2014-10-05 Thread Tobias Leich
Hi, this is fixed as of: 71b98224ad366474124d8450512b6441dbbc4938 Though, you also need to update NQP, either by doing it manually or by running the Configure.pl script in rakudo which takes care of that. Cheers, FROGGS Am 03.10.2014 um 17:24 schrieb Francis (Grizzly) Smit: > The bug is in the $

[perl6/specs] 37874f: Re-introduce tmpdir() and homedir(), update chdir(...

2014-10-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 37874f2cb41c4909881c2c8af285b4dccc64d579 https://github.com/perl6/specs/commit/37874f2cb41c4909881c2c8af285b4dccc64d579 Author: Elizabeth Mattijsen Date: 2014-10-05 (Sun, 05 Oct 2014) Changed paths:

[perl6/specs] d8869f: Pod would be an IO::Handle, not an IO::Path

2014-10-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d8869f83c605d9e6f5a0e91fadd744be5a0a605c https://github.com/perl6/specs/commit/d8869f83c605d9e6f5a0e91fadd744be5a0a605c Author: Elizabeth Mattijsen Date: 2014-10-05 (Sun, 05 Oct 2014) Changed paths:

[perl6/specs] e9650c: All negated letters also in IO::Path.all

2014-10-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: e9650c02f4087bb12dfcc11b70d72f88ed7397d2 https://github.com/perl6/specs/commit/e9650c02f4087bb12dfcc11b70d72f88ed7397d2 Author: Elizabeth Mattijsen Date: 2014-10-05 (Sun, 05 Oct 2014) Changed paths:

[perl #112970] [BUG] LTA, misleading error message when a typed array in a signature fails to bind in Rakudo

2014-10-05 Thread Christian Bartolomaeus via RT
The error message now mentions that 'Positional[Int]' is expected: > sub f(Int @x) {}; f( [] ) Type check failed in binding @x; expected 'Positional[Int]' but got 'Array' in sub f at :1 in block at :1 A test was added to S14-roles/parameterized-type.t with the following commit: https://gith

Please smoke parrot smoke-me/newlines2-gh1087

2014-10-05 Thread Reini Urban
This branch adds \v \x2028, \x2029 to the newline character class, and updates some other irrelevant character properties. e.g. with perl Configure.pl --gen-parrot=smoke-me/newlines2-gh1087 I want to merge it for parrot-6.9.0 due in 2 weeks, but I got strange heisen smoke results from travis. It

[perl #122904] a wrong regex in UsingPerl6-draft.pdf

2014-10-05 Thread Carl Mäsak via RT
On Sat Oct 04 06:09:57 2014, songwen...@linuxdeepin.com wrote: > Page 99 > > If you quantify a capture, the corresponding entry in the match object > is a list of other > match objects: > > > > > right regex is m/(\w+)+ % [\,\s*] \s* 'and' \s* (\w+)/ Fixed, thanks! https://github.com/perl6/b