bunkerweb 1.4.0

This commit is contained in:
bunkerity
2022-06-03 17:24:14 +02:00
parent 3a078326c5
commit a9f886804a
5245 changed files with 1432051 additions and 27894 deletions

View File

@@ -0,0 +1,43 @@
local package_name = "lualogging"
local package_version = "1.5.1"
local rockspec_revision = "1"
local github_account_name = "lunarmodules"
local github_repo_name = package_name
package = package_name
version = package_version.."-"..rockspec_revision
source = {
url = "git://github.com/"..github_account_name.."/"..github_repo_name..".git",
tag = "v"..package_version
}
description = {
summary = "A simple API to use logging features",
detailed = [[
LuaLogging provides a simple API to use logging features in Lua. Its design was
based on log4j. LuaLogging currently supports, through the use of appenders,
console, file, rolling file, email, socket and SQL outputs.
]],
homepage = "https://github.com/"..github_account_name.."/"..github_repo_name,
license = "MIT/X11",
}
dependencies = {
"luasocket"
}
build = {
type = "none",
install = {
lua = {
['logging'] = "src/logging.lua",
['logging.console'] = "src/logging/console.lua",
['logging.file'] = "src/logging/file.lua",
['logging.rolling_file'] = "src/logging/rolling_file.lua",
['logging.email'] = "src/logging/email.lua",
['logging.sql'] = "src/logging/sql.lua",
['logging.socket'] = "src/logging/socket.lua",
}
},
copy_directories = {
"docs",
},
}