diff options
author | daurnimator <quae@daurnimator.com> | 2017-08-30 13:55:59 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-08-30 13:56:07 +1000 |
commit | b8e3766294b6bf11d70a8a202e633b2569675e77 (patch) | |
tree | c1f29081daf4a1dc3965ee260d88e2aeae9aa902 /vendor/compat53/rockspecs | |
parent | b92fca3b68e551d2583754c80196d524890e5ee4 (diff) | |
parent | 7333333568b13db56136e2354c55556adc7714ed (diff) | |
download | luaossl-b8e3766294b6bf11d70a8a202e633b2569675e77.tar.gz luaossl-b8e3766294b6bf11d70a8a202e633b2569675e77.tar.bz2 luaossl-b8e3766294b6bf11d70a8a202e633b2569675e77.zip |
Merge commit '7333333568b13db56136e2354c55556adc7714ed' as 'vendor/compat53'
Diffstat (limited to 'vendor/compat53/rockspecs')
-rw-r--r-- | vendor/compat53/rockspecs/compat53-0.1-1.rockspec | 31 | ||||
-rw-r--r-- | vendor/compat53/rockspecs/compat53-0.2-1.rockspec | 32 | ||||
-rw-r--r-- | vendor/compat53/rockspecs/compat53-0.3-1.rockspec | 32 | ||||
-rw-r--r-- | vendor/compat53/rockspecs/compat53-0.4-1.rockspec | 32 | ||||
-rw-r--r-- | vendor/compat53/rockspecs/compat53-0.5-1.rockspec | 32 | ||||
-rw-r--r-- | vendor/compat53/rockspecs/compat53-scm-0.rockspec | 32 |
6 files changed, 191 insertions, 0 deletions
diff --git a/vendor/compat53/rockspecs/compat53-0.1-1.rockspec b/vendor/compat53/rockspecs/compat53-0.1-1.rockspec new file mode 100644 index 0000000..0ff56b0 --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-0.1-1.rockspec | |||
@@ -0,0 +1,31 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.1-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.1.zip", | ||
5 | dir = "lua-compat-5.3-0.1", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53"] = "compat53.lua", | ||
26 | ["compat53.utf8"] = "lutf8lib.c", | ||
27 | ["compat53.table"] = "ltablib.c", | ||
28 | ["compat53.string"] = "lstrlib.c", | ||
29 | } | ||
30 | } | ||
31 | |||
diff --git a/vendor/compat53/rockspecs/compat53-0.2-1.rockspec b/vendor/compat53/rockspecs/compat53-0.2-1.rockspec new file mode 100644 index 0000000..1b3c80e --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-0.2-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.2-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.2.zip", | ||
5 | dir = "lua-compat-5.3-0.2", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.init"] = "compat53/init.lua", | ||
26 | ["compat53.module"] = "compat53/module.lua", | ||
27 | ["compat53.utf8"] = "lutf8lib.c", | ||
28 | ["compat53.table"] = "ltablib.c", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | } | ||
31 | } | ||
32 | |||
diff --git a/vendor/compat53/rockspecs/compat53-0.3-1.rockspec b/vendor/compat53/rockspecs/compat53-0.3-1.rockspec new file mode 100644 index 0000000..43f53d2 --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-0.3-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.3-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.3.zip", | ||
5 | dir = "lua-compat-5.3-0.3", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.init"] = "compat53/init.lua", | ||
26 | ["compat53.module"] = "compat53/module.lua", | ||
27 | ["compat53.utf8"] = "lutf8lib.c", | ||
28 | ["compat53.table"] = "ltablib.c", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | } | ||
31 | } | ||
32 | |||
diff --git a/vendor/compat53/rockspecs/compat53-0.4-1.rockspec b/vendor/compat53/rockspecs/compat53-0.4-1.rockspec new file mode 100644 index 0000000..9331e19 --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-0.4-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.4-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.4.zip", | ||
5 | dir = "lua-compat-5.3-0.4", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.init"] = "compat53/init.lua", | ||
26 | ["compat53.module"] = "compat53/module.lua", | ||
27 | ["compat53.utf8"] = "lutf8lib.c", | ||
28 | ["compat53.table"] = "ltablib.c", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | } | ||
31 | } | ||
32 | |||
diff --git a/vendor/compat53/rockspecs/compat53-0.5-1.rockspec b/vendor/compat53/rockspecs/compat53-0.5-1.rockspec new file mode 100644 index 0000000..3cceccd --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-0.5-1.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "0.5-1" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/v0.5.zip", | ||
5 | dir = "lua-compat-5.3-0.5", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.init"] = "compat53/init.lua", | ||
26 | ["compat53.module"] = "compat53/module.lua", | ||
27 | ["compat53.utf8"] = "lutf8lib.c", | ||
28 | ["compat53.table"] = "ltablib.c", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | } | ||
31 | } | ||
32 | |||
diff --git a/vendor/compat53/rockspecs/compat53-scm-0.rockspec b/vendor/compat53/rockspecs/compat53-scm-0.rockspec new file mode 100644 index 0000000..317e18c --- /dev/null +++ b/vendor/compat53/rockspecs/compat53-scm-0.rockspec | |||
@@ -0,0 +1,32 @@ | |||
1 | package = "compat53" | ||
2 | version = "scm-0" | ||
3 | source = { | ||
4 | url = "https://github.com/keplerproject/lua-compat-5.3/archive/master.zip", | ||
5 | dir = "lua-compat-5.3-master", | ||
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.3, 5.2, and 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/keplerproject/lua-compat-5.3", | ||
16 | license = "MIT" | ||
17 | } | ||
18 | dependencies = { | ||
19 | "lua >= 5.1, < 5.4", | ||
20 | --"struct" -- make Roberto's struct module optional | ||
21 | } | ||
22 | build = { | ||
23 | type = "builtin", | ||
24 | modules = { | ||
25 | ["compat53.init"] = "compat53/init.lua", | ||
26 | ["compat53.module"] = "compat53/module.lua", | ||
27 | ["compat53.utf8"] = "lutf8lib.c", | ||
28 | ["compat53.table"] = "ltablib.c", | ||
29 | ["compat53.string"] = "lstrlib.c", | ||
30 | } | ||
31 | } | ||
32 | |||