🦋 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: ... | Logs available at irclogs.raku.org/raku-dev/live.html | For MoarVM see #moarvm
Set by lizmat on 8 June 2022.
00:06 reportable6 left 00:07 reportable6 joined 00:29 rypervenche left 00:35 rypervenche joined 00:57 kjp left 00:59 kjp joined 01:13 squashable6 left 01:14 squashable6 joined 01:24 camelia left 01:26 camelia joined 01:27 |Tux| left, |Tux| joined 02:05 JRaspass left 02:12 Kaipei left 02:22 JRaspass joined
Geth nqp: 18574fd9d0 | (Daniel Green)++ | tools/templates/MOAR_REVISION
Bump MoarVM for chown op
02:37
nqp: 66675457e9 | (Daniel Green)++ | 6 files
Add nqp::chown() op

Works for the MoarVM and JVM backends, untested for the JS backend. Currently is Linux(Posix?) only, though that isn't checked at this level and will have to be checked in Rakudo.
nqp: 2e7924c040 | MasterDuke17++ (committed using GitHub Web editor) | 7 files
Merge pull request #782 from MasterDuke17/add_chown_op
04:26 JRaspass left, JRaspass joined 05:26 benchable6 left, linkable6 left, tellable6 left, squashable6 left, statisfiable6 left, evalable6 left, nativecallable6 left, greppable6 left, sourceable6 left, bloatable6 left, committable6 left, quotable6 left, shareable6 left, coverable6 left, reportable6 left, unicodable6 left, releasable6 left, notable6 left, bisectable6 left 05:27 releasable6 joined, reportable6 joined, evalable6 joined, greppable6 joined, notable6 joined 05:28 statisfiable6 joined, nativecallable6 joined, benchable6 joined, bisectable6 joined, tellable6 joined, bloatable6 joined, coverable6 joined 05:29 quotable6 joined, unicodable6 joined, committable6 joined, sourceable6 joined, linkable6 joined, squashable6 joined, shareable6 joined 06:06 reportable6 left 06:09 reportable6 joined 06:21 kjp left 06:30 JRaspass left, JRaspass joined 06:34 kjp joined 06:40 kjp left, kjp joined 08:02 Kaipei joined
|Tux| Rakudo v2022.07-80-gfa2f35e4e (v6.d) on MoarVM 2022.07-18-gd22223381
csv-ip5xs0.840 - 0.841
csv-ip5xs-205.175 - 5.229
csv-parser3.528 - 3.557
csv-test-xs-200.413 - 0.434
test6.209 - 6.461
test-t1.471 - 1.756
test-t --race0.809 - 0.954
test-t-2019.527 - 19.676
test-t-20 --race6.914 - 7.164
08:35
08:55 sena_kun joined 09:21 discord-raku-bot left, discord-raku-bot joined 09:27 discord-raku-bot left, discord-raku-bot joined 10:04 Kaipii joined 10:06 Kaipei left 10:57 Altai-man joined 10:59 sena_kun left 11:14 Altai-man left 11:15 sena_kun joined 12:07 reportable6 left 12:09 reportable6 joined 13:39 camelia left, Geth left 14:00 Geth joined 14:14 discord-raku-bot left 14:15 discord-raku-bot joined 14:17 camelia joined 16:01 Geth__ joined 16:03 Geth left
Geth__ rakudo/rakuast: 9 commits pushed by (Stefan Seifert)++ 17:00
17:18 Kaipii left 17:59 Kaipii joined 18:06 reportable6 left 18:09 reportable6 joined 18:19 sena_kun left 18:20 sena_kun joined 18:27 sena_kun left 18:28 sena_kun joined
Geth__ ¦ rakudo: lizmat self-assigned IO::Notification appears not be working in 2022.07 github.com/rakudo/rakudo/issues/5050 18:35
19:19 Geth__ left, Geth joined 19:31 masukomi joined
masukomi Question: I'm debugging a problem i'm having in DB::SQLite (probably me being stupid) so i put a note("XXX SOME MESSAGE"); line. I then zef uninstall DB::SQLite and zef install . ... all good, and I can confirm that the installed file has my note.... but even though i KNOW i'm in the method with the note, i never SEE the note, but i DO see notes from in my code that's calling it. What gives? How do i make notes in a module 19:33
actually print to STDERR ?
nine masukomi: note in a module is totally fine. Sounds more like you're just not really using that module. Running with RAKUDO_MODULE_DEBUG=1 in your environment can shed some light. 19:38
masukomi definitely using the module. I'm blowing up a few lines below my note, and my note's not in an if or anything. 19:40
hmm... you may be right but the .... error message is wrong? /opt/homebrew/Cellar/rakudo-star/2022.07/share/perl6/site/sources/FF81D543D88B162772D20C1D6C6440917214D568 disappears when i zef uninstall. it reappears when i `zef install .` AND it has my stuff in it. BUT i can replace the method in question with `die("WTF")` and it compiles fine, it tests fine, it installs again, AND it complains about erroring on the same line 19:56
number which is now a) a comment and b) dozens of lines away from the method in question.
(the disappearing & reappearing file is the one it claims the error is happening in on a line number that's now wholly irrelevant) 19:57
Geth rakudo/rakuast: 4519b9d567 | (Stefan Seifert)++ | src/Raku/ast/statementprefixes.rakumod
RakuAST: Have try fatalize a returned Failure

The try statement prefix is supposed to fatalize returned Failures, i.e. have them be thrown as exceptions, so they will be caught by the generated CATCH block and stored in $!.
rakudo/rakuast: generated CATCH block and stored in $!.
review: github.com/rakudo/rakudo/commit/4519b9d567
19:58
rakudo/rakuast: c69caa73f2 | (Stefan Seifert)++ | src/Raku/ast/code.rakumod
RakuAST: tell routines about the package they belong to
20:00 Kaipei joined
gfldex masukomi: did you try to nuke .precomp ? 20:02
20:03 Kaipii left
masukomi no. i didn't. Just tried, and ... i dunno something's gone very wrong ...which is a GOOD thing!!! "Cannot look up attributes in a DB::SQLite::Native type object. Did you forget a '.new'?" I think that's related to some poking i did... so... I think that was ultimately my problem. ... will holler if that wasn't it. 20:06
Thank you gfldex
gfldex yw
It can't hurt to use raku.land/zef:lizmat/Repository::P...p::Cleanup in tests. 20:08
nine masukomi: have you actually tried RAKUDO_MODULE_DEBUG?
masukomi yes. but i think my raku newbness resulted in it not being terribly useful. 20:09
like it wasn't meaningful to me
[Coke] If you save it into a gist someone can probably step you through it 20:33
21:03 linkable6 left, evalable6 left 21:04 evalable6 joined, linkable6 joined 21:23 sena_kun left
Geth rakudo/rakuast: 86a246d301 | (Stefan Seifert)++ | src/Raku/ast/statements.rakumod
RakuAST: Fix importing with Pair tags
21:55
22:52 epony left, epony joined 23:13 sjn left 23:41 masukomi left, kjp left 23:44 kjp joined 23:53 squashable6 left 23:56 squashable6 joined