mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-12-26 04:28:20 +01:00
chore: Release v3.0.0
This commit is contained in:
parent
020c2c746b
commit
88c8a85cb6
@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [v3.0.0](https://github.com/lunarmodules/luasocket/releases/v3.0.0) — unreleased
|
## [v3.0.0](https://github.com/lunarmodules/luasocket/releases/v3.0.0) — 2022-03-25
|
||||||
|
|
||||||
The last time LuaSocket had a stable release tag was 14 years ago when 2.0.2 was tagged.
|
The last time LuaSocket had a stable release tag was 14 years ago when 2.0.2 was tagged.
|
||||||
A v3 release candidate was tagged 9 years ago.
|
A v3 release candidate was tagged 9 years ago.
|
||||||
|
@ -87,10 +87,9 @@ Author: <a href="http://www.impa.br/~diego">Diego Nehab</a>
|
|||||||
<h2 id="download">Download</h2>
|
<h2 id="download">Download</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
LuaSocket version 3.0-rc1 is now available for download!
|
LuaSocket version 3.0.0 is now available for download!
|
||||||
It is compatible with Lua 5.1 and 5.2, and has
|
It is compatible with Lua 5.1 through 5.4.
|
||||||
been tested on Windows XP, Linux, and Mac OS X. Chances
|
Chances are it works well on most UNIX distributions and Windows flavors.
|
||||||
are it works well on most UNIX distributions and Windows flavors.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
134
rockspecs/luasocket-3.0.0-1.rockspec
Normal file
134
rockspecs/luasocket-3.0.0-1.rockspec
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
package = "LuaSocket"
|
||||||
|
version = "3.0.0-1"
|
||||||
|
source = {
|
||||||
|
url = "git+https://github.com/lunarmodules/luasocket.git",
|
||||||
|
tag = "v3.0.0"
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Network support for the Lua language",
|
||||||
|
detailed = [[
|
||||||
|
LuaSocket is a Lua extension library composed of two parts: a set of C
|
||||||
|
modules that provide support for the TCP and UDP transport layers, and a
|
||||||
|
set of Lua modules that provide functions commonly needed by applications
|
||||||
|
that deal with the Internet.
|
||||||
|
]],
|
||||||
|
homepage = "https://github.com/lunarmodules/luasocket",
|
||||||
|
license = "MIT"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.1"
|
||||||
|
}
|
||||||
|
|
||||||
|
local function make_plat(plat)
|
||||||
|
local defines = {
|
||||||
|
unix = {
|
||||||
|
"LUASOCKET_DEBUG"
|
||||||
|
},
|
||||||
|
macosx = {
|
||||||
|
"LUASOCKET_DEBUG",
|
||||||
|
"UNIX_HAS_SUN_LEN"
|
||||||
|
},
|
||||||
|
win32 = {
|
||||||
|
"LUASOCKET_DEBUG",
|
||||||
|
"NDEBUG"
|
||||||
|
},
|
||||||
|
mingw32 = {
|
||||||
|
"LUASOCKET_DEBUG",
|
||||||
|
"LUASOCKET_INET_PTON",
|
||||||
|
"WINVER=0x0501"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
local modules = {
|
||||||
|
["socket.core"] = {
|
||||||
|
sources = {
|
||||||
|
"src/luasocket.c"
|
||||||
|
, "src/timeout.c"
|
||||||
|
, "src/buffer.c"
|
||||||
|
, "src/io.c"
|
||||||
|
, "src/auxiliar.c"
|
||||||
|
, "src/options.c"
|
||||||
|
, "src/inet.c"
|
||||||
|
, "src/except.c"
|
||||||
|
, "src/select.c"
|
||||||
|
, "src/tcp.c"
|
||||||
|
, "src/udp.c"
|
||||||
|
, "src/compat.c" },
|
||||||
|
defines = defines[plat],
|
||||||
|
incdir = "/src"
|
||||||
|
},
|
||||||
|
["mime.core"] = {
|
||||||
|
sources = { "src/mime.c", "src/compat.c" },
|
||||||
|
defines = defines[plat],
|
||||||
|
incdir = "/src"
|
||||||
|
},
|
||||||
|
["socket.http"] = "src/http.lua",
|
||||||
|
["socket.url"] = "src/url.lua",
|
||||||
|
["socket.tp"] = "src/tp.lua",
|
||||||
|
["socket.ftp"] = "src/ftp.lua",
|
||||||
|
["socket.headers"] = "src/headers.lua",
|
||||||
|
["socket.smtp"] = "src/smtp.lua",
|
||||||
|
ltn12 = "src/ltn12.lua",
|
||||||
|
socket = "src/socket.lua",
|
||||||
|
mime = "src/mime.lua"
|
||||||
|
}
|
||||||
|
if plat == "unix"
|
||||||
|
or plat == "macosx"
|
||||||
|
or plat == "haiku"
|
||||||
|
then
|
||||||
|
modules["socket.core"].sources[#modules["socket.core"].sources+1] = "src/usocket.c"
|
||||||
|
if plat == "haiku" then
|
||||||
|
modules["socket.core"].libraries = {"network"}
|
||||||
|
end
|
||||||
|
modules["socket.unix"] = {
|
||||||
|
sources = {
|
||||||
|
"src/buffer.c"
|
||||||
|
, "src/compat.c"
|
||||||
|
, "src/auxiliar.c"
|
||||||
|
, "src/options.c"
|
||||||
|
, "src/timeout.c"
|
||||||
|
, "src/io.c"
|
||||||
|
, "src/usocket.c"
|
||||||
|
, "src/unix.c"
|
||||||
|
, "src/unixdgram.c"
|
||||||
|
, "src/unixstream.c" },
|
||||||
|
defines = defines[plat],
|
||||||
|
incdir = "/src"
|
||||||
|
}
|
||||||
|
modules["socket.serial"] = {
|
||||||
|
sources = {
|
||||||
|
"src/buffer.c"
|
||||||
|
, "src/compat.c"
|
||||||
|
, "src/auxiliar.c"
|
||||||
|
, "src/options.c"
|
||||||
|
, "src/timeout.c"
|
||||||
|
, "src/io.c"
|
||||||
|
, "src/usocket.c"
|
||||||
|
, "src/serial.c" },
|
||||||
|
defines = defines[plat],
|
||||||
|
incdir = "/src"
|
||||||
|
}
|
||||||
|
end
|
||||||
|
if plat == "win32"
|
||||||
|
or plat == "mingw32"
|
||||||
|
then
|
||||||
|
modules["socket.core"].sources[#modules["socket.core"].sources+1] = "src/wsocket.c"
|
||||||
|
modules["socket.core"].libraries = { "ws2_32" }
|
||||||
|
end
|
||||||
|
return { modules = modules }
|
||||||
|
end
|
||||||
|
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
platforms = {
|
||||||
|
unix = make_plat("unix"),
|
||||||
|
macosx = make_plat("macosx"),
|
||||||
|
haiku = make_plat("haiku"),
|
||||||
|
win32 = make_plat("win32"),
|
||||||
|
mingw32 = make_plat("mingw32")
|
||||||
|
},
|
||||||
|
copy_directories = {
|
||||||
|
"docs"
|
||||||
|
, "samples"
|
||||||
|
, "etc"
|
||||||
|
, "test" }
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user