FW: [perl #121798] m:ov and m:ex multiple regex matches not working

2014-05-05 Thread Schwenn, Peter
Designation: Non-Finmeccanica Tobias Leich, To count substitutions with s;g///; I use: $n = 0; s:g//{"" if ++$n}/; Thank you for your help; all resolved. Peter Schwenn -Original Message- From: Schwenn, Peter Sent: Monday, May 05, 2014 12:24 PM To: 'perl6-bugs-follo...@perl

[perl #121802] Lazy series failure on jvm - prime example from 2012 advent day 14

2014-05-05 Thread via RT
# New Ticket Created by David Warring # Please include the string: [perl #121802] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=121802 > Here's a slightly golfed version of the prime example from integration/advent2012-day14

[perl6/specs] 2ac69b: Spec Supply.(min|max)

2014-05-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2ac69b952101083b0caa87adfe962385c9e57b02 https://github.com/perl6/specs/commit/2ac69b952101083b0caa87adfe962385c9e57b02 Author: Elizabeth Mattijsen Date: 2014-05-05 (Mon, 05 May 2014) Changed paths:

[perl6/specs] e5079f: Spec Supply.minmax

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

[perl6/specs] 59480b: fix formatting of a text paragraph

2014-05-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 59480b5e67c46b904f5df645dd9e1d25a6f5d617 https://github.com/perl6/specs/commit/59480b5e67c46b904f5df645dd9e1d25a6f5d617 Author: Timo Paulssen Date: 2014-05-05 (Mon, 05 May 2014) Changed paths: M S17-

[perl6/specs] 2cdc91: Spec Supply.reduce

2014-05-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2cdc91761e4a99e6a17387efdcd2b5836bf3708c https://github.com/perl6/specs/commit/2cdc91761e4a99e6a17387efdcd2b5836bf3708c Author: Elizabeth Mattijsen Date: 2014-05-05 (Mon, 05 May 2014) Changed paths:

RE: [perl #121798] m:ov and m:ex multiple regex matches not working

2014-05-05 Thread Schwenn, Peter
Designation: Non-Finmeccanica Dear Tobias Leich, That works fine and is more accurate than the work around (based on split() ) that I had been using. Thank you,

Rakudo Star Release 2014.04 - A useful, usable, "early adopter" distribution of Perl 6

2014-05-05 Thread Jonathan Worthington
perl6-langu...@perl.org perl6-compi...@perl.org parrot-us...@lists.parrot.org Cc: Bcc: Message-Id: <1399313885.8...@jnthn.net> X-Originating-IP: 62.220.188.70 X-Mailer: Webmin 1.550 Date: Mon, 05 May 2014 20:18:05 +0200 (CEST) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="bound139931

[perl6/specs] 082012: Spec Supply.elems

2014-05-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 082012d644854c687fc9108b51fe0f8bd54ebd7c https://github.com/perl6/specs/commit/082012d644854c687fc9108b51fe0f8bd54ebd7c Author: Elizabeth Mattijsen Date: 2014-05-05 (Mon, 05 May 2014) Changed paths:

ARM status

2014-05-05 Thread Nicholas Clark
I managed to complete a build in the past 16 hours on a Raspberry Pi using -fsigned-char (and a lot of swapping) With the fixes in the previous 4 patches the NQP build still crashes, on about the third thing run, with a SIGBUS Fortunately, that turns out to be rather easy to diagnose, particularl

fixes for ARM and quite possibly Win32 too

2014-05-05 Thread Nicholas Clark
The actual first failure of the build on ARM is not in the Rakudo setting (which the previous message addresses), but on the very first thing that NQP tries to build, using a bootstrap .mvm file. ie, the built MoarVM is bust. This turns out to be because P6Opaque was ignoring alignment constraint

MoarVM/Rakudo (un)bustage with unsigned chars

2014-05-05 Thread Nicholas Clark
So, I'm trying to improve MoarVM portability from the current "it works on both kinds of systems"* by getting it to build on ARM. Being another little endian system. And it went "boom!" in strange ways. So, trying to replicate why, I wondered if it's because char on ARM is unsigned, whereas x86 ch

Re: gcc __alignof__() surprise

2014-05-05 Thread yary
You ought to be able to test that with something like: struct {long long N} a; char b; struct {long long N} c; int d; d=&c - &a; /* I can't remember if you need to cast c & a as char to get byte distance */ printf("a is at %d, c is at %d, they are %d apart\n",&a,&c, d); -y On Sun, May 4, 2014

[perl6/specs] 37196f: Fix example: $/.keys list keys start from 0, not 1

2014-05-05 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 37196f61184830f0d928429358ec7d4aa65b2a6b https://github.com/perl6/specs/commit/37196f61184830f0d928429358ec7d4aa65b2a6b Author: Tim Smith Date: 2014-05-05 (Mon, 05 May 2014) Changed paths: M S05-rege