diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2024-08-29 18:08:12 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2024-08-29 18:08:12 -0300 |
commit | 0c9acd4acf59e45ceccb4b242a2c6c330149c5f5 (patch) | |
tree | 3e4b0355ece2ce1649b596c0becc64a18eeb4c09 | |
parent | cf248455ac6390fb3a70afe74700f1e033693753 (diff) | |
download | lua-compat-5.3-0.14.tar.gz lua-compat-5.3-0.14.tar.bz2 lua-compat-5.3-0.14.zip |
Release: 0.14v0.14
-rw-r--r-- | rockspecs/compat53-0.13-1.rockspec | 2 | ||||
-rw-r--r-- | rockspecs/compat53-0.14-1.rockspec | 33 |
2 files changed, 34 insertions, 1 deletions
diff --git a/rockspecs/compat53-0.13-1.rockspec b/rockspecs/compat53-0.13-1.rockspec index 86743b2..f08dc66 100644 --- a/rockspecs/compat53-0.13-1.rockspec +++ b/rockspecs/compat53-0.13-1.rockspec | |||
@@ -2,7 +2,7 @@ package = "compat53" | |||
2 | version = "0.13-1" | 2 | version = "0.13-1" |
3 | source = { | 3 | source = { |
4 | url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.13.zip", | 4 | url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.13.zip", |
5 | dir = "lua-compat-5.3-0.12" | 5 | dir = "lua-compat-5.3-0.13" |
6 | } | 6 | } |
7 | description = { | 7 | description = { |
8 | summary = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1", | 8 | summary = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1", |
diff --git a/rockspecs/compat53-0.14-1.rockspec b/rockspecs/compat53-0.14-1.rockspec new file mode 100644 index 0000000..54ad4a9 --- /dev/null +++ b/rockspecs/compat53-0.14-1.rockspec | |||
@@ -0,0 +1,33 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.14-1" | ||
3 | source = { | ||
4 | url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.14.zip", | ||
5 | dir = "lua-compat-5.3-0.14" | ||
6 | } | ||
7 | description = { | ||
8 | summary = "Compatibility module providing Lua-5.3-style APIs for Lua 5.2 and 5.1", | ||
9 | detailed = [[ | ||
10 | This is a small module that aims to make it easier to write Lua | ||
11 | code in a Lua-5.3-style that runs on Lua 5.1+. | ||
12 | It does *not* make Lua 5.2 (or even 5.1) entirely compatible | ||
13 | with Lua 5.3, but it brings the API closer to that of Lua 5.3. | ||
14 | ]], | ||
15 | homepage = "https://github.com/lunarmodules/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.5" | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.file_mt"] = "compat53/file_mt.lua", | ||
26 | ["compat53.init"] = "compat53/init.lua", | ||
27 | ["compat53.io"] = "liolib.c", | ||
28 | ["compat53.module"] = "compat53/module.lua", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | ["compat53.table"] = "ltablib.c", | ||
31 | ["compat53.utf8"] = "lutf8lib.c" | ||
32 | } | ||
33 | } | ||