mirror of
https://github.com/etlegacy/etlegacy-libs.git
synced 2025-02-24 04:01:12 +00:00
libs: commited missing upstream files
This commit is contained in:
parent
7d0df9d2bd
commit
f32739f7d8
3 changed files with 105 additions and 0 deletions
35
luasql/rockspec/luasql-postgres-2.3.1-1.rockspec
Normal file
35
luasql/rockspec/luasql-postgres-2.3.1-1.rockspec
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
package = "LuaSQL-Postgres"
|
||||||
|
version = "2.3.1-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.1",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (Postgres driver)",
|
||||||
|
detailed = [[
|
||||||
|
LuaSQL is a simple interface from Lua to a DBMS. It enables a
|
||||||
|
Lua program to connect to databases, execute arbitrary SQL statements
|
||||||
|
and retrieve results in a row-by-row cursor fashion.
|
||||||
|
]],
|
||||||
|
license = "MIT/X11",
|
||||||
|
homepage = "http://www.keplerproject.org/luasql/"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.0"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
PGSQL = {
|
||||||
|
header = "pg_config.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.postgres"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_postgres.c" },
|
||||||
|
libraries = { "pq" },
|
||||||
|
incdirs = { "$(PGSQL_INCDIR)" },
|
||||||
|
libdirs = { "$(PGSQL_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
35
luasql/rockspec/luasql-postgres-2.3.2-1.rockspec
Normal file
35
luasql/rockspec/luasql-postgres-2.3.2-1.rockspec
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
package = "LuaSQL-Postgres"
|
||||||
|
version = "2.3.2-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.2",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (Postgres driver)",
|
||||||
|
detailed = [[
|
||||||
|
LuaSQL is a simple interface from Lua to a DBMS. It enables a
|
||||||
|
Lua program to connect to databases, execute arbitrary SQL statements
|
||||||
|
and retrieve results in a row-by-row cursor fashion.
|
||||||
|
]],
|
||||||
|
license = "MIT/X11",
|
||||||
|
homepage = "http://www.keplerproject.org/luasql/"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.0"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
PGSQL = {
|
||||||
|
header = "pg_config.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.postgres"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_postgres.c" },
|
||||||
|
libraries = { "pq" },
|
||||||
|
incdirs = { "$(PGSQL_INCDIR)" },
|
||||||
|
libdirs = { "$(PGSQL_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
35
luasql/rockspec/luasql-postgres-2.3.3-1.rockspec
Normal file
35
luasql/rockspec/luasql-postgres-2.3.3-1.rockspec
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
package = "LuaSQL-Postgres"
|
||||||
|
version = "2.3.3-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.3",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (Postgres driver)",
|
||||||
|
detailed = [[
|
||||||
|
LuaSQL is a simple interface from Lua to a DBMS. It enables a
|
||||||
|
Lua program to connect to databases, execute arbitrary SQL statements
|
||||||
|
and retrieve results in a row-by-row cursor fashion.
|
||||||
|
]],
|
||||||
|
license = "MIT/X11",
|
||||||
|
homepage = "http://www.keplerproject.org/luasql/"
|
||||||
|
}
|
||||||
|
dependencies = {
|
||||||
|
"lua >= 5.0"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
PGSQL = {
|
||||||
|
header = "pg_config.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.postgres"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_postgres.c" },
|
||||||
|
libraries = { "pq" },
|
||||||
|
incdirs = { "$(PGSQL_INCDIR)" },
|
||||||
|
libdirs = { "$(PGSQL_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue