aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2023-10-19 16:20:49 -0300
committerHisham Muhammad <hisham@gobolinux.org>2023-10-19 16:20:49 -0300
commit4915332350f70e8efbfefb622ab139389b0762a7 (patch)
tree3bbf1324a0cfad6dad91230a5cd824a410eb9385
parentb182b416169dc5286df737b7bf64dd6be1bb8eef (diff)
downloadlua-compat-5.3-4915332350f70e8efbfefb622ab139389b0762a7.tar.gz
lua-compat-5.3-4915332350f70e8efbfefb622ab139389b0762a7.tar.bz2
lua-compat-5.3-4915332350f70e8efbfefb622ab139389b0762a7.zip
Release: 0.11v0.11
-rw-r--r--LICENSE2
-rw-r--r--rockspecs/compat53-0.11-1.rockspec33
2 files changed, 34 insertions, 1 deletions
diff --git a/LICENSE b/LICENSE
index 54288ae..193ed12 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,7 +1,7 @@
1The MIT License (MIT) 1The MIT License (MIT)
2 2
3Copyright (C) 1994-2020 Lua.org, PUC-Rio. 3Copyright (C) 1994-2020 Lua.org, PUC-Rio.
4Copyright (C) 2013-2022 The Lua-Compat-5.3 authors. 4Copyright (C) 2013-2023 The Lua-Compat-5.3 authors.
5 5
6Permission is hereby granted, free of charge, to any person obtaining a copy of 6Permission is hereby granted, free of charge, to any person obtaining a copy of
7this software and associated documentation files (the "Software"), to deal in 7this software and associated documentation files (the "Software"), to deal in
diff --git a/rockspecs/compat53-0.11-1.rockspec b/rockspecs/compat53-0.11-1.rockspec
new file mode 100644
index 0000000..9608f0a
--- /dev/null
+++ b/rockspecs/compat53-0.11-1.rockspec
@@ -0,0 +1,33 @@
1package = "compat53"
2version = "0.11-1"
3source = {
4 url = "https://github.com/lunarmodules/lua-compat-5.3/archive/v0.11.zip",
5 dir = "lua-compat-5.3-0.11",
6}
7description = {
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}
18dependencies = {
19 "lua >= 5.1, < 5.5",
20 --"struct" -- make Roberto's struct module optional
21}
22build = {
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 ["compat53.io"] = "liolib.c",
31 }
32}
33