-
Notifications
You must be signed in to change notification settings - Fork 33
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
Showing
7 changed files
with
744 additions
and
14 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
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
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,37 @@ | ||
package = "WSAPI" | ||
|
||
version = "1.7-1" | ||
|
||
description = { | ||
summary = "Lua Web Server API", | ||
detailed = [[ | ||
WSAPI is an API that abstracts the web server from Lua web applications. This is the rock | ||
that contains the base WSAPI libraries plus the CGI adapters. | ||
]], | ||
license = "MIT/X11", | ||
homepage = "http://github.com/keplerproject/wsapi" | ||
} | ||
|
||
dependencies = { "luafilesystem >= 1.6.2", "rings >= 1.3.0", "coxpcall >= 1.14" } | ||
|
||
source = { | ||
url = "git://github.com/keplerproject/wsapi", | ||
tag = "v1.7", | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["wsapi"] = "src/wsapi.lua", | ||
["wsapi.common"] = "src/wsapi/common.lua", | ||
["wsapi.request"] = "src/wsapi/request.lua", | ||
["wsapi.response"] = "src/wsapi/response.lua", | ||
["wsapi.util"] = "src/wsapi/util.lua", | ||
["wsapi.cgi"] = "src/wsapi/cgi.lua", | ||
["wsapi.sapi"] = "src/wsapi/sapi.lua", | ||
["wsapi.ringer"] = "src/wsapi/ringer.lua", | ||
["wsapi.mock"] = "src/wsapi/mock.lua", | ||
}, | ||
copy_directories = { "samples", "doc", "tests" }, | ||
install = { bin = { "src/launcher/wsapi.cgi" } } | ||
} |
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,61 @@ | ||
package = "WSAPI-FCGI" | ||
|
||
version = "1.7-1" | ||
|
||
description = { | ||
summary = "Lua Web Server API FastCGI Adapter", | ||
detailed = [[ | ||
WSAPI is an API that abstracts the web server from Lua web applications. This | ||
is the rock that contains the FCGI module lfcgi. | ||
]], | ||
license = "MIT/X11", | ||
homepage = "http://www.keplerproject.org/wsapi" | ||
} | ||
|
||
dependencies = { "wsapi >= 1.6.1" } | ||
|
||
external_dependencies = { | ||
platforms = { | ||
unix = { | ||
FASTCGI = { | ||
header = "fcgi_stdio.h" | ||
} | ||
} | ||
} | ||
} | ||
|
||
source = { | ||
url = "git://github.com/keplerproject/wsapi", | ||
tag = "v1.7", | ||
} | ||
|
||
build = { | ||
platforms = { | ||
unix = { | ||
type = "builtin", | ||
modules = { | ||
["wsapi.fastcgi"] = "src/wsapi/fastcgi.lua", | ||
lfcgi = { | ||
sources = "src/fastcgi/lfcgi.c", | ||
libraries = "fcgi", | ||
incdirs = "$(FASTCGI_INCDIR)", | ||
libdirs = "$(FASTCGI_LIBDIR)" | ||
} | ||
}, | ||
install = { bin = { "src/launcher/wsapi.fcgi" } } | ||
}, | ||
windows = { | ||
type = "builtin", | ||
modules = { | ||
["wsapi.fastcgi"] = "src/wsapi/fastcgi.lua", | ||
lfcgi = { | ||
sources = "src/fastcgi/lfcgi.c", | ||
libraries = { "libfcgi", "ws2_32" }, | ||
incdirs = "$(FASTCGI_INCDIR)", | ||
libdirs = "$(FASTCGI_LIBDIR)" | ||
} | ||
}, | ||
install = { bin = { "src/launcher/wsapi.fcgi" } } | ||
} | ||
} | ||
} |
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,28 @@ | ||
package = "WSAPI-Xavante" | ||
|
||
version = "1.7-1" | ||
|
||
description = { | ||
summary = "Lua Web Server API - Xavante Handler", | ||
detailed = [[ | ||
WSAPI is an API that abstracts the web server from Lua web applications. This is the rock | ||
that contains the Xavante adapter and launcher. | ||
]], | ||
license = "MIT/X11", | ||
homepage = "http://www.keplerproject.org/wsapi" | ||
} | ||
|
||
dependencies = { "wsapi >= 1.6.1", "xavante >= 2.3.0" } | ||
|
||
source = { | ||
url = "git://github.com/keplerproject/wsapi", | ||
tag = "v1.7", | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["wsapi.xavante"] = "src/wsapi/xavante.lua" | ||
}, | ||
install = { bin = { "src/launcher/wsapi" } } | ||
} |
Oops, something went wrong.