-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e316bf3
commit 977323d
Showing
7 changed files
with
212 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-Firebird" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.0", | ||
} | ||
description = { | ||
summary = "Database connectivity for Lua (Firebird 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://keplerproject.github.io/luasql/" | ||
} | ||
dependencies = { | ||
"lua >= 5.1" | ||
} | ||
external_dependencies = { | ||
FB = { | ||
header = "ibase.h" | ||
} | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["luasql.firebird"] = { | ||
sources = { "src/luasql.c", "src/ls_firebird.c" }, | ||
libraries = { "fbclient" }, | ||
incdirs = { "$(FB_INCDIR)" }, | ||
libdirs = { "$(FB_LIBDIR)" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-MySQL" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.0", | ||
} | ||
description = { | ||
summary = "Database connectivity for Lua (MySQL 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 = { | ||
MYSQL = { | ||
header = "mysql.h" | ||
} | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["luasql.mysql"] = { | ||
sources = { "src/luasql.c", "src/ls_mysql.c" }, | ||
libraries = { "mysqlclient" }, | ||
incdirs = { "$(MYSQL_INCDIR)" }, | ||
libdirs = { "$(MYSQL_LIBDIR)" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-OCI8" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.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)" } | ||
} | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
rockspec/luasql-odbc-2.4.1-1.rockspec → rockspec/luasql-odbc-2.5.0-1.rockspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-Postgres" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.0", | ||
} | ||
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://keplerproject.github.io/luasql/" | ||
} | ||
dependencies = { | ||
"lua >= 5.0" | ||
} | ||
external_dependencies = { | ||
PGSQL = { | ||
header = "libpq-fe.h" | ||
} | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["luasql.postgres"] = { | ||
sources = { "src/luasql.c", "src/ls_postgres.c" }, | ||
libraries = { "pq" }, | ||
incdirs = { "$(PGSQL_INCDIR)" }, | ||
libdirs = { "$(PGSQL_LIBDIR)" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-SQLite" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.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)" } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package = "LuaSQL-SQLite3" | ||
version = "2.5.0-1" | ||
source = { | ||
url = "git://github.com/keplerproject/luasql.git", | ||
branch = "2.5.0", | ||
} | ||
description = { | ||
summary = "Database connectivity for Lua (SQLite3 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 = "sqlite3.h" | ||
} | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["luasql.sqlite3"] = { | ||
sources = { "src/luasql.c", "src/ls_sqlite3.c" }, | ||
libraries = { "sqlite3" }, | ||
incdirs = { "$(SQLITE_INCDIR)" }, | ||
libdirs = { "$(SQLITE_LIBDIR)" } | ||
} | ||
} | ||
} |