Release 0.3.10

This commit is contained in:
Alexey Melnichuk 2019-06-23 18:09:25 +03:00
parent 141f5acdf9
commit bddb7eb4c8
3 changed files with 79 additions and 4 deletions

View File

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2014-2018 Alexey Melnichuk
Copyright (c) 2014-2019 Alexey Melnichuk
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -0,0 +1,75 @@
package = "Lua-cURL"
version = "0.3.10-1"
source = {
url = "https://github.com/Lua-cURL/Lua-cURLv3/archive/v0.3.10.zip",
dir = "Lua-cURLv3-0.3.10",
}
description = {
summary = "Lua binding to libcurl",
detailed = [[
]],
homepage = "https://github.com/Lua-cURL",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1, < 5.4"
}
external_dependencies = {
platforms = {
windows = {
CURL = {
header = "curl/curl.h",
library = "libcurl",
}
};
unix = {
CURL = {
header = "curl/curl.h",
-- library = "curl",
}
};
}
}
build = {
copy_directories = {'doc', 'examples', 'test'},
type = "builtin",
platforms = {
windows = { modules = {
lcurl = {
libraries = {"libcurl", "ws2_32"},
}
}},
unix = { modules = {
lcurl = {
libraries = {"curl"},
}
}}
},
modules = {
["cURL" ] = "src/lua/cURL.lua",
["cURL.safe" ] = "src/lua/cURL/safe.lua",
["cURL.utils" ] = "src/lua/cURL/utils.lua",
["cURL.impl.cURL" ] = "src/lua/cURL/impl/cURL.lua",
lcurl = {
sources = {
"src/l52util.c", "src/lceasy.c", "src/lcerror.c",
"src/lchttppost.c", "src/lcurl.c", "src/lcutils.c",
"src/lcmulti.c", "src/lcshare.c", "src/lcmime.c",
"src/lcurlapi.c",
},
incdirs = { "$(CURL_INCDIR)" },
libdirs = { "$(CURL_LIBDIR)" }
},
}
}

View File

@ -1,7 +1,7 @@
--
-- Author: Alexey Melnichuk <alexeymelnichuck@gmail.com>
--
-- Copyright (C) 2014-2018 Alexey Melnichuk <alexeymelnichuck@gmail.com>
-- Copyright (C) 2014-2019 Alexey Melnichuk <alexeymelnichuck@gmail.com>
--
-- Licensed according to the included 'LICENSE' document
--
@ -10,9 +10,9 @@
local module_info = {
_NAME = "Lua-cURL";
_VERSION = "0.3.9";
_VERSION = "0.3.10";
_LICENSE = "MIT";
_COPYRIGHT = "Copyright (c) 2014-2018 Alexey Melnichuk";
_COPYRIGHT = "Copyright (c) 2014-2019 Alexey Melnichuk";
}
local function hash_id(str)