Initialize submodules

This commit is contained in:
Théophile Diot 2023-06-26 10:06:19 -04:00
parent d7d3e24297
commit 2cd5c7f451
No known key found for this signature in database
GPG Key ID: E752C80DB72BB014
30 changed files with 34 additions and 31 deletions

36
.gitmodules vendored
View File

@ -2,50 +2,37 @@
# TODO add Lua ?
[submodule "cpython"]
path = src/deps/src/cpython
url = https://github.com/python/cpython.git
branch = tags/v3.11.4
[submodule "LuaJIT"]
path = src/deps/src/luajit2
url = https://github.com/openresty/luajit2.git
branch = tags/v2.1-20230410
[submodule "lua-nginx-module"]
path = src/deps/src/lua-nginx-module
url = https://github.com/openresty/lua-nginx-module.git
branch = tags/v0.10.25
[submodule "lua-resty-core"]
path = src/deps/src/lua-resty-core
url = https://github.com/openresty/lua-resty-core.git
branch = tags/v0.1.27
[submodule "lua-resty-lrucache"]
path = src/deps/src/lua-resty-lrucache
url = https://github.com/openresty/lua-resty-lrucache.git
branch = tags/v0.13
[submodule "lua-resty-dns"]
path = src/deps/src/lua-resty-dns
url = https://github.com/openresty/lua-resty-dns.git
branch = tags/v0.22
[submodule "lua-resty-string"]
path = src/deps/src/lua-resty-string
url = https://github.com/openresty/lua-resty-string.git
branch = tags/v0.15
[submodule "lua-cjson"]
path = src/deps/src/lua-cjson
url = https://github.com/openresty/lua-cjson.git
branch = tags/2.1.0.12
[submodule "lua-resty-session"]
path = src/deps/src/lua-resty-session
url = https://github.com/bungle/lua-resty-session.git
branch = tags/v4.0.4
[submodule "lua-resty-random"]
path = src/deps/src/lua-resty-random
@ -58,61 +45,50 @@
[submodule "lua-resty-http"]
path = src/deps/src/lua-resty-http
url = https://github.com/ledgetech/lua-resty-http.git
branch = tags/v0.17.1
[submodule "lualogging"]
path = src/deps/src/lualogging
url = https://github.com/lunarmodules/lualogging.git
branch = tags/v1.8.2
[submodule "luasocket"]
path = src/deps/src/luasocket
url = https://github.com/diegonehab/luasocket.git
branch = tags/v1.8.2
[submodule "luasec"]
path = src/deps/src/luasec
url = https://github.com/brunoos/luasec.git
branch = tags/v1.3.1
# TODO add lua-resty-ipmatcher
[submodule "lua-resty-redis"]
path = src/deps/src/lua-resty-redis
url = https://github.com/openresty/lua-resty-redis.git
branch = tags/v0.30
[submodule "lua-resty-upload"]
path = src/deps/src/lua-resty-upload
url = https://github.com/openresty/lua-resty-upload.git
branch = tags/v0.11
# TODO add luajit-geoip
[submodule "lbase64"]
path = src/deps/src/lbase64
url = https://github.com/iskolbin/lbase64.git
branch = tags/v1.5.3
[submodule "lua-resty-env"]
path = src/deps/src/lua-resty-env
url = https://github.com/3scale/lua-resty-env.git
branch = tags/v0.4.0
[submodule "lua-resty-mlcache"]
path = src/deps/src/lua-resty-mlcache
url = https://github.com/thibaultcha/lua-resty-mlcache.git
branch = tags/2.6.0
[submodule "lua-resty-template"]
path = src/deps/src/lua-resty-template
url = https://github.com/bungle/lua-resty-template.git
branch = tags/v0.11
[submodule "lua-resty-lock"]
path = src/deps/src/lua-resty-lock
url = https://github.com/openresty/lua-resty-lock.git
branch = tags/v0.09
# TODO add lua-pack
@ -129,22 +105,18 @@
[submodule "libmaxminddb"]
path = src/deps/src/libmaxminddb
url = https://github.com/maxmind/libmaxminddb.git
branch = tags/1.7.1
[submodule "zlib"]
path = src/deps/src/zlib
url = https://github.com/madler/zlib.git
branch = tags/v1.2.13
[submodule "headers-more-nginx-module"]
path = src/deps/src/headers-more-nginx-module
url = https://github.com/openresty/headers-more-nginx-module.git
branch = tags/v0.34
[submodule "nginx_cookie_flag_module"]
path = src/deps/src/nginx_cookie_flag_module
url = https://github.com/AirisX/nginx_cookie_flag_module.git
branch = tags/v1.1.0
[submodule "ngx_brotli"]
path = src/deps/src/ngx_brotli
@ -153,9 +125,11 @@
[submodule "ngx_devel_kit"]
path = src/deps/src/ngx_devel_kit
url = https://github.com/vision5/ngx_devel_kit.git
branch = tags/v0.3.2
[submodule "stream-lua-nginx-module"]
path = src/deps/src/stream-lua-nginx-module
url = https://github.com/openresty/stream-lua-nginx-module.git
branch = tags/v0.0.13
[submodule "cpython"]
path = src/deps/src/cpython
url = https://github.com/python/cpython.git

1
src/deps/src/cpython Submodule

@ -0,0 +1 @@
Subproject commit d2340ef25721b6a72d45d4508c672c4be38c67d3

@ -0,0 +1 @@
Subproject commit bea1be3bbf6af28f6aa8cf0c01c07ee1637e2bd0

1
src/deps/src/lbase64 Submodule

@ -0,0 +1 @@
Subproject commit c261320edbdf82c16409d893a96c28c704aa0ab8

@ -0,0 +1 @@
Subproject commit ac4d0d2480032a8664e251588e57d7b306ca630c

@ -0,0 +1 @@
Subproject commit 881accc8fadca5ec02aa34d364df2a1aa25cd2f9

1
src/deps/src/lua-gd Submodule

@ -0,0 +1 @@
Subproject commit 2ce8e478a8591afd71e607506bc8c64b161bbd30

@ -0,0 +1 @@
Subproject commit c47084b5d719ce507d2419d8660f39544a9d1fea

@ -0,0 +1 @@
Subproject commit 31fae862a1ed64033591f991fadb0dd80358ba0b

@ -0,0 +1 @@
Subproject commit 869d2fbb009b6ada93a5a10cb93acd1cc12bd53f

@ -0,0 +1 @@
Subproject commit adb294def823dd910ffa11972d2c61eab7cfce3e

@ -0,0 +1 @@
Subproject commit 4ab4269cf442ba52507aa2c718f606054452fcad

@ -0,0 +1 @@
Subproject commit 9dc550e56b6f3b1a2f1a31bb270a91813b5b6861

@ -0,0 +1 @@
Subproject commit a79615ec9dc547fdb4aaee59ef8f5a50648ce9fd

@ -0,0 +1 @@
Subproject commit f140f56663cbdb9cdd247d29f75c299c702ff6b4

@ -0,0 +1 @@
Subproject commit 17b604f7f7dd217557ca548fc1a9a0d373386480

@ -0,0 +1 @@
Subproject commit d7c25f1b339d79196ff67f061c547a73a920b580

@ -0,0 +1 @@
Subproject commit 8b5f8752f3046396c414c5b97850e784c07e1641

@ -0,0 +1 @@
Subproject commit b192878f6ed31b0af237935bbc5a8110a3c2256c

@ -0,0 +1 @@
Subproject commit c08c6bc9e27710806990f2dec0f03b19406976ac

@ -0,0 +1 @@
Subproject commit 03704aee42f7135e7782688d8a9af63a16015edc

1
src/deps/src/luajit2 Submodule

@ -0,0 +1 @@
Subproject commit 04f33ff01da97905a1641985fb5c840d234f97f1

@ -0,0 +1 @@
Subproject commit 465c994788f1bc18fca950934fa5ec9a909f496c

1
src/deps/src/luasec Submodule

@ -0,0 +1 @@
Subproject commit fddde111f7fe9ad5417d75ebbd70429d13eaad97

@ -0,0 +1 @@
Subproject commit 95b7efa9da506ef968c1347edf3fc56370f0deed

@ -0,0 +1 @@
Subproject commit 4e48acf132952bbed43b28a8e6af0584dacb7b4c

@ -0,0 +1 @@
Subproject commit 6e975bcb015f62e1f303054897783355e2a877dc

@ -0,0 +1 @@
Subproject commit b4642d6ca01011bd8cd30b253f5c3872b384fd21

@ -0,0 +1 @@
Subproject commit 309198abf26266f1a3e53c71388ed7bb9d1e5ea2

1
src/deps/src/zlib Submodule

@ -0,0 +1 @@
Subproject commit 04f42ceca40f73e2978b50e93806c2a18c1281fc