[perl #122838] [BUG] BEGIN GLOBAL::name assignment does not work in Rakudo

2014-09-24 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #122838] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=122838 nine m: BEGIN GLOBAL::Test = class { }; Test.new; camelia rakudo-moar 682e03:

[perl #122839] Rakudo* 2014:08 panda doesn't see bundled modules

2014-09-24 Thread via RT
# New Ticket Created by Paul Marquess # Please include the string: [perl #122839] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=122839 Start with a fresh install of R* 2014.08 (from

[perl6/specs] cd1ca7: Eradicate chtmpdir/chhomedir in favour of chdir

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: cd1ca780c1f0007f6ee0ce12e0ebf738ca8a7c3b https://github.com/perl6/specs/commit/cd1ca780c1f0007f6ee0ce12e0ebf738ca8a7c3b Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-23 (Tue, 23 Sep 2014)

[perl6/specs] 812d1a: Add IO::Path.slurp + some cosmetics

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 812d1ac3e37db027d54b79ee82ffaeee772689cf https://github.com/perl6/specs/commit/812d1ac3e37db027d54b79ee82ffaeee772689cf Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-24 (Wed, 24 Sep 2014)

[perl6/specs] 12f5bf: Small rearranging

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 12f5bf654862fde67916f10d20b431802ce233cb https://github.com/perl6/specs/commit/12f5bf654862fde67916f10d20b431802ce233cb Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-24 (Wed, 24 Sep 2014)

[perl6/specs] 5b8d70: Minor tweaks, had forgotten .spurt

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5b8d701a5793b6597a311601c08a11b322b9bef5 https://github.com/perl6/specs/commit/5b8d701a5793b6597a311601c08a11b322b9bef5 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-24 (Wed, 24 Sep 2014)

[perl6/specs] 5741eb: Remove islink/readlink, add L (readlink) file test

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5741ebe43b96bbbf74db2efc18c2cf82c639c3b3 https://github.com/perl6/specs/commit/5741ebe43b96bbbf74db2efc18c2cf82c639c3b3 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-23 (Tue, 23 Sep 2014)

[perl6/specs] f75e1a: IO::Path.contents is ambiguous, use .dir instead

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f75e1a39cd9820da053bbd27a4e174f9b1b66061 https://github.com/perl6/specs/commit/f75e1a39cd9820da053bbd27a4e174f9b1b66061 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-24 (Wed, 24 Sep 2014)

[perl6/specs] 7ddb1f: Fix alphabetical ordero

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 7ddb1f463d7d18abae73732e3fa3b47e2c314f3e https://github.com/perl6/specs/commit/7ddb1f463d7d18abae73732e3fa3b47e2c314f3e Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-23 (Tue, 23 Sep 2014)

[perl #76998] [BUG] capture variable does not parse for building a pair of the form :$a

2014-09-24 Thread Christian Bartolomaeus via RT
This now has a test in S05-capture/match-object.t (cmp. https://github.com/perl6/roast/commit/15cd5a89f8fcfac7d0a3ae13afbc2c790316c8ef) All credits to timotimo, who explained both test and procedure to close this ticket: http://perl6advent.wordpress.com/2013/12/17/day-17-of-a-new-contributor/

[perl6/specs] 0c3475: Forget chmod() + some cosmetics

2014-09-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 0c34759211b0502e210f87d9fc1c1074f14f7172 https://github.com/perl6/specs/commit/0c34759211b0502e210f87d9fc1c1074f14f7172 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-09-24 (Wed, 24 Sep 2014)

[perl #99658] sequence operator '...' timeout

2014-09-24 Thread Christian Bartolomaeus via RT
Actually I don't think S03 says that '1,3,5 ... 8' should act as '1,3,5 ... *' As I understand it '1,3,5 ... 8' gives an infinite list with all even numbers. '1,3,5 ... *' also gives an infinite list with all even numbers -- but this one is lazy. So there is a difference in behaviour: When