summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-07-14 11:45:23 +0000
committernia <nia@pkgsrc.org>2020-07-14 11:45:23 +0000
commit30d233beb6a28635be49308becc9b39f596934a6 (patch)
tree679c069121cc8e56c215866c41b2f3597357fbdc /security
parentaba5d07838c84e0e916189442f9ebfabde1a5b88 (diff)
downloadpkgsrc-30d233beb6a28635be49308becc9b39f596934a6.tar.gz
lua-bcrypt: Update to 2.1.6
NetBSD/SunOS support upstreamed
Diffstat (limited to 'security')
-rw-r--r--security/lua-bcrypt/Makefile6
-rw-r--r--security/lua-bcrypt/distinfo11
-rw-r--r--security/lua-bcrypt/patches/patch-Makefile.mess33
3 files changed, 8 insertions, 42 deletions
diff --git a/security/lua-bcrypt/Makefile b/security/lua-bcrypt/Makefile
index 0804a6e9616..1430e8fc1fa 100644
--- a/security/lua-bcrypt/Makefile
+++ b/security/lua-bcrypt/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.2 2020/07/03 20:41:36 nia Exp $
+# $NetBSD: Makefile,v 1.3 2020/07/14 11:45:23 nia Exp $
-DISTNAME= lua-bcrypt-2.1.5
+DISTNAME= lua-bcrypt-2.1.6
PKGNAME= ${DISTNAME:S/lua-/${LUA_PKGPREFIX}-/1}
CATEGORIES= security lua
MASTER_SITES= ${MASTER_SITE_GITHUB:=mikejsavage/}
GITHUB_PROJECT= lua-bcrypt
-GITHUB_TAG= v2.1-5
+GITHUB_TAG= v2.1-6
MAINTAINER= nia@NetBSD.org
HOMEPAGE= https://github.com/mikejsavage/lua-bcrypt
diff --git a/security/lua-bcrypt/distinfo b/security/lua-bcrypt/distinfo
index 6a8b3a418d3..ac3b9baf25c 100644
--- a/security/lua-bcrypt/distinfo
+++ b/security/lua-bcrypt/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.2 2020/07/02 20:09:03 nia Exp $
+$NetBSD: distinfo,v 1.3 2020/07/14 11:45:23 nia Exp $
-SHA1 (lua-bcrypt-2.1.5.tar.gz) = 367bc2dd4b48dd428eec12ac224ea6ff8fc193ad
-RMD160 (lua-bcrypt-2.1.5.tar.gz) = 2a76e963638eff00e2b3c60974d6375f09dff9e3
-SHA512 (lua-bcrypt-2.1.5.tar.gz) = 0cc418a67a1eb66091665a7e9cf0a1fa65a8faae4d22e5a92f9d724a346326ab92b14e6f4d6fe46cfb8ec00bbe8b876020e754bcb4dff368a6b17e5a9eada8ef
-Size (lua-bcrypt-2.1.5.tar.gz) = 37369 bytes
-SHA1 (patch-Makefile.mess) = 721c7be12cbf533fc57ca9bd2ccfa98d656d4478
+SHA1 (lua-bcrypt-2.1.6.tar.gz) = f87905007744664d527ea510e98099a6a4e60caf
+RMD160 (lua-bcrypt-2.1.6.tar.gz) = 8e88c48fe2e18686b89ef42dbc53b27ae265efec
+SHA512 (lua-bcrypt-2.1.6.tar.gz) = d2b4077e5c0e9fbdbd2c7d9f1bed6c99537198ead52079b56c1e4f1d9af151551458f0515e51729d187ff9de9190ff75aaac8fce08a67558215be6fb0c3619fc
+Size (lua-bcrypt-2.1.6.tar.gz) = 35882 bytes
diff --git a/security/lua-bcrypt/patches/patch-Makefile.mess b/security/lua-bcrypt/patches/patch-Makefile.mess
deleted file mode 100644
index d9caf6d233b..00000000000
--- a/security/lua-bcrypt/patches/patch-Makefile.mess
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD: patch-Makefile.mess,v 1.2 2020/07/02 20:09:03 nia Exp $
-
-- Just use libc strlcpy and arc4random on NetBSD.
-- Support SunOS.
-
---- Makefile.mess.orig 2020-05-20 07:20:53.000000000 +0000
-+++ Makefile.mess
-@@ -28,8 +28,11 @@ ifneq ($(uname),OpenBSD)
- SRCS += compat/safebfuns.c
- SRCS += compat/bcrypt/bcrypt.c
- SRCS += compat/bcrypt/blowfish.c
-- SRCS += compat/arc4random/arc4random.c
-- SRCS += compat/strlcpy.c
-+
-+ ifneq ($(uname),NetBSD)
-+ SRCS += compat/arc4random/arc4random.c
-+ SRCS += compat/strlcpy.c
-+ endif
-
- ifeq ($(uname),Linux)
- SRCS += compat/sha/sha512.c
-@@ -37,6 +40,11 @@ ifneq ($(uname),OpenBSD)
- LDFLAGS += -lrt
- endif
-
-+ ifeq ($(uname),SunOS)
-+ SRCS += compat/sha/sha512.c
-+ SRCS += compat/getentropy/getentropy_solaris.c
-+ endif
-+
- ifeq ($(uname),Darwin)
- SRCS += compat/getentropy/getentropy_osx.c
- endif