[00:36] *** Kaeipi left [00:36] *** Kaeipi joined [01:03] *** dogbert17 joined [01:06] *** dogbert11 left [01:08] *** pamplemousse left [01:09] *** sxmx left [01:22] *** Merfont joined [01:22] *** Kaeipi left [01:24] *** Geth left [01:24] *** zostay left [01:24] *** tbrowder left [01:30] *** Geth joined [01:30] *** zostay joined [01:30] *** tbrowder joined [03:57] *** leont left [05:17] *** evalable6 left [05:17] *** linkable6 left [05:17] *** linkable6 joined [05:18] *** evalable6 joined [06:30] *** frost-lab joined [07:00] Next release in ≈2 days and ≈11 hours. 1 blocker. Please log your changes in the ChangeLog: https://github.com/rakudo/rakudo/wiki/ChangeLog-Draft [07:29] ¦ roast: b97dfa098f | (Christian Bartolomäus)++ | 2 files [07:29] ¦ roast: [JVM] Unfudge some now working tests [07:29] ¦ roast: [07:29] ¦ roast: Fixed with https://github.com/Raku/nqp/pull/643. [07:29] ¦ roast: [07:29] ¦ roast: There are still some cases left that explode with UnwindExceptions. [07:29] ¦ roast: review: https://github.com/Raku/roast/commit/b97dfa098f [08:34] *** domidumont joined [09:07] *** domidumont left [09:08] *** sena_kun joined [09:26] Files=1346, Tests=117152, 226 wallclock secs (29.96 usr 8.75 sys + 3134.56 cusr 298.84 csys = 3472.11 CPU) [10:05] *** domidumont joined [11:55] ¦ rakudo: 9040318cdc | (Elizabeth Mattijsen)++ | 3 files [11:55] ¦ rakudo: Remove DEPRECATED candidates that didn't work [11:55] ¦ rakudo: [11:55] ¦ rakudo: Apparently, a bug in Rakudo::Deprecations.DEPRECATED caused these [11:55] ¦ rakudo: methods to die, rather than just produce a deprecation warning. [11:55] ¦ rakudo: Since this has been unreported for over 3 years, it feels safe to [11:55] ¦ rakudo: remove these candidates. [11:55] ¦ rakudo: review: https://github.com/rakudo/rakudo/commit/9040318cdc [11:55] ¦ rakudo: 7406f8c627 | (Elizabeth Mattijsen)++ | 5 files [11:55] ¦ rakudo: Remove deprecated functionality to core epilogue [11:55] ¦ rakudo: [11:55] ¦ rakudo: This allows this functionality to "normally" use the "is DEPRECATED" [11:55] ¦ rakudo: trait making it introspectable, which is handy for IDE's like Comma. [11:55] ¦ rakudo: [11:55] ¦ rakudo: This also removes two now empty source-files from the build, so a [11:56] ¦ rakudo: reconfigure is needed after this commit. [11:56] ¦ rakudo: review: https://github.com/rakudo/rakudo/commit/7406f8c627 [12:05] *** morayj joined [12:12] *** lizmat_ joined [12:14] *** lizmat left [12:15] *** lizmat_ is now known as lizmat [12:51] *** leont joined [13:01] *** travis-ci joined [13:01] Rakudo build failed. Elizabeth Mattijsen 'Remove deprecated functionality to core epilogue [13:01] https://travis-ci.org/rakudo/rakudo/builds/750205520 https://github.com/rakudo/rakudo/compare/be455078cf2a...7406f8c6270f [13:01] *** travis-ci left [13:04] apparently t/02-rakudo/99-misc.t (Wstat: 139 Tests: 0 Failed: 0) which I can *not* reproduce locally [13:04] lizmat, I think it is a flapper. [13:04] also: Please be aware travis-ci.org will be shutting down in several weeks, with all accounts migrating to travis-ci.com. Please stay tuned here for more information. [13:05] why do we still bother with Travis? [13:05] lizmat, because nobody is brave enough to step forward first and disable it just yet, I think. [13:08] *** Altai-man joined [13:11] *** sena_kun left [13:16] afk for a few hours& [13:17] *** morayj left [13:21] *** frost-lab left [13:28] ¦ rakudo: 604f64f46e | (Daniel Green)++ | t/02-rakudo/99-misc.t [13:28] ¦ rakudo: Fix typo in test description [13:28] ¦ rakudo: review: https://github.com/rakudo/rakudo/commit/604f64f46e [13:43] *** morayj joined [13:43] ¦ rakudo: MasterDuke17++ created pull request #4120: Add missing `-I lib` to an is-run test [13:43] ¦ rakudo: review: https://github.com/rakudo/rakudo/pull/4120 [14:17] *** pamplemousse joined [14:35] *** travis-ci joined [14:35] Rakudo build passed. Daniel Green 'Fix typo in test description' [14:35] https://travis-ci.org/rakudo/rakudo/builds/750216489 https://github.com/rakudo/rakudo/compare/7406f8c6270f...604f64f46e4f [14:35] *** travis-ci left [15:31] *** b2gills left [16:43] *** squashable6 left [16:43] *** squashable6 joined [17:09] *** sena_kun joined [17:11] *** Altai-man left [17:19] *** b2gills joined [17:39] *** finsternis left [17:40] *** finsternis joined [17:44] *** lucasb joined [18:07] *** morayj left [18:21] *** domidumont left [18:27] *** MasterDuke left [19:02] *** Merfont left [19:02] *** Merfont joined [19:19] *** vrurg left [19:58] *** vrurg joined [20:18] m: my @a = ; my @i = 1,2,3; dd @a[0,1..2] [20:18] rakudo-moar 604f64f46: OUTPUT: «("a", ("b", "c"))␤» [20:18] m: my @a = ; my @i = 1,2,3; dd @a[0,1...2] [20:18] rakudo-moar 604f64f46: OUTPUT: «("a", "b", "c")␤» [20:18] I'm not sure why these would be different [20:36] * lizmat is starting to feel that @a[] handling needs a redefine for the next language version [20:38] m: dd [0,1..2]; dd [0,1...2] # golfed [20:38] rakudo-moar 604f64f46: OUTPUT: «("a", ("b", "c"))␤("a", "b", "c")␤» [20:52] *** vrurg left [21:08] *** Altai-man joined [21:10] *** sena_kun left [21:38] *** MasterDuke joined [21:39] *** Altai-man left [21:54] *** vrurg joined [23:06] *** pamplemousse left [23:16] *** pamplemousse joined