svn commit: r502349 - in head/security: . lua-bcrypt
Bernhard Froehlich
decke at FreeBSD.org
Thu May 23 18:36:23 UTC 2019
Author: decke
Date: Thu May 23 18:36:21 2019
New Revision: 502349
URL: https://svnweb.freebsd.org/changeset/ports/502349
Log:
Lua-bcrypt is a library providing OpenBSD's bcrypt hash function for the Lua
programming language.
WWW: https://github.com/mikejsavage/lua-bcrypt/
PR: 237606
Submitted by: Manuel Wiesinger <mdw at FreeBSD.org>
Added:
head/security/lua-bcrypt/
head/security/lua-bcrypt/Makefile (contents, props changed)
head/security/lua-bcrypt/distinfo (contents, props changed)
head/security/lua-bcrypt/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Thu May 23 18:32:59 2019 (r502348)
+++ head/security/Makefile Thu May 23 18:36:21 2019 (r502349)
@@ -344,6 +344,7 @@ PORTREVISION= 1
SUBDIR += linux-c7-trousers
SUBDIR += log2timeline
SUBDIR += logcheck
+ SUBDIR += lua-bcrypt
SUBDIR += luasec
SUBDIR += luasec-51
SUBDIR += lxqt-openssh-askpass
Added: head/security/lua-bcrypt/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/lua-bcrypt/Makefile Thu May 23 18:36:21 2019 (r502349)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= bcrypt
+PORTVERSION= 2.1
+CATEGORIES= security
+PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX}
+
+MAINTAINER= mdw at freebsd.org
+COMMENT= Library providing OpenBSD's bcrypt hash function for Lua
+
+LICENSE= ISCL
+
+USES= gmake lua
+
+USE_GITHUB= yes
+GH_ACCOUNT= mikejsavage
+GH_PROJECT= lua-bcrypt
+GH_TAGNAME= d64cdc8
+
+PLIST_FILES= ${LUA_MODLIBDIR}/bcrypt.so
+
+do-install:
+ @${MKDIR} ${STAGEDIR}${LUA_MODLIBDIR}
+ ${INSTALL_LIB} ${WRKSRC}/bcrypt.so ${STAGEDIR}${LUA_MODLIBDIR}
+
+.include <bsd.port.mk>
Added: head/security/lua-bcrypt/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/lua-bcrypt/distinfo Thu May 23 18:36:21 2019 (r502349)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1547819290
+SHA256 (mikejsavage-lua-bcrypt-2.1-d64cdc8_GH0.tar.gz) = 9fb5e557888f0cf2a2160757e837011a28617bd81fe1b43a825ca6487097d6f6
+SIZE (mikejsavage-lua-bcrypt-2.1-d64cdc8_GH0.tar.gz) = 41210
Added: head/security/lua-bcrypt/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/lua-bcrypt/pkg-descr Thu May 23 18:36:21 2019 (r502349)
@@ -0,0 +1,4 @@
+Lua-bcrypt is a library providing OpenBSD's bcrypt hash function for the Lua
+programming language.
+
+WWW: https://github.com/mikejsavage/lua-bcrypt/
More information about the svn-ports-all
mailing list