[perl6/specs] e29e9a: fix a wee typo

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: e29e9a1bcbb884afe8006e869b6f82f364655d70 https://github.com/perl6/specs/commit/e29e9a1bcbb884afe8006e869b6f82f364655d70 Author: Carl Masak cma...@gmail.com Date: 2014-08-19 (Tue, 19 Aug 2014) Changed

[perl6/specs] 63a0d6: Remove notion of stacked feeds

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 63a0d6143a866c14bf18fe43329b9bf1c3ec4cf2 https://github.com/perl6/specs/commit/63a0d6143a866c14bf18fe43329b9bf1c3ec4cf2 Author: TimToady la...@wall.org Date: 2014-08-17 (Sun, 17 Aug 2014) Changed paths:

[perl6/specs] d3c314: document lollipop composers

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d3c3141b43853874f43d9f2031cfe3462c1e2e85 https://github.com/perl6/specs/commit/d3c3141b43853874f43d9f2031cfe3462c1e2e85 Author: TimToady la...@wall.org Date: 2014-08-18 (Mon, 18 Aug 2014) Changed paths:

[perl6/specs] 273da4: add tl;dr and TMI

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 273da4c750978f73eecbf02af68588e41802ec38 https://github.com/perl6/specs/commit/273da4c750978f73eecbf02af68588e41802ec38 Author: TimToady la...@wall.org Date: 2014-08-18 (Mon, 18 Aug 2014) Changed paths:

[perl6/specs] 85b2d6: S99. More on operator, panda, control flow...

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 85b2d6cf5e8d2346127e0c0315316efe637f96e3 https://github.com/perl6/specs/commit/85b2d6cf5e8d2346127e0c0315316efe637f96e3 Author: Stéphane Payrard cognomi...@gmail.com Date: 2014-08-20 (Wed, 20 Aug 2014)

[perl6/specs] ac5860: * whitespace

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ac586073aea057c20ab1992bbb7a83d6966e3a63 https://github.com/perl6/specs/commit/ac586073aea057c20ab1992bbb7a83d6966e3a63 Author: Will Coke Coleda w...@coleda.com Date: 2014-08-20 (Wed, 20 Aug 2014)

[perl6/specs] 40baba: * spelling

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 40babaa324b9675ded1c9caa468ad8463fbac747 https://github.com/perl6/specs/commit/40babaa324b9675ded1c9caa468ad8463fbac747 Author: Will Coke Coleda w...@coleda.com Date: 2014-08-20 (Wed, 20 Aug 2014)

[perl6/specs] dfb481: S99: HLL

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: dfb481c3258b30b412aa12b59970bd70e278f980 https://github.com/perl6/specs/commit/dfb481c3258b30b412aa12b59970bd70e278f980 Author: Stéphane Payrard cognomi...@gmail.com Date: 2014-08-20 (Wed, 20 Aug 2014)

[perl6/specs] 32d02f: S99 : name, symbol, EVAL, import, export.

2014-08-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 32d02fbb274f29cf59ee7c4f0a08f256d71fcbb2 https://github.com/perl6/specs/commit/32d02fbb274f29cf59ee7c4f0a08f256d71fcbb2 Author: Stéphane Payrard cognomi...@gmail.com Date: 2014-08-20 (Wed, 20 Aug 2014)

Parrot 6.7.0 Grey-headed Released

2014-08-19 Thread Reini Urban
On behalf of the Parrot team, I'm proud to announce Parrot 6.7.0, also known as Grey-headed Lovebird. Parrot (http://parrot.org/) is a virtual machine aimed at running all dynamic languages. Parrot 6.7.0 is available on Parrot's FTP site (ftp://ftp.parrot.org/pub/parrot/releases/devel/6.7.0/),

Re: Grammars and biological data formats

2014-08-16 Thread Martin D Kealey
Hmmm, what about just implementing mmap-as-string? Then, assuming the parsing process is somewhat stream-like, the OS will take care of swapping in chunks as you need them. You don't even need anything special to support backtracking -- it's just a memory address, after all. -Martin On Thu, 14

Re: Grammars and biological data formats

2014-08-16 Thread Fields, Christopher J
Yes, that looks like an even better option. I see that this is implemented in p5 as File::Map, which is a nice portable option. Chris On Aug 16, 2014, at 7:51 AM, Martin D Kealey mar...@kurahaupo.gen.nz wrote: Hmmm, what about just implementing mmap-as-string? Then, assuming the

Re: Grammars and biological data formats

2014-08-14 Thread Carl Mäsak
I was going to pipe in and say that I wouldn't wait around for Cat, I'd write something that reads chunks and then parses that. It'll be a bit more code, but it'll work today. But I see you reached that conclusion already. :) Lately I've found myself writing more and more grammars that parse just

Re: Grammars and biological data formats

2014-08-14 Thread Fields, Christopher J
Yeah, I'm thinking of a Cat-like class that would chunkify the data and check for matches. The main reason I would like to stick with a consistent grammar-based approach is I have seen many instances in BioPerl where a parser is essentially rewritten based on its purpose (full parsing, lazy

Grammars and biological data formats

2014-08-13 Thread Fields, Christopher J
I have a fairly simple question regarding the feasibility of using grammars with commonly used biological data formats. My main question: if I wanted to parse() or subparse() vary large files (not unheard of to have FASTA/FASTQ or other similar data files exceed 100’s of GB) would a grammar

[perl6/specs] 2338ed: Attempt at clarification 1st parameter to .bless

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2338ed17f5a4e62deab184a0029dd3d044e63fac https://github.com/perl6/specs/commit/2338ed17f5a4e62deab184a0029dd3d044e63fac Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] 43ff89: [S99] Add emptyish lambda and pointy block

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 43ff895139def4868861ccae1ce2a1f07d71f7a9 https://github.com/perl6/specs/commit/43ff895139def4868861ccae1ce2a1f07d71f7a9 Author: Jonathan Scott Duff d...@pobox.com Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] 56c571: Get rid of DESTROY fossils

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 56c5710c527cf6a0e9df71f9ed06930e594ea453 https://github.com/perl6/specs/commit/56c5710c527cf6a0e9df71f9ed06930e594ea453 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] aa6f24: Unprecomposed graphemes are 0, not 0x10ffff

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: aa6f2438d0002d2820425623de6a4938ec454e30 https://github.com/perl6/specs/commit/aa6f2438d0002d2820425623de6a4938ec454e30 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] 34a30e: Make sure we expand TABs to spaces

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 34a30e748abd2b50bba8ab7b718dbc6c6f21eb9b https://github.com/perl6/specs/commit/34a30e748abd2b50bba8ab7b718dbc6c6f21eb9b Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-12 (Tue, 12 Aug 2014)

[perl6/specs] 8b6d0b: Elaborate a bit on exit, END blocks and threads

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 8b6d0bb3fef29ad61540730c8ff99b5c69c99709 https://github.com/perl6/specs/commit/8b6d0bb3fef29ad61540730c8ff99b5c69c99709 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] a80149: Hint a bit at is export for methods

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: a8014958d3f4ebb5c02cb4c840fea487ce788a0b https://github.com/perl6/specs/commit/a8014958d3f4ebb5c02cb4c840fea487ce788a0b Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] b3fceb: lock() is now Lock.new and its methods

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: b3fceb8cf355d008ef29df432c60438aee6bf3d6 https://github.com/perl6/specs/commit/b3fceb8cf355d008ef29df432c60438aee6bf3d6 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-11 (Mon, 11 Aug 2014)

[perl6/specs] 134561: Add Set/Bag/Mix smartmatch candidates to table

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 1345614cf61c30f9c9f0492ff89e1e25c60d1d6d https://github.com/perl6/specs/commit/1345614cf61c30f9c9f0492ff89e1e25c60d1d6d Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-12 (Tue, 12 Aug 2014)

[perl6/specs] 98a97b: De-TAB

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 98a97ba05497c67f383870287220c2a156dff884 https://github.com/perl6/specs/commit/98a97ba05497c67f383870287220c2a156dff884 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-12 (Tue, 12 Aug 2014)

[perl6/specs] 22d8cd: Generalize ~~ calls to be on Setty, Baggy, Mixy

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 22d8cd42ba02f242489a466d8e2377974cbb1cb5 https://github.com/perl6/specs/commit/22d8cd42ba02f242489a466d8e2377974cbb1cb5 Author: Mouq alexmoq...@gmail.com Date: 2014-08-13 (Wed, 13 Aug 2014) Changed

Re: Grammars and biological data formats

2014-08-13 Thread Solomon Foster
On Sat, Aug 9, 2014 at 7:26 PM, Fields, Christopher J cjfie...@illinois.edu wrote: I have a fairly simple question regarding the feasibility of using grammars with commonly used biological data formats. My main question: if I wanted to parse() or subparse() vary large files (not unheard of

Re: Grammars and biological data formats

2014-08-13 Thread Fields, Christopher J
On Aug 13, 2014, at 4:50 AM, Solomon Foster colo...@gmail.com wrote: On Sat, Aug 9, 2014 at 7:26 PM, Fields, Christopher J cjfie...@illinois.edu wrote: I have a fairly simple question regarding the feasibility of using grammars with commonly used biological data formats. My main question:

Re: Grammars and biological data formats

2014-08-13 Thread Fields, Christopher J
On Aug 13, 2014, at 8:11 AM, Christopher Fields cjfie...@illinois.edu wrote: On Aug 13, 2014, at 4:50 AM, Solomon Foster colo...@gmail.com wrote: On Sat, Aug 9, 2014 at 7:26 PM, Fields, Christopher J cjfie...@illinois.edu wrote: I have a fairly simple question regarding the feasibility of

[perl6/specs] b99ecf: whack down the smartmatch table

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: b99ecf40b7cd8197086a07ee857c5f1f91fad489 https://github.com/perl6/specs/commit/b99ecf40b7cd8197086a07ee857c5f1f91fad489 Author: TimToady la...@wall.org Date: 2014-08-13 (Wed, 13 Aug 2014) Changed paths:

[perl6/specs] e6fda2: Alas, mutable Set/Bag/Mix follow different rules

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: e6fda2fe3d62bd72c78a452c2c0b39c12e90279a https://github.com/perl6/specs/commit/e6fda2fe3d62bd72c78a452c2c0b39c12e90279a Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-08-13 (Wed, 13 Aug 2014)

[perl6/specs] 629dbe: hash smartmatching just shouldn't try to guess

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 629dbe9af6832f0919c05116d1ca02974c51d991 https://github.com/perl6/specs/commit/629dbe9af6832f0919c05116d1ca02974c51d991 Author: TimToady la...@wall.org Date: 2014-08-13 (Wed, 13 Aug 2014) Changed paths:

[perl6/specs] 5c8641: Hopefully correctly map Setty/Baggy/Mixy in ~~

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

[perl6/specs] c58b91: put back non-slice hash item lookups

2014-08-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: c58b91883af4147fea71f51719341efcaf7f1614 https://github.com/perl6/specs/commit/c58b91883af4147fea71f51719341efcaf7f1614 Author: TimToady la...@wall.org Date: 2014-08-13 (Wed, 13 Aug 2014) Changed paths:

[perl6/specs] 5aed9c: Fix some minor POD errors

2014-08-06 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5aed9c8b968a6a83de795125817c0af2695409c7 https://github.com/perl6/specs/commit/5aed9c8b968a6a83de795125817c0af2695409c7 Author: Anthony Parsons a...@flussence.eu Date: 2014-08-04 (Mon, 04 Aug 2014)

[perl6/specs] ceebcf: Add splat; Fix some POD errors and long lines.

2014-08-06 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ceebcfa60a45cd7a2c804eaf4d10f25dcff945a3 https://github.com/perl6/specs/commit/ceebcfa60a45cd7a2c804eaf4d10f25dcff945a3 Author: Salve J. Nilsen s...@cpan.org Date: 2014-08-04 (Mon, 04 Aug 2014) Changed

[perl6/specs] d5dfec: adding NFA

2014-08-06 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d5dfeca2a5ba9d644e5a5b0666cc7ea409a730de https://github.com/perl6/specs/commit/d5dfeca2a5ba9d644e5a5b0666cc7ea409a730de Author: L. Grondin grond...@yahoo.fr Date: 2014-08-06 (Wed, 06 Aug 2014) Changed

[perl6/specs] f8b2b1: Revert Slurping directories makes sense on some O...

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f8b2b16897f0575fa53b7c58dc7c777ffae46b24 https://github.com/perl6/specs/commit/f8b2b16897f0575fa53b7c58dc7c777ffae46b24 Author: Carlin c...@viennan.net Date: 2014-07-28 (Mon, 28 Jul 2014) Changed paths:

[perl6/specs] 0925cc: Slurping directories makes sense on some OSes

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 0925cca364036d02c0fc3a7c03ffb94a9b72ec5c https://github.com/perl6/specs/commit/0925cca364036d02c0fc3a7c03ffb94a9b72ec5c Author: Carlin c...@viennan.net Date: 2014-07-28 (Mon, 28 Jul 2014) Changed paths:

[perl6/specs]

2014-07-30 Thread GitHub
Branch: refs/heads/S26 Home: https://github.com/perl6/specs

[perl6/specs] 51502a: Powderize contend fossil

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 51502a2a6031d36f5d10bbbd195f0f431eb18e9f https://github.com/perl6/specs/commit/51502a2a6031d36f5d10bbbd195f0f431eb18e9f Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-07-28 (Mon, 28 Jul 2014)

[perl6/specs] 4634ae: RC = Release Candidate

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 4634ae4274c94266f2817d657de89de403e82ac1 https://github.com/perl6/specs/commit/4634ae4274c94266f2817d657de89de403e82ac1 Author: TimToady la...@wall.org Date: 2014-07-30 (Wed, 30 Jul 2014) Changed paths:

[perl6/specs] 1839cd: start returns a value (a promise)

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 1839cd7945660f53ce10294d4b881d8612538ea8 https://github.com/perl6/specs/commit/1839cd7945660f53ce10294d4b881d8612538ea8 Author: TimToady la...@wall.org Date: 2014-07-30 (Wed, 30 Jul 2014) Changed paths:

[perl6/specs] 6f5354: add RC === RosettaCode

2014-07-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6f535410be9084e928c76c390837ad131c28a539 https://github.com/perl6/specs/commit/6f535410be9084e928c76c390837ad131c28a539 Author: TimToady la...@wall.org Date: 2014-07-30 (Wed, 30 Jul 2014) Changed paths:

[perl6/specs] 533c76: make ^^ return Nil on too many trues

2014-07-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 533c76b5e0f9ac89cf348445bbfe69d039828dc6 https://github.com/perl6/specs/commit/533c76b5e0f9ac89cf348445bbfe69d039828dc6 Author: TimToady la...@wall.org Date: 2014-07-24 (Thu, 24 Jul 2014) Changed paths:

[perl6/specs] 3fa585: document semantics of multiple #| or #=

2014-07-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3fa5859e2172c5973366fb3dc158a7406f7f https://github.com/perl6/specs/commit/3fa5859e2172c5973366fb3dc158a7406f7f Author: TimToady la...@wall.org Date: 2014-07-25 (Fri, 25 Jul 2014) Changed paths:

[perl6/specs] 0355ca: Fix typos

2014-07-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 0355cafeaea5d4db9410391180d09a59ed35 https://github.com/perl6/specs/commit/0355cafeaea5d4db9410391180d09a59ed35 Author: Bruce Gray bruce.g...@acm.org Date: 2014-07-23 (Wed, 23 Jul 2014) Changed

[perl6/specs] 04b44e: Typos

2014-07-23 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 04b44e7f47255114591b8a45e265a1e5a1c6d55b https://github.com/perl6/specs/commit/04b44e7f47255114591b8a45e265a1e5a1c6d55b Author: Lucas Buchala lucasbuch...@gmail.com Date: 2014-07-22 (Tue, 22 Jul 2014)

[perl6/specs] eca5f2: Be clear about the return value of s/// et al.

2014-07-23 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: eca5f2f2dfcca8ff0ef8a662cec3496635e381cc https://github.com/perl6/specs/commit/eca5f2f2dfcca8ff0ef8a662cec3496635e381cc Author: TimToady la...@wall.org Date: 2014-07-22 (Tue, 22 Jul 2014) Changed paths:

[perl6/specs] d35e52: Elaborate a bit more on the Distribution object.

2014-07-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: d35e52780339c30b4d479822fd4351aaad73129f https://github.com/perl6/specs/commit/d35e52780339c30b4d479822fd4351aaad73129f Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-07-16 (Wed, 16 Jul 2014)

[perl6/specs] 635fb4: Define flap

2014-07-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 635fb4cb626f65f8231c3c7e6b482950a14c9c5e https://github.com/perl6/specs/commit/635fb4cb626f65f8231c3c7e6b482950a14c9c5e Author: Will Coke Coleda w...@coleda.com Date: 2014-07-17 (Thu, 17 Jul 2014)

[perl6/specs] 8c901d: Refer to .content method for Pod blocks rather tha...

2014-07-16 Thread GitHub
Branch: refs/heads/S26 Home: https://github.com/perl6/specs Commit: 8c901dcd5254f07ed76c8363cf3a71c4dbe68c50 https://github.com/perl6/specs/commit/8c901dcd5254f07ed76c8363cf3a71c4dbe68c50 Author: Rob Hoelz r...@hoelz.ro Date: 2014-07-15 (Tue, 15 Jul 2014) Changed paths:

Parrot 6.6.0 Parrothead released!

2014-07-15 Thread Bruce Gray
As a dreamer of dreams and a travelin' man, I have chalked up many a mile. Read dozens of books about heroes and crooks, And I've learned much from both of their styles. -- Heard playing in Margaritaville bar, in Orlando after YAPC::NA::2014. On behalf of the

[perl6/specs] 3e4846: Added FSVO lemma

2014-06-28 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3e4846773054d8d60b3f93ab6e4cd85e123a7686 https://github.com/perl6/specs/commit/3e4846773054d8d60b3f93ab6e4cd85e123a7686 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-27 (Fri, 27 Jun 2014)

[perl6/specs] 03a91b: Spec Buffer.subbuf-rw

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 03a91bada1bcfb07202ac27cfb5c39decc00b9c7 https://github.com/perl6/specs/commit/03a91bada1bcfb07202ac27cfb5c39decc00b9c7 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-22 (Sun, 22 Jun 2014)

[perl6/specs] 2d0d5a: Some more elaboration about CompUnit class

2014-06-22 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2d0d5ac1da238a79abdc4a1724fcefe3471ef3ca https://github.com/perl6/specs/commit/2d0d5ac1da238a79abdc4a1724fcefe3471ef3ca Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-22 (Sun, 22 Jun 2014)

[perl6/specs] 11a708: Tweaks to parse-spec specification

2014-06-20 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 11a70879d88b12b4ef85eee9c5c8d7d18b88d5fa https://github.com/perl6/specs/commit/11a70879d88b12b4ef85eee9c5c8d7d18b88d5fa Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-17 (Tue, 17 Jun 2014)

Parrot 6.5.0 Black-winged Lovebird Released

2014-06-17 Thread Reini Urban
On behalf of the Parrot team, I'm proud to announce Parrot 6.5.0, also known as Black-winged Lovebird. Parrot (http://parrot.org/) is a virtual machine aimed at running all dynamic languages. Parrot 6.5.0 is available on Parrot's FTP site (ftp://ftp.parrot.org/pub/parrot/releases/devel/6.5.0/),

[perl6/specs] f04f0a: Remove old S17

2014-06-16 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f04f0abee9e696eb01726c07c56d76497b156c85 https://github.com/perl6/specs/commit/f04f0abee9e696eb01726c07c56d76497b156c85 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-16 (Mon, 16 Jun 2014)

[perl6/specs] 480e2e: Elaborate some more on S22:

2014-06-16 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 480e2ef4bcd455b4786c3d6729a283444747a7c0 https://github.com/perl6/specs/commit/480e2ef4bcd455b4786c3d6729a283444747a7c0 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-16 (Mon, 16 Jun 2014)

[perl6/specs] 309a88: Some more S22 tweaks, introducing .parse-spec

2014-06-16 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 309a88292c5a1aa961272656be2c54e56946c5bf https://github.com/perl6/specs/commit/309a88292c5a1aa961272656be2c54e56946c5bf Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-16 (Mon, 16 Jun 2014)

Re: Jargon

2014-06-14 Thread Parrot Raiser
On 6/13/14, Will Coleda w...@coleda.com wrote: See: https://github.com/perl6/specs/blob/master/S99-glossary.pod which is nicely formatted here: http://perlcabal.org/syn/S99.html Great, thanks. Looks as though I was late, not premature.

[perl6/specs] 3dabef: Improve circumfix entry a bit.

2014-06-14 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 3dabef92eed3a2d453ba2d9b3f034ae10e90c245 https://github.com/perl6/specs/commit/3dabef92eed3a2d453ba2d9b3f034ae10e90c245 Author: pmichaud pmich...@pobox.com Date: 2014-06-14 (Sat, 14 Jun 2014) Changed

[perl6/specs] 2f45ae: More glossary updates (Synopsis, TMTOWTDI)

2014-06-14 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2f45ae578facc41f77559e9caf9e762c6999dcfe https://github.com/perl6/specs/commit/2f45ae578facc41f77559e9caf9e762c6999dcfe Author: pmichaud pmich...@pobox.com Date: 2014-06-14 (Sat, 14 Jun 2014) Changed

[perl6/specs] 2a277a: spec zip-latest

2014-06-14 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2a277a7b5199eaca0b1ceeb5fb5c35b474b3cf39 https://github.com/perl6/specs/commit/2a277a7b5199eaca0b1ceeb5fb5c35b474b3cf39 Author: Timo Paulssen timona...@perpetuum-immobile.de Date: 2014-06-14 (Sat, 14 Jun

Jargon

2014-06-13 Thread Parrot Raiser
As typically happens with any complex project, Perl 6 development has produced a jargon that is almost impenetrable to outsiders. (It's mostly on top of general Perl parlance, with some CS insertions.) In order to explain 6 to the world in general, a Rosetta Stone is going to be necessary. The

Re: Jargon

2014-06-13 Thread Will Coleda
See: https://github.com/perl6/specs/blob/master/S99-glossary.pod which is nicely formatted here: http://perlcabal.org/syn/S99.html Regards. On Fri, Jun 13, 2014 at 10:29 AM, Parrot Raiser 1parr...@gmail.com wrote: As typically happens with any complex project, Perl 6 development has

[perl6/specs] dbfaf5: minor fixes, updates

2014-06-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: dbfaf58c566be8143705d900a860d6ea744bcedc https://github.com/perl6/specs/commit/dbfaf58c566be8143705d900a860d6ea744bcedc Author: Will Coke Coleda w...@coleda.com Date: 2014-06-13 (Fri, 13 Jun 2014)

[perl6/specs] a93489: add twigil

2014-06-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: a93489e612d483b84969b6376513610a1223b4a5 https://github.com/perl6/specs/commit/a93489e612d483b84969b6376513610a1223b4a5 Author: Will Coke Coleda w...@coleda.com Date: 2014-06-13 (Fri, 13 Jun 2014)

[perl6/specs] 2b0409: fix twigil link

2014-06-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 2b04097b884c1069188da01d050e5d4bf100d0be https://github.com/perl6/specs/commit/2b04097b884c1069188da01d050e5d4bf100d0be Author: Will Coke Coleda w...@coleda.com Date: 2014-06-13 (Fri, 13 Jun 2014)

[perl6/specs] f87f96: Add CURL lemma

2014-06-13 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f87f96be64a87a9117299861329ee9b3f68d22cd https://github.com/perl6/specs/commit/f87f96be64a87a9117299861329ee9b3f68d22cd Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-13 (Fri, 13 Jun 2014)

[perl6/specs] 67579a: :args named parcel argument in Grammar.parse

2014-06-12 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 67579a1cf7a3a461a04a7e1d2df664645c39b881 https://github.com/perl6/specs/commit/67579a1cf7a3a461a04a7e1d2df664645c39b881 Author: Stéphane Payrard cognomi...@gmail.com Date: 2014-06-13 (Fri, 13 Jun 2014)

[perl6/specs] e8d23f: Add mischan lemma

2014-06-11 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: e8d23f66bab847744b76e7fc05511d7c9de9c268 https://github.com/perl6/specs/commit/e8d23f66bab847744b76e7fc05511d7c9de9c268 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-11 (Wed, 11 Jun 2014)

[perl6/specs] 740854: actually mention that % does (Int, Int) - Int

2014-06-09 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 740854ee4da1568dac9dd2deef8bfa0d95d839ef https://github.com/perl6/specs/commit/740854ee4da1568dac9dd2deef8bfa0d95d839ef Author: Carl Masak cma...@gmail.com Date: 2014-06-09 (Mon, 09 Jun 2014) Changed

[perl6/specs] ca6648: [S03] make infix:% be rational if possible

2014-06-08 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ca66483bd8cec50859e5b79b9248e48c9d36ab50 https://github.com/perl6/specs/commit/ca66483bd8cec50859e5b79b9248e48c9d36ab50 Author: Carl Masak cma...@gmail.com Date: 2014-06-06 (Fri, 06 Jun 2014) Changed

[perl6/specs] ba919b: adding missing =back

2014-06-08 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ba919b589a23a8c17deaa07d3e0f571539b295bd https://github.com/perl6/specs/commit/ba919b589a23a8c17deaa07d3e0f571539b295bd Author: grondilu grond...@yahoo.fr Date: 2014-06-07 (Sat, 07 Jun 2014) Changed

[perl6/specs] 5cad81: Int % Int should give Int, not Rat.

2014-06-08 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5cad8110c936c392b8a4304781ef767e1a7d7b0c https://github.com/perl6/specs/commit/5cad8110c936c392b8a4304781ef767e1a7d7b0c Author: Konrad Borowski x@o2.pl Date: 2014-06-08 (Sun, 08 Jun 2014) Changed

[perl6/specs] fe5c01: Mandate autogeneration of indirect metaops

2014-06-07 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: fe5c01dc98e1053ec131d77457f2acb59cb2b498 https://github.com/perl6/specs/commit/fe5c01dc98e1053ec131d77457f2acb59cb2b498 Author: TimToady la...@wall.org Date: 2014-06-04 (Wed, 04 Jun 2014) Changed paths:

[perl6/specs] 10d852: Clarify :16sweet a bit

2014-06-07 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 10d852eb548ac636928fd6f3e03a03a019818e45 https://github.com/perl6/specs/commit/10d852eb548ac636928fd6f3e03a03a019818e45 Author: Jonathan Scott Duff d...@pobox.com Date: 2014-06-05 (Thu, 05 Jun 2014)

[perl6/specs] 44dd6b: [S15] typos

2014-06-07 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 44dd6bd7b14777251220f6b3e3781b7853a178db https://github.com/perl6/specs/commit/44dd6bd7b14777251220f6b3e3781b7853a178db Author: Nick Patch pa...@cpan.org Date: 2014-06-05 (Thu, 05 Jun 2014) Changed

[perl6/specs] ba7e60: Spec Distro.path-sep

2014-06-01 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ba7e60b50c4a8eb4cfccd3b8770b8fda3f97e946 https://github.com/perl6/specs/commit/ba7e60b50c4a8eb4cfccd3b8770b8fda3f97e946 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-31 (Sat, 31 May 2014)

[perl6/specs] 5fb62b: Spec $?PERL/$*PERL.(VMnames|DISTROnames)

2014-06-01 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 5fb62b7937a88ab44141ee59586d4dc373f2b447 https://github.com/perl6/specs/commit/5fb62b7937a88ab44141ee59586d4dc373f2b447 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-31 (Sat, 31 May 2014)

[perl6/specs] 996b7e: Add lemma's for CLI and CUR

2014-06-01 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 996b7e20c011207c8ef21a089ba4952de4b2f10d https://github.com/perl6/specs/commit/996b7e20c011207c8ef21a089ba4952de4b2f10d Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-31 (Sat, 31 May 2014)

[perl6/specs] fb4171: Spec $*USER, $*GROUP, $*EUSER, $*EGROUP

2014-06-01 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: fb4171b5c74b32778cab85638e015ef8dd6de384 https://github.com/perl6/specs/commit/fb4171b5c74b32778cab85638e015ef8dd6de384 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-06-02 (Mon, 02 Jun 2014)

[perl6/specs] 668d38: [S99] some more explanation on 'golf'

2014-05-31 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 668d38673469fc08f99c5e7974ec7e8fa8d10280 https://github.com/perl6/specs/commit/668d38673469fc08f99c5e7974ec7e8fa8d10280 Author: Carl Masak cma...@gmail.com Date: 2014-05-31 (Sat, 31 May 2014) Changed

[perl6/specs] bde997: Add lemma's for golf and golfing

2014-05-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: bde99720a2a04e285820a08c3828f21103ff6a28 https://github.com/perl6/specs/commit/bde99720a2a04e285820a08c3828f21103ff6a28 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-30 (Fri, 30 May 2014)

[perl6/specs] c03355: Add empty diffy lemma *nudge* *nudge*

2014-05-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: c0335512468fdf9fc1499d4dc683b7599481dbf0 https://github.com/perl6/specs/commit/c0335512468fdf9fc1499d4dc683b7599481dbf0 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-30 (Fri, 30 May 2014)

[perl6/specs] 42e6cd: [S99] explain diffy, fiddly, iffy

2014-05-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 42e6cd71455d90b19ebe69992b9d89d0ff430433 https://github.com/perl6/specs/commit/42e6cd71455d90b19ebe69992b9d89d0ff430433 Author: Carl Masak cma...@gmail.com Date: 2014-05-30 (Fri, 30 May 2014) Changed

[perl6/specs] 60d136: [S99] also add empty 'fiddly', 'iffy' entries

2014-05-30 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 60d136b53277ecfe0912a5d9b7ed369d4cce7ac1 https://github.com/perl6/specs/commit/60d136b53277ecfe0912a5d9b7ed369d4cce7ac1 Author: Carl Masak cma...@gmail.com Date: 2014-05-30 (Fri, 30 May 2014) Changed

[perl6/specs] 6c40e3: Spec $*KERNEL.release

2014-05-29 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 6c40e3a443e2d97175f0bb41dd1e8faed3e65897 https://github.com/perl6/specs/commit/6c40e3a443e2d97175f0bb41dd1e8faed3e65897 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-29 (Thu, 29 May 2014)

Parrot 6.4.0 Double-eyed Fig Parrot released!

2014-05-27 Thread Bruce Gray
(Dateline: 2014-05-21) On behalf of the Parrot team, I'm proud to announce Parrot 6.4.0, also known as Double-eyed Fig Parrot. Parrot (http://parrot.org/) is a virtual machine aimed at running all dynamic languages. Parrot 6.4.0 is available on Parrot's FTP site

[perl6/specs] 29d402: Specify IO.* return values and Nil on failure

2014-05-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 29d4026292c58b11c310022caf6fbb67aed973eb https://github.com/perl6/specs/commit/29d4026292c58b11c310022caf6fbb67aed973eb Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-25 (Sun, 25 May 2014)

[perl6/specs] f017ef: Further refinement on IO.x methods

2014-05-25 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: f017efdf4b971510b64beffc9d0086583b28943a https://github.com/perl6/specs/commit/f017efdf4b971510b64beffc9d0086583b28943a Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-26 (Mon, 26 May 2014)

[perl6/specs] 923030: Correct insconsistency

2014-05-24 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 9230300c48017cf53dd903b00e2ae89152bc4db3 https://github.com/perl6/specs/commit/9230300c48017cf53dd903b00e2ae89152bc4db3 Author: Stéphane Payrard cognomi...@gmail.com Date: 2014-05-23 (Fri, 23 May 2014)

[perl6/specs] ecfdde: [S17] spec :expires named for .uniq

2014-05-19 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ecfddece391c9a2e766698444dd843f360f180f4 https://github.com/perl6/specs/commit/ecfddece391c9a2e766698444dd843f360f180f4 Author: Carl Masak cma...@gmail.com Date: 2014-05-18 (Sun, 18 May 2014) Changed

[perl6/specs] b7de31: More precisely spec $?PERL / $*PERL

2014-05-19 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: b7de316d28e04404c5518c37917bc043eb347b74 https://github.com/perl6/specs/commit/b7de316d28e04404c5518c37917bc043eb347b74 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-18 (Sun, 18 May 2014)

[perl6/specs] 94cb8d: [S17] improve the description of squish/uniq :expi...

2014-05-19 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 94cb8d8b1b4ced2c063fc43c1c13202cc7947796 https://github.com/perl6/specs/commit/94cb8d8b1b4ced2c063fc43c1c13202cc7947796 Author: Carl Masak cma...@gmail.com Date: 2014-05-18 (Sun, 18 May 2014) Changed

[perl6/specs] 25eb87: [S06] remove fossil

2014-05-19 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 25eb879f363e76b550330adcb7fe8a148d57e526 https://github.com/perl6/specs/commit/25eb879f363e76b550330adcb7fe8a148d57e526 Author: Carl Masak cma...@gmail.com Date: 2014-05-18 (Sun, 18 May 2014) Changed

[perl6/specs] 14fb9c: Some new lemma's: RC UGT

2014-05-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 14fb9cb1ba7d274679ff8cc87cdaa430e76cb23e https://github.com/perl6/specs/commit/14fb9cb1ba7d274679ff8cc87cdaa430e76cb23e Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-16 (Fri, 16 May 2014)

[perl6/specs] ce1aea: Spec $*VM.precomp-ext

2014-05-17 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: ce1aeaca76fe7f51695f18a8e21921da62afc543 https://github.com/perl6/specs/commit/ce1aeaca76fe7f51695f18a8e21921da62afc543 Author: Elizabeth Mattijsen l...@dijkmat.nl Date: 2014-05-16 (Fri, 16 May 2014)

<    5   6   7   8   9   10   11   12   13   14   >