mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 12:26:27 -04:00
This is based upon www/lua-resty-session (v4), but is needed for
lua-resty-openidc.
The version 3.x is pinned in the lua-resty-openidc dependencies:
9f3a4fcade/lua-resty-openidc-1.7.6-3.rockspec (L27)
There is apparently currently no clear plan on when/if lua-resty-openidc
will be updated to include changes for lua-resty-session 4.X, see
discussions on
https://github.com/zmartzone/lua-resty-openidc/issues/480
Additionally to what the author submitted some changes by me:
- add conflicts with www/lua-resty-session
- give up maintainership of www/lua-resty-session
PR: 281142
60 lines
2 KiB
Makefile
60 lines
2 KiB
Makefile
PORTNAME= lua-resty-session
|
|
DISTVERSIONPREFIX=v
|
|
DISTVERSION= 3.10
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= baptiste@bapt.name
|
|
COMMENT= Lua session library for OpenResty / ngx_lua Version 3.x
|
|
WWW= https://github.com/bungle/lua-resty-session
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= luajit-openresty>=2.1:lang/luajit-openresty
|
|
# XXX: deps for filesystem, postgres, redis backends missing
|
|
|
|
CONFLICTS_INSTALL= lua-resty-session-4*
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bungle
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
LUA_MODSHAREDIR=${LOCALBASE}/share/lua/5.1
|
|
|
|
PLIST_FILES+= ${LUA_MODSHAREDIR}/resty/session.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/ciphers/aes.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/ciphers/none.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/compressors/none.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/compressors/zlib.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/encoders/base16.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/encoders/base64.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/encoders/hex.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/hmac/sha1.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/identifiers/random.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/serializers/json.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/cookie.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/dshm.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/memcache.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/memcached.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/redis.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/storage/shm.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/strategies/default.lua \
|
|
${LUA_MODSHAREDIR}/resty/session/strategies/regenerate.lua
|
|
|
|
PORTDOCS= README.md
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/lua${LUA_VER_STR}/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR}
|
|
@(cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${LUA_MODSHAREDIR} "-name *\.lua")
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|