diff options
author | Sergio Queiroz <sqmedeiros@gmail.com> | 2017-01-04 14:59:48 -0300 |
---|---|---|
committer | Sergio Queiroz <sqmedeiros@gmail.com> | 2017-01-04 14:59:48 -0300 |
commit | fc7fd10621ba6777fe961d1425e90c080d1f2617 (patch) | |
tree | b1720568c92401ab9868eb86f6e36a622dc377c7 | |
parent | 02b61c3bcbda1b42959ecdf23750647f573f58af (diff) | |
download | lpeglabel-fc7fd10621ba6777fe961d1425e90c080d1f2617.tar.gz lpeglabel-fc7fd10621ba6777fe961d1425e90c080d1f2617.tar.bz2 lpeglabel-fc7fd10621ba6777fe961d1425e90c080d1f2617.zip |
Updating HISTORY and adding rockspec to version 1.2.0-1v1.2.0-1
-rw-r--r-- | HISTORY | 8 | ||||
-rw-r--r-- | rockspecs/lpeglabel-1.2.0-1.rockspec | 32 |
2 files changed, 39 insertions, 1 deletions
@@ -1,4 +1,10 @@ | |||
1 | HISTORY for LPegLabel 1.0.0-1 | 1 | HISTORY for LPegLabel 1.2.0-1 |
2 | |||
3 | * Changes from version 1.1.0-1 to 1.2.0-1 | ||
4 | --------------------------------- | ||
5 | + fixes bug when reporting the error position of an ordinary failure | ||
6 | + reports the farthest failure position for ordinary failures | ||
7 | |||
2 | 8 | ||
3 | * Changes from version 1.0.0-1 to 1.1.0-1 | 9 | * Changes from version 1.0.0-1 to 1.1.0-1 |
4 | --------------------------------- | 10 | --------------------------------- |
diff --git a/rockspecs/lpeglabel-1.2.0-1.rockspec b/rockspecs/lpeglabel-1.2.0-1.rockspec new file mode 100644 index 0000000..2fd17b9 --- /dev/null +++ b/rockspecs/lpeglabel-1.2.0-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "LPegLabel" | ||
2 | version = "1.2.0-1" | ||
3 | source = { | ||
4 | url = "https://github.com/sqmedeiros/lpeglabel/archive/v1.2.0-1.tar.gz", | ||
5 | tag = "v1.2.0-1", | ||
6 | dir = "lpeglabel-1.2.0-1", | ||
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 recovery | ||
14 | pattern should handle a given label. | ||
15 | LPegLabel also reports the farthest failure position in case of an ordinary failure. | ||
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 | } | ||