From 9592e15e6009a672e754b32bf743c35b0e894e8c Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sat, 6 Jul 2013 22:40:16 +0200 Subject: add luasec-prosody --- Makefile | 6 ++- luasec-prosody-git/PKGBUILD | 67 +++++++++++++++++++++++++++++++++ luasec-prosody-git/luasec-prosody.patch | 13 +++++++ 3 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 luasec-prosody-git/PKGBUILD create mode 100644 luasec-prosody-git/luasec-prosody.patch diff --git a/Makefile b/Makefile index d9429da..8b846e5 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,10 @@ SLNUNICODE = slnunicode-git LUAMD5 = lua-md5-git SWIG = swig-git +LUASEC = luasec-prosody-git # collections -PKGS = $(SLNUNICODE) $(LUAMD5) $(SWIG) +PKGS = $(SLNUNICODE) $(LUAMD5) $(SWIG) $(LUASEC) VERFY = $(PKGS:%=verify-%) SOURCE = $(PKGS:%=source-%) @@ -37,6 +38,7 @@ $(SOURCE): slnunicode: $(SLNUNICODE) luamd5: $(LUAMD5) swig: $(SWIG) +luasec: $(LUASEC) info: @echo settings: @@ -49,6 +51,6 @@ info: @echo "all verify source" @echo @echo package targets: - @echo "slnunicode" "luamd5" "swig" + @echo "slnunicode" "luamd5" "swig" "luasec" .PHONY: info all $(PKGS) clean $(VERFY) source $(SOURCE) diff --git a/luasec-prosody-git/PKGBUILD b/luasec-prosody-git/PKGBUILD new file mode 100644 index 0000000..2f86469 --- /dev/null +++ b/luasec-prosody-git/PKGBUILD @@ -0,0 +1,67 @@ +# Maintainer: Philipp Gesang + +pkgname=luasec-prosody-git +_gitname=luasec +_gitbranch=master +pkgver=19.063e8a8 +pkgrel=1 +pkgdesc="A fork of LuaSec, an SSL and crypto library for Lua." +arch=("i686" "x86_64") +url="https://github.com/brunoos/luasec/wiki" +license=("MIT") +groups=() +depends=("lua" "openssl") +makedepends=("git") +provides=("luasec") +conflicts=("luasec-hg") +#install= +source=("${_gitname}::git+https://github.com/brunoos/${_gitname}#branch=${_gitbranch}" + "luasec-prosody.patch") # build for Lua 5.2 +noextract=() +sha512sums=("SKIP" + "38fcf53127e9b65ab79f68f5813fcf3149943c9abfe7e506ac7b67d00c9bc982dbd75c2c8faaf7dd0f248c67598f0292128b701e2a98ab1a4d0c47190191038a") + +pkgver() { + cd "${_gitname}" + echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD) +} + +build() { + cd "${srcdir}" + msg "Connecting to GIT server ..." + + if [[ -d "${_gitname}" ]]; then + cd "${_gitname}" && git pull origin + msg "The local files are updated." + else + git clone "${_gitroot}" "${_gitname}" + fi + + msg "GIT checkout done or server timeout" + msg "Starting build ..." + + rm -rf "${srcdir}/${_gitname}-build" + git clone "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build" + cd "${srcdir}/${_gitname}-build" + + msg "Rewrite paths in Makefile to build for Lua 5.2" + git apply "${srcdir}/luasec-prosody.patch" + + ## build + msg "Compile for target \"linux\"" + if [[ "${LDFLAGS}" =~ "-Wl" ]] + then + msg "Fixing LDFLAGS (remove \"-Wl\")" + LDFLAGS=${LDFLAGS/-Wl,/} + echo "LDFLAGS=\"${LDFLAGS}\"" + fi + make linux +} + +package() { + cd "${srcdir}/${_gitname}-build" + make DESTDIR="${pkgdir}/" install + install -Dm0644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} + +# vim:set ts=2 sw=2 et: diff --git a/luasec-prosody-git/luasec-prosody.patch b/luasec-prosody-git/luasec-prosody.patch new file mode 100644 index 0000000..41d007f --- /dev/null +++ b/luasec-prosody-git/luasec-prosody.patch @@ -0,0 +1,13 @@ +diff --git a/Makefile b/Makefile +index c8aa90f..31e27c8 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,6 +1,6 @@ + # Inform the location to intall the modules +-LUAPATH ?= /usr/share/lua/5.1 +-LUACPATH ?= /usr/lib/lua/5.1 ++LUAPATH ?= /usr/share/lua/5.2 ++LUACPATH ?= /usr/lib/lua/5.2 + + # Compile with build-in LuaSocket's help files. + # Comment this lines if you will link with non-internal LuaSocket's help files -- cgit v1.2.3 From fead5430fe8cbb1f89dbf87f995a8b13566ff94a Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sun, 7 Jul 2013 10:49:58 +0200 Subject: add luasec to readme --- README.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.rst b/README.rst index d240290..e284570 100644 --- a/README.rst +++ b/README.rst @@ -28,6 +28,7 @@ Currently comprises development versions of these packages: (#) LuaMD5_. (``lua-md5-git``) (#) `Selene Unicode`_ (``slnunicode-git``) +(#) `Luase Prosody`_ (``luasec-prosody-git``) (#) SWIG_ (``swig-git``) .. _ArchLinux: https://www.archlinux.org @@ -35,5 +36,6 @@ Currently comprises development versions of these packages: .. _LuaMD5: https://aur.archlinux.org/packages/lua-md5-git/ .. _Selene Unicode: https://aur.archlinux.org/packages/slnunicode-git .. _SWIG: https://aur.archlinux.org/packages/swig-git +.. _Luasec Prosody`: https://aur.archlinux.org/packages/luasec-prosody-git .. _me: mailto:phg42.2a@gmail.com -- cgit v1.2.3 From b0f53efff96249ec7941122567c9d6c977df946b Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Wed, 10 Jul 2013 11:48:29 +0200 Subject: add lua 5.3.0 work build --- Makefile | 6 ++++-- lua5.3/LICENSE | 30 +++++++++++++++++++++++++++ lua5.3/PKGBUILD | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++ lua5.3/liblua.so.patch | 53 +++++++++++++++++++++++++++++++++++++++++++++++ lua5.3/lua.pc | 20 ++++++++++++++++++ 5 files changed, 163 insertions(+), 2 deletions(-) create mode 100644 lua5.3/LICENSE create mode 100644 lua5.3/PKGBUILD create mode 100644 lua5.3/liblua.so.patch create mode 100644 lua5.3/lua.pc diff --git a/Makefile b/Makefile index 8b846e5..00f2d78 100644 --- a/Makefile +++ b/Makefile @@ -3,9 +3,10 @@ SLNUNICODE = slnunicode-git LUAMD5 = lua-md5-git SWIG = swig-git LUASEC = luasec-prosody-git +LUAWORK = lua5.3 # collections -PKGS = $(SLNUNICODE) $(LUAMD5) $(SWIG) $(LUASEC) +PKGS = $(SLNUNICODE) $(LUAMD5) $(SWIG) $(LUASEC) $(LUAWORK) VERFY = $(PKGS:%=verify-%) SOURCE = $(PKGS:%=source-%) @@ -39,6 +40,7 @@ slnunicode: $(SLNUNICODE) luamd5: $(LUAMD5) swig: $(SWIG) luasec: $(LUASEC) +lua5.3: $(LUAWORK) info: @echo settings: @@ -51,6 +53,6 @@ info: @echo "all verify source" @echo @echo package targets: - @echo "slnunicode" "luamd5" "swig" "luasec" + @echo "slnunicode" "luamd5" "swig" "luasec" "lua5.3" .PHONY: info all $(PKGS) clean $(VERFY) source $(SOURCE) diff --git a/lua5.3/LICENSE b/lua5.3/LICENSE new file mode 100644 index 0000000..7f1344f --- /dev/null +++ b/lua5.3/LICENSE @@ -0,0 +1,30 @@ +Lua License + +Lua is free software distributed under the terms of the MIT license +reproduced below; it may be used for any purpose, including commercial +purposes, at absolutely no cost without having to ask us. The only +requirement is that if you do use Lua, then you should give us credit +by including the appropriate copyright notice somewhere in your product +or its documentation. For details, see this. + +Copyright © 1994–2013 Lua.org, PUC-Rio. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/lua5.3/PKGBUILD b/lua5.3/PKGBUILD new file mode 100644 index 0000000..d6ec1e1 --- /dev/null +++ b/lua5.3/PKGBUILD @@ -0,0 +1,56 @@ +# Maintainer: Philipp Gesang +# Derived from the Lua 5.2 and 5.1 PKGBUILDs in extra which lists +# these guys as contributors: +# Contributor: Sébastien Luttringer +# Contributor: Juergen Hoetzel +# Contributor: Damir Perisa + +pkgname=lua53 +pkgver=5.3.0_work1 +pkgrel=1 +pkgdesc='Powerful light-weight programming language designed for extending applications, version 5.3 working draft' +arch=('i686' 'x86_64') +url='http://www.lua.org/' +depends=('readline') +license=('MIT') +options=('!makeflags' '!emptydirs') +source=('http://www.lua.org/work/lua-5.3.0-work1.tar.gz' + 'liblua.so.patch' + 'LICENSE' + 'lua.pc') +md5sums=('d4053ee55741eab5ecd7061326577586' + '42ae5d526cc73695ee05ca8db6b19754' + '5d236d27128ef36bbc8f228faaf76f7f' + '3369fab35575e718eae71884674ba387') + +build() { + cd "lua-${pkgver/_/-}" + patch -p1 -i "$srcdir/liblua.so.patch" + export CFLAGS="$CFLAGS -fPIC" + sed "s/%VER%/${pkgver%.*}/g;s/%REL%/$pkgver/g" ../lua.pc > lua.pc + sed -r -e '/^LUA_(SO|A|T)=/ s/lua/lua5.3/' -e '/^LUAC_T=/ s/luac/luac5.3/' -i src/Makefile + make MYCFLAGS="$CFLAGS" MYLDFLAGS="$LDFLAGS" linux +} + +package() { + cd "lua-${pkgver/_/-}" + make \ + TO_BIN="lua5.3 luac5.3" \ + TO_LIB="liblua5.3.a liblua5.3.so liblua5.3.so.5.3 liblua5.3.so.5.3.0" \ + INSTALL_DATA="cp -d" \ + INSTALL_TOP="$pkgdir/usr" \ + INSTALL_INC="$pkgdir/usr/include/lua5.3" \ + INSTALL_MAN="$pkgdir/usr/share/man/man1" \ + install + install -Dm644 lua.pc "$pkgdir/usr/lib/pkgconfig/lua5.3.pc" + install -d "$pkgdir/usr/share/doc/lua5.3" + install -m644 doc/*.{gif,png,css,html} "$pkgdir/usr/share/doc/lua5.3" + install -D -m644 "$srcdir/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.5.3" + ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.$pkgver" + cd "$pkgdir/usr/share/man/man1" + mv lua.1 lua5.3.0 + mv luac.1 luac5.3.0 +} + +# vim:set ts=2 sw=2 et: diff --git a/lua5.3/liblua.so.patch b/lua5.3/liblua.so.patch new file mode 100644 index 0000000..7c02d02 --- /dev/null +++ b/lua5.3/liblua.so.patch @@ -0,0 +1,53 @@ +diff -ru lua-5.3.0-work1/Makefile lua-5.3.0-work1-patched/Makefile +--- lua-5.3.0-work1/Makefile 2013-06-04 04:12:29.000000000 +0200 ++++ lua-5.3.0-work1-patched/Makefile 2013-07-10 11:04:27.826555020 +0200 +@@ -10,7 +10,7 @@ + # so take care if INSTALL_TOP is not an absolute path. See the local target. + # You may want to make INSTALL_LMOD and INSTALL_CMOD consistent with + # LUA_ROOT, LUA_LDIR, and LUA_CDIR in luaconf.h. +-INSTALL_TOP= /usr/local ++INSTALL_TOP= /usr + INSTALL_BIN= $(INSTALL_TOP)/bin + INSTALL_INC= $(INSTALL_TOP)/include + INSTALL_LIB= $(INSTALL_TOP)/lib +@@ -52,7 +52,7 @@ + all: $(PLAT) + + $(PLATS) clean: +- cd src && $(MAKE) $@ ++ cd src && $(MAKE) $@ V=$(V) R=$(R) + + test: dummy + src/lua -v +diff -ru lua-5.3.0-work1/src/Makefile lua-5.3.0-work1-patched/src/Makefile +--- lua-5.3.0-work1/src/Makefile 2013-06-04 15:41:55.000000000 +0200 ++++ lua-5.3.0-work1-patched/src/Makefile 2013-07-10 11:01:46.822761150 +0200 +@@ -29,6 +29,7 @@ + PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris + + LUA_A= liblua.a ++LUA_SO= liblua.so + CORE_O= lapi.o lcode.o lctype.o ldebug.o ldo.o ldump.o lfunc.o lgc.o llex.o \ + lmem.o lobject.o lopcodes.o lparser.o lstate.o lstring.o ltable.o \ + ltm.o lundump.o lvm.o lzio.o +@@ -43,7 +44,7 @@ + LUAC_O= luac.o + + ALL_O= $(BASE_O) $(LUA_O) $(LUAC_O) +-ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) ++ALL_T= $(LUA_A) $(LUA_T) $(LUAC_T) $(LUA_SO) + ALL_A= $(LUA_A) + + # Targets start here. +@@ -59,6 +60,11 @@ + $(AR) $@ $(BASE_O) + $(RANLIB) $@ + ++$(LUA_SO): $(CORE_O) $(LIB_O) ++ $(CC) -shared -ldl -Wl,-soname,$(LUA_SO).$(V) -o $@.$(R) $? -lm $(MYLDFLAGS) ++ ln -sf $(LUA_SO).$(R) $(LUA_SO).$(V) ++ ln -sf $(LUA_SO).$(R) $(LUA_SO) ++ + $(LUA_T): $(LUA_O) $(LUA_A) + $(CC) -o $@ $(LDFLAGS) $(LUA_O) $(LUA_A) $(LIBS) + diff --git a/lua5.3/lua.pc b/lua5.3/lua.pc new file mode 100644 index 0000000..615fce2 --- /dev/null +++ b/lua5.3/lua.pc @@ -0,0 +1,20 @@ +V=%VER% +R=%REL% + +prefix=/usr +INSTALL_BIN=${prefix}/bin +INSTALL_INC=${prefix}/include/5.3 +INSTALL_LIB=${prefix}/lib +INSTALL_MAN=${prefix}/man/man1 +INSTALL_LMOD=${prefix}/share/lua/${V} +INSTALL_CMOD=${prefix}/lib/lua/${V} +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include/5.3 + +Name: Lua +Description: An Extensible Extension Language +Version: ${R} +Requires: +Libs: -L${libdir} -llua5.3 -lm +Cflags: -I${includedir} -- cgit v1.2.3 From 854f832f852bf55a794357557e5a93c896fb6049 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Wed, 10 Jul 2013 11:52:59 +0200 Subject: add lua53 to readme --- README.rst | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index e284570..7d02942 100644 --- a/README.rst +++ b/README.rst @@ -26,16 +26,18 @@ universe, the repo’s canonical location is on Bitbucket_. Currently comprises development versions of these packages: -(#) LuaMD5_. (``lua-md5-git``) -(#) `Selene Unicode`_ (``slnunicode-git``) -(#) `Luase Prosody`_ (``luasec-prosody-git``) -(#) SWIG_ (``swig-git``) +(#) LuaMD5_ (``lua-md5-git``), +(#) `Selene Unicode`_ (``slnunicode-git``), +(#) `Luasec Prosody`_ (``luasec-prosody-git``), +(#) `Lua 5.3 work` (``lua53``), +(#) SWIG_ (``swig-git``). .. _ArchLinux: https://www.archlinux.org .. _Bitbucket: https://bitbucket.org/phg/packages .. _LuaMD5: https://aur.archlinux.org/packages/lua-md5-git/ .. _Selene Unicode: https://aur.archlinux.org/packages/slnunicode-git .. _SWIG: https://aur.archlinux.org/packages/swig-git -.. _Luasec Prosody`: https://aur.archlinux.org/packages/luasec-prosody-git +.. _Luasec Prosody: https://aur.archlinux.org/packages/luasec-prosody-git +.. _Lua 5.3 work: http://www.lua.org/work/ .. _me: mailto:phg42.2a@gmail.com -- cgit v1.2.3 From 04b5604fbe332adfbae224e58090ea0391eea35d Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Wed, 10 Jul 2013 11:56:44 +0200 Subject: fix readme --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 7d02942..a1b2ca0 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,7 @@ Currently comprises development versions of these packages: (#) LuaMD5_ (``lua-md5-git``), (#) `Selene Unicode`_ (``slnunicode-git``), (#) `Luasec Prosody`_ (``luasec-prosody-git``), -(#) `Lua 5.3 work` (``lua53``), +(#) `Lua 5.3 work`_ (``lua53``), (#) SWIG_ (``swig-git``). .. _ArchLinux: https://www.archlinux.org @@ -38,6 +38,6 @@ Currently comprises development versions of these packages: .. _Selene Unicode: https://aur.archlinux.org/packages/slnunicode-git .. _SWIG: https://aur.archlinux.org/packages/swig-git .. _Luasec Prosody: https://aur.archlinux.org/packages/luasec-prosody-git -.. _Lua 5.3 work: http://www.lua.org/work/ +.. _Lua 5.3 work: https://aur.archlinux.org/packages/lua53/ .. _me: mailto:phg42.2a@gmail.com -- cgit v1.2.3 From bea638ffdc05d4fcce002dea72ec09fc0d5d4f70 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Thu, 11 Jul 2013 18:54:21 +0200 Subject: fix lua53 man page file names (thanks, GinoCorazzi\!) --- lua5.3/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua5.3/PKGBUILD b/lua5.3/PKGBUILD index d6ec1e1..666a84e 100644 --- a/lua5.3/PKGBUILD +++ b/lua5.3/PKGBUILD @@ -49,8 +49,8 @@ package() { ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.5.3" ln -s liblua5.3.so "$pkgdir/usr/lib/liblua.so.$pkgver" cd "$pkgdir/usr/share/man/man1" - mv lua.1 lua5.3.0 - mv luac.1 luac5.3.0 + mv lua.1 lua5.3.1 + mv luac.1 luac5.3.1 } # vim:set ts=2 sw=2 et: -- cgit v1.2.3 From 66d667cd8b58d877fed04bc5f3d67938501a8277 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Thu, 11 Jul 2013 18:57:38 +0200 Subject: incr Lua53-work version --- lua5.3/PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua5.3/PKGBUILD b/lua5.3/PKGBUILD index 666a84e..6f44922 100644 --- a/lua5.3/PKGBUILD +++ b/lua5.3/PKGBUILD @@ -7,7 +7,7 @@ pkgname=lua53 pkgver=5.3.0_work1 -pkgrel=1 +pkgrel=2 pkgdesc='Powerful light-weight programming language designed for extending applications, version 5.3 working draft' arch=('i686' 'x86_64') url='http://www.lua.org/' -- cgit v1.2.3 From f385d6d42405b12a753f33fa81c16c8f05f76de0 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Wed, 4 Sep 2013 14:01:35 +0200 Subject: update luasec --- luasec-prosody-git/PKGBUILD | 4 ++-- luasec-prosody-git/luasec-prosody.patch | 13 +++++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/luasec-prosody-git/PKGBUILD b/luasec-prosody-git/PKGBUILD index 2f86469..fd798ae 100644 --- a/luasec-prosody-git/PKGBUILD +++ b/luasec-prosody-git/PKGBUILD @@ -4,7 +4,7 @@ pkgname=luasec-prosody-git _gitname=luasec _gitbranch=master pkgver=19.063e8a8 -pkgrel=1 +pkgrel=2 pkgdesc="A fork of LuaSec, an SSL and crypto library for Lua." arch=("i686" "x86_64") url="https://github.com/brunoos/luasec/wiki" @@ -19,7 +19,7 @@ source=("${_gitname}::git+https://github.com/brunoos/${_gitname}#branch=${_gitbr "luasec-prosody.patch") # build for Lua 5.2 noextract=() sha512sums=("SKIP" - "38fcf53127e9b65ab79f68f5813fcf3149943c9abfe7e506ac7b67d00c9bc982dbd75c2c8faaf7dd0f248c67598f0292128b701e2a98ab1a4d0c47190191038a") + "459969712d74fd2137f0cf7c7acc227bfe1e097e99937c2b897c625e96d9de3d20265634a6e49418f4ef5cf037435d2e07b0a1747a850d110aa207ef6735c7b7") pkgver() { cd "${_gitname}" diff --git a/luasec-prosody-git/luasec-prosody.patch b/luasec-prosody-git/luasec-prosody.patch index 41d007f..2d2672b 100644 --- a/luasec-prosody-git/luasec-prosody.patch +++ b/luasec-prosody-git/luasec-prosody.patch @@ -11,3 +11,16 @@ index c8aa90f..31e27c8 100644 # Compile with build-in LuaSocket's help files. # Comment this lines if you will link with non-internal LuaSocket's help files +diff --git a/src/ssl.lua b/src/ssl.lua +index 1b062f6..1b63e70 100644 +--- a/src/ssl.lua ++++ b/src/ssl.lua +@@ -4,6 +4,8 @@ + -- + ------------------------------------------------------------------------------ + ++local unpack = unpack or table.unpack ++ + local core = require("ssl.core") + local context = require("ssl.context") + local x509 = require("ssl.x509") -- cgit v1.2.3