Correction on rockspecs.
Addition of new rockspecs for version 2.3.0.
This commit is contained in:
parent
b86365d964
commit
c527024640
@ -1,7 +1,8 @@
|
|||||||
package = "LuaSQL-MySQL"
|
package = "LuaSQL-MySQL"
|
||||||
version = "2.3.0-1"
|
version = "2.3.0-1"
|
||||||
source = {
|
source = {
|
||||||
url = "git://github.com/keplerproject/luasql.git"
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
}
|
}
|
||||||
description = {
|
description = {
|
||||||
summary = "Database connectivity for Lua (MySQL driver)",
|
summary = "Database connectivity for Lua (MySQL driver)",
|
||||||
|
35
rockspec/luasql-oci8-2.3.0-1.rockspec
Normal file
35
rockspec/luasql-oci8-2.3.0-1.rockspec
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package = "LuaSQL-OCI8"
|
||||||
|
version = "2.3.0-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (Oracle 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.1"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
OCI8 = {
|
||||||
|
header = "oci.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.oci8"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_oci8.c" },
|
||||||
|
libraries = { "z", "clntsh", },
|
||||||
|
incdirs = { "$(OCI8_INCDIR)" },
|
||||||
|
libdirs = { "$(OCI8_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
35
rockspec/luasql-odbc-2.3.0-1.rockspec
Normal file
35
rockspec/luasql-odbc-2.3.0-1.rockspec
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package = "LuaSQL-ODBC"
|
||||||
|
version = "2.3.0-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (ODBC 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.1"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
ODBC = {
|
||||||
|
header = "sql.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.odbc"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_odbc.c" },
|
||||||
|
libraries = { "odbc" },
|
||||||
|
incdirs = { "$(ODBC_INCDIR)" },
|
||||||
|
libdirs = { "$(ODBC_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,8 @@
|
|||||||
package = "LuaSQL-Postgres"
|
package = "LuaSQL-Postgres"
|
||||||
version = "2.3.0-1"
|
version = "2.3.0-1"
|
||||||
source = {
|
source = {
|
||||||
url = "git://github.com/keplerproject/luasql.git"
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
}
|
}
|
||||||
description = {
|
description = {
|
||||||
summary = "Database connectivity for Lua (Postgres driver)",
|
summary = "Database connectivity for Lua (Postgres driver)",
|
||||||
|
35
rockspec/luasql-sqlite-2.3.0-1.rockspec
Normal file
35
rockspec/luasql-sqlite-2.3.0-1.rockspec
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
package = "LuaSQL-SQLite"
|
||||||
|
version = "2.3.0-1"
|
||||||
|
source = {
|
||||||
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
|
}
|
||||||
|
description = {
|
||||||
|
summary = "Database connectivity for Lua (SQLite 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.1"
|
||||||
|
}
|
||||||
|
external_dependencies = {
|
||||||
|
SQLITE = {
|
||||||
|
header = "sqlite.h"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
build = {
|
||||||
|
type = "builtin",
|
||||||
|
modules = {
|
||||||
|
["luasql.sqlite"] = {
|
||||||
|
sources = { "src/luasql.c", "src/ls_sqlite.c" },
|
||||||
|
libraries = { "sqlite" },
|
||||||
|
incdirs = { "$(SQLITE_INCDIR)" },
|
||||||
|
libdirs = { "$(SQLITE_LIBDIR)" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,8 @@
|
|||||||
package = "LuaSQL-SQLite3"
|
package = "LuaSQL-SQLite3"
|
||||||
version = "2.3.0-1"
|
version = "2.3.0-1"
|
||||||
source = {
|
source = {
|
||||||
url = "git://github.com/keplerproject/luasql.git"
|
url = "git://github.com/keplerproject/luasql.git",
|
||||||
|
branch = "v2.3.0",
|
||||||
}
|
}
|
||||||
description = {
|
description = {
|
||||||
summary = "Database connectivity for Lua (SQLite3 driver)",
|
summary = "Database connectivity for Lua (SQLite3 driver)",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user