Re: [perl #132006] Instant.Instant is missing (say now.Instant)

2017-08-31 Thread Elizabeth Mattijsen via RT
Fixed with 51709e01c0788c466af , tests needed. > On 31 Aug 2017, at 22:05, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132006] > # in the subject line of all future correspondence about

Re: [perl #132006] Instant.Instant is missing (say now.Instant)

2017-08-31 Thread Elizabeth Mattijsen
Fixed with 51709e01c0788c466af , tests needed. > On 31 Aug 2017, at 22:05, Aleks-Daniel Jakimenko-Aleksejev (via RT) > wrote: > > # New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev > # Please include the string: [perl #132006] > # in the subject line of all future correspondence about

[perl #132010] [NYI][REGRESSION] S metaop not implemented

2017-08-31 Thread Brian S. Julin
# New Ticket Created by "Brian S. Julin" # Please include the string: [perl #132010] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132010 > Please combine RT #124544 #124545 #124546 and #124547 into this bug. They are autoge

[perl #130451] Looping over unitialized shaped array no longer works (my @array[8]; .say for @array)

2017-08-31 Thread Brian S. Julin via RT
On Thu, 31 Aug 2017 18:09:31 -0700, b...@abrij.org wrote: > On Fri, 30 Dec 2016 03:43:02 -0800, elizabeth wrote: > > Fixed with 696b1f4, tests needed. > > > > The problem could be reduced to: > > > > (my @[1]).iterator.pull-one > > > > Somehow the binding to AT-POS-CONTAINER failed, and I wasn’t ab

[perl #130451] Looping over unitialized shaped array no longer works (my @array[8]; .say for @array)

2017-08-31 Thread Brian S. Julin via RT
On Fri, 30 Dec 2016 03:43:02 -0800, elizabeth wrote: > Fixed with 696b1f4, tests needed. > > The problem could be reduced to: > > (my @[1]).iterator.pull-one > > Somehow the binding to AT-POS-CONTAINER failed, and I wasn’t able to > find what exactly was wrong with it. So don’t use AT-POS-CONTA

[perl #126249] $/ constructed just once in [REGEX]

2017-08-31 Thread Sam S. via RT
This has been fixed by TimToday in April, in one of these commits: https://gist.github.com/Whateverable/23122ebe34ebeccfdfc3cd04845c54f4 https://gist.github.com/smls/aff6a56c1cfcce5c7779251aee394e42 Tests needed.

[perl #132006] Instant.Instant is missing (say now.Instant)

2017-08-31 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132006] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132006 > Code: say now.Instant Result: No such method 'Instant' for invocant

[perl #132005] --target=parse and : invocant syntax (say 25:)

2017-08-31 Thread via RT
# New Ticket Created by Aleks-Daniel Jakimenko-Aleksejev # Please include the string: [perl #132005] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132005 > Command: perl6 --target=parse -e 'say 25:' Result: ===SORRY!=== Expe

[perl #132004] [REGEX] Recursion causes infinite loop, even if it can't match anything and another LTM branch can.

2017-08-31 Thread Sam S. via RT
Shorter example: grammar Flail { token TOP { 'w' | 'v' } } Flail.subparse('vww').say;

[perl #132003] grammar cannot parse from Blob/Buf

2017-08-31 Thread Sam S. via RT
In Perl 6.c, regexes/grammars can only parse strings (at the grapheme level). If you want to parse a Blob or Buf, you have to decode it into a string first by calling the `.decode` method¹ on it. Early Perl 6 design documents² suggested support for parsing at the byte or code-point level, but t

Re: zef install --/test cro

2017-08-31 Thread Timo Paulssen
Scratch that, the openssl docs say ERR_load_error_strings(), SSL_load_error_strings() and ERR_free_strings() are available in all versions of SSLeay and OpenSSL. So maybe it's a different ssl implementation that provides libssl.so ?!?! On 08/31/2017 02:21 PM, Timo Paulssen wrote: > The erro

Re: zef install --/test cro

2017-08-31 Thread Timo Paulssen
The error for a missing libssl.so looks like Cannot locate native library 'libwhatevenisthis.so': libwhatevenisthis.so: cannot open shared object file: No such file or directory so in this case the library can be found but the symbol SSL_load_error_strings isn't in it. it might be an incompat

Re: zef install --/test cro

2017-08-31 Thread Steve Mynott
The correct solution for that missing sym link is documented at https://docs.perl6.org/language/faq.html#Nativecall_can't_find_libfoo.so_and_I_only_have_libfoo.so.1.2! S On 31 August 2017 at 09:04, Richard Hainsworth wrote: > Just checking, but you do have a link to 'libssl.so' in the lib path?

Re: zef install --/test cro

2017-08-31 Thread Richard Hainsworth
Just checking, but you do have a link to 'libssl.so' in the lib path? Eg. I have 'libssl.so.1.0.0' but not 'libssl.so'. If so, you might try adding a symlink from 'libssl.so.1.0.0' (for example) to 'libssl.so' On Thursday, August 31, 2017 02:45 PM, Norman Gaywood wrote: Wanting to have a lo