From owner-svn-ports-head@freebsd.org Sun Sep 15 23:12:14 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9EDDAEB020; Sun, 15 Sep 2019 23:12:14 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46WlWf3mnfz3Lxx; Sun, 15 Sep 2019 23:12:14 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 665A0F79D; Sun, 15 Sep 2019 23:12:14 +0000 (UTC) (envelope-from mm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8FNCELT046934; Sun, 15 Sep 2019 23:12:14 GMT (envelope-from mm@FreeBSD.org) Received: (from mm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8FNCDOh046928; Sun, 15 Sep 2019 23:12:13 GMT (envelope-from mm@FreeBSD.org) Message-Id: <201909152312.x8FNCDOh046928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mm set sender to mm@FreeBSD.org using -f From: Martin Matuska Date: Sun, 15 Sep 2019 23:12:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512134 - in head/www: . lua-resty-lrucache X-SVN-Group: ports-head X-SVN-Commit-Author: mm X-SVN-Commit-Paths: in head/www: . lua-resty-lrucache X-SVN-Commit-Revision: 512134 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Sep 2019 23:12:14 -0000 Author: mm Date: Sun Sep 15 23:12:13 2019 New Revision: 512134 URL: https://svnweb.freebsd.org/changeset/ports/512134 Log: Lua-land LRU cache based on the LuaJIT FFI WWW: https://github.com/openresty/lua-resty-lrucache PR: 240160 Submitted by: Dmitry Wagin Added: head/www/lua-resty-lrucache/ head/www/lua-resty-lrucache/Makefile (contents, props changed) head/www/lua-resty-lrucache/distinfo (contents, props changed) head/www/lua-resty-lrucache/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Sep 15 23:09:47 2019 (r512133) +++ head/www/Makefile Sun Sep 15 23:12:13 2019 (r512134) @@ -327,6 +327,7 @@ SUBDIR += ljdump SUBDIR += llgal SUBDIR += logtools + SUBDIR += lua-resty-lrucache SUBDIR += luakit SUBDIR += lynx SUBDIR += lynx-current Added: head/www/lua-resty-lrucache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lua-resty-lrucache/Makefile Sun Sep 15 23:12:13 2019 (r512134) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= lua-resty-lrucache +PORTVERSION= 0.09 +DISTVERSIONPREFIX=v +CATEGORIES= www + +MAINTAINER= dmitry.wagin@ya.ru +COMMENT= Lua-land LRU cache based on the LuaJIT FFI + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= luajit-openresty>=2.1:lang/luajit-openresty + +USE_GITHUB= yes +GH_ACCOUNT= openresty + +NO_ARCH= yes +NO_BUILD= yes + +LUA_MODSHAREDIR=${LOCALBASE}/share/lua/5.1 + +PLIST_FILES+= ${LUA_MODSHAREDIR}/resty/lrucache.lua \ + ${LUA_MODSHAREDIR}/resty/lrucache/pureffi.lua + +do-install: + @${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR} + @(cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${LUA_MODSHAREDIR} "-name *\.lua") + +.include Added: head/www/lua-resty-lrucache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lua-resty-lrucache/distinfo Sun Sep 15 23:12:13 2019 (r512134) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566944480 +SHA256 (openresty-lua-resty-lrucache-v0.09_GH0.tar.gz) = 42f0384f80b6a9b4f42f91ee688baf69165d0573347e6ea84ebed95e928211d7 +SIZE (openresty-lua-resty-lrucache-v0.09_GH0.tar.gz) = 14954 Added: head/www/lua-resty-lrucache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/lua-resty-lrucache/pkg-descr Sun Sep 15 23:12:13 2019 (r512134) @@ -0,0 +1,3 @@ +Lua-land LRU cache based on the LuaJIT FFI + +WWW: https://github.com/openresty/lua-resty-lrucache