🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | log inspection situation still under development | For MoarVM see #moarvm
Set by lizmat on 22 May 2021.
melezhik . 01:57
MasterDuke how does one override operators in newer language version? 09:22
if i just put a file in src/core.e/ and add it to tools/templates/6.e/core_sources it compiles, but then running with `use v6.e.PREVIEW;` gives `Ambiguous call to 'infix:<~&>(Str, Str)'; these signatures all match: <...>` 09:27
lizmat I've used a hack in those case, not sure that would be advisable 09:33
basically:
BEGIN my &old-foo = &foo;
or rather:
BEGIN my &old-foo = &infix:<foo>;
proto &infix:<foo>() { }
multi sub infix:<foo>( ) { # replacement candidate } 09:34
multi sub infix:<foo>(|c) { &old-foo(|c) } # use old versions otherwise
Altai-man releasable6, status 10:04
releasable6 Altai-man, Next release will happen when it's ready. There are no known blockers. 101 out of 102 commits logged
Altai-man, Details: gist.github.com/a3a1e70ba0df8e4c8f...133c1a696e
MasterDuke hm 10:13
Altai-man hm? 10:15
patrickb o/ 13:21
sena_kun: I'm available.
tellable6 patrickb, I'll pass your message to sena_kun
patrickb Altai-man: I'm available. 13:24
Altai-man patrickb, o/ 13:30
patrickb, I did a moarvm release some time ago, are you interested in it? wrt rakudo: I am now (very slowly) running stresstests on errata branches.
patrickb, I am not sure about the process, how do you want me to share it with you? 13:31
patrickb Dunno. Is there much console action going on? If yes, a shared session (ssh + tmux or similar) would be good. 13:32
Geth roast/6.d-errata: 018ff07821 | (Daniel Green)++ (committed by Altai-man) | 2 files
Track changes cause by NQP PR #732

The TODO is now passing, and the new exception thrown is a better one.
13:34
roast/6.d-errata: 6a245f78cf | raydiak++ (committed by Altai-man) | S26-documentation/02-paragraph.t
Fix test #28 of S26-documentation/02-paragraph.t

Lowercase strings in E<> should be valid HTML5 entities
Altai-man patrickb, alright. Alas, I need to do some recordings now, I hope I'll be back in 30 minutes or so.
roast/6.d-errata: ddfa7cf2cf | raydiak++ (committed by Altai-man) | S26-documentation/02-paragraph.t
Fudge fixed test for unfixed JVM

This functionality could not be easily implemented for JVM due to
  github.com/Raku/nqp/issues/727
patrickb OK.
Altai-man oh no, there is a regression. :S 13:54
S02-types/bag.t and S02-types/baghash.t fail on 6.c-errata branch with master, but not with 2021.05, no recent commits to roast were changed there. 13:55
lizmat, ^ ?
lizmat checks 13:58
seems like a change in cmp behaviour 14:02
Geth roast/6.c-errata: 0e065a2bc2 | (Elizabeth Mattijsen)++ | 2 files
Remove non-sensical, unneeded sort logic in test
14:11
Altai-man yay! 14:12
lizmat++ thank you very much for spending your time on Saturday. :)
lizmat you're welcome!
Geth rakudo/release-2021.07: 5d474c5e78 | Altai-man++ | 3 files
Update changelog + announcement

Deliberately not logged:
1f0122e d6dc3e0 f7e9b92 944fc14 96a1c49 14f2f05 afab892 64b38ba 853dc39 8f6e41e 2bf5970 f4b4bc1 ac92caa cd01706 eab5fcd 37dd25f 772711a ad94ef1 2792935 6b18602 2a13c31 3f5271b 1e6d93c 68b08a3 798878c 6eea262 f195997 694a36e 06ae4cf af50f62 dba9f56 6928d20 a124df8 a3b7939 1ed2863 6dbe45e d828172 271b64f b0caab5
15:06
nqp: 4cd7234e69 | Altai-man++ | tools/templates/MOAR_REVISION
[release] Bump MoarVM revision to 2021.07
15:50
nqp: 1c14bd32e9 | Altai-man++ | VERSION
[release] Bump VERSION to 2021.07
rakudo/release-2021.07: a5055c8abd | Altai-man++ | tools/templates/NQP_REVISION
[release] Bump NQP revision to 2021.07
15:51
rakudo/release-2021.07: 4aa2e8bdff | Altai-man++ | VERSION
[release] Bump VERSION to 2021.07
rakudo: Altai-man++ created pull request #4477:
Release 2021.07
15:56
Geth rakudo/master: 4 commits pushed by Altai-man++ 16:41
lizmat Altai-man++ # new release, confirmed ok! 18:46
Altai-man lizmat, thanks! 19:04