diff options
author | Undecidable Robot <undecidabot@gmail.com> | 2016-04-27 16:57:13 +0800 |
---|---|---|
committer | Undecidable Robot <undecidabot@gmail.com> | 2016-04-28 13:01:11 +0800 |
commit | 023ee65f23afa9f46a1cf0045577a0f6e9021e5b (patch) | |
tree | 860b5488aa370b4411366c201db28e2c5cdf3351 | |
parent | 144633507090f7bedf3a54e4593590a42dd2f210 (diff) | |
download | lpeglabel-023ee65f23afa9f46a1cf0045577a0f6e9021e5b.tar.gz lpeglabel-023ee65f23afa9f46a1cf0045577a0f6e9021e5b.tar.bz2 lpeglabel-023ee65f23afa9f46a1cf0045577a0f6e9021e5b.zip |
Adding rockspecs
-rw-r--r-- | rockspecs/lpeglabel-0.12.2-1.rockspec | 32 | ||||
-rw-r--r-- | rockspecs/lpeglabel-0.12.2-2.rockspec | 32 |
2 files changed, 64 insertions, 0 deletions
diff --git a/rockspecs/lpeglabel-0.12.2-1.rockspec b/rockspecs/lpeglabel-0.12.2-1.rockspec new file mode 100644 index 0000000..63500ff --- /dev/null +++ b/rockspecs/lpeglabel-0.12.2-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "LPegLabel" | ||
2 | version = "0.12.2-1" | ||
3 | source = { | ||
4 | url = "https://github.com/sqmedeiros/lpeglabel/archive/v0.12.2.tar.gz", | ||
5 | tag = "v0.12.2", | ||
6 | dir = "lpeglabel-0.12.2", | ||
7 | } | ||
8 | description = { | ||
9 | summary = "Parsing Expression Grammars For Lua with Labeled Failures", | ||
10 | detailed = [[ | ||
11 | LPegLabel is a conservative extension of the LPeg library that provides | ||
12 | an implementation of Parsing Expression Grammars (PEGs) with labeled failures. | ||
13 | Labels can be used to signal different kinds of erros and to specify which | ||
14 | alternative in a labeled ordered choice should handle a given label. | ||
15 | Labels can also be combined with the standard patterns of LPeg. | ||
16 | ]], | ||
17 | homepage = "https://github.com/sqmedeiros/lpeglabel/", | ||
18 | maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>", | ||
19 | license = "MIT/X11" | ||
20 | } | ||
21 | dependencies = { | ||
22 | "lua >= 5.2", | ||
23 | } | ||
24 | build = { | ||
25 | type = "builtin", | ||
26 | modules = { | ||
27 | lpeglabel = { | ||
28 | "lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c" | ||
29 | }, | ||
30 | relabel = "relabel.lua" | ||
31 | } | ||
32 | } | ||
diff --git a/rockspecs/lpeglabel-0.12.2-2.rockspec b/rockspecs/lpeglabel-0.12.2-2.rockspec new file mode 100644 index 0000000..e370f7d --- /dev/null +++ b/rockspecs/lpeglabel-0.12.2-2.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "LPegLabel" | ||
2 | version = "0.12.2-2" | ||
3 | source = { | ||
4 | url = "https://github.com/sqmedeiros/lpeglabel/archive/v0.12.2-2.tar.gz", | ||
5 | tag = "v0.12.2-2", | ||
6 | dir = "lpeglabel-0.12.2-2", | ||
7 | } | ||
8 | description = { | ||
9 | summary = "Parsing Expression Grammars For Lua with Labeled Failures", | ||
10 | detailed = [[ | ||
11 | LPegLabel is a conservative extension of the LPeg library that provides | ||
12 | an implementation of Parsing Expression Grammars (PEGs) with labeled failures. | ||
13 | Labels can be used to signal different kinds of erros and to specify which | ||
14 | alternative in a labeled ordered choice should handle a given label. | ||
15 | Labels can also be combined with the standard patterns of LPeg. | ||
16 | ]], | ||
17 | homepage = "https://github.com/sqmedeiros/lpeglabel/", | ||
18 | maintainer = "Sergio Medeiros <sqmedeiros@gmail.com>", | ||
19 | license = "MIT/X11" | ||
20 | } | ||
21 | dependencies = { | ||
22 | "lua >= 5.1", | ||
23 | } | ||
24 | build = { | ||
25 | type = "builtin", | ||
26 | modules = { | ||
27 | lpeglabel = { | ||
28 | "lpcap.c", "lpcode.c", "lpprint.c", "lptree.c", "lpvm.c" | ||
29 | }, | ||
30 | relabel = "relabel.lua" | ||
31 | } | ||
32 | } | ||