summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-07-14 11:43:25 +0000
committernia <nia@pkgsrc.org>2020-07-14 11:43:25 +0000
commitccea227bcd2b61ccd2bf32fe0fac57bec8e0054a (patch)
tree3ff56f3b35c61beda32133df82cbe3ced828b4b3 /security
parente8eb207e5c61aa23cf0a175f483c02726f5e6628 (diff)
downloadpkgsrc-ccea227bcd2b61ccd2bf32fe0fac57bec8e0054a.tar.gz
lua-arc4random: Update to 1.4.1
NetBSD and SunOS support upstreamed
Diffstat (limited to 'security')
-rw-r--r--security/lua-arc4random/Makefile6
-rw-r--r--security/lua-arc4random/distinfo11
-rw-r--r--security/lua-arc4random/patches/patch-Makefile.mess30
3 files changed, 8 insertions, 39 deletions
diff --git a/security/lua-arc4random/Makefile b/security/lua-arc4random/Makefile
index 344830b446d..6be401cad4b 100644
--- a/security/lua-arc4random/Makefile
+++ b/security/lua-arc4random/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.4 2020/07/03 20:41:36 nia Exp $
+# $NetBSD: Makefile,v 1.5 2020/07/14 11:43:25 nia Exp $
-DISTNAME= lua-arc4random-1.3.4
+DISTNAME= lua-arc4random-1.4.1
PKGNAME= ${DISTNAME:S/lua-/${LUA_PKGPREFIX}-/1}
CATEGORIES= security lua
MASTER_SITES= ${MASTER_SITE_GITHUB:=mikejsavage/}
GITHUB_PROJECT= lua-arc4random
-GITHUB_TAG= v1.3-4
+GITHUB_TAG= v1.4-1
MAINTAINER= nia@NetBSD.org
HOMEPAGE= https://github.com/mikejsavage/lua-arc4random
diff --git a/security/lua-arc4random/distinfo b/security/lua-arc4random/distinfo
index a4a725b90a5..a2cab5d134e 100644
--- a/security/lua-arc4random/distinfo
+++ b/security/lua-arc4random/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.2 2020/07/02 20:07:28 nia Exp $
+$NetBSD: distinfo,v 1.3 2020/07/14 11:43:25 nia Exp $
-SHA1 (lua-arc4random-1.3.4.tar.gz) = 300c7397ea4bf44dd970fca9eb58c4c04f87e0c9
-RMD160 (lua-arc4random-1.3.4.tar.gz) = c4e42556458ac82cbfccecdcc0791a0509abb726
-SHA512 (lua-arc4random-1.3.4.tar.gz) = 8af54d0b44a823e39a5dfdfef0e8e74883a170cce7bf94a7093734b4a35050b5eada12b14ff17a7c3a8fb0b7849a98e8d542b25b1b4f993fd76919a52c16c87a
-Size (lua-arc4random-1.3.4.tar.gz) = 23194 bytes
-SHA1 (patch-Makefile.mess) = d3e93e37e4892549f5a123d4253199669bea67c9
+SHA1 (lua-arc4random-1.4.1.tar.gz) = ed2ec00fbd4b950fc4280960791858a12a09c0ce
+RMD160 (lua-arc4random-1.4.1.tar.gz) = f79e547958aac03bd1b1178e0d58ae1f6100587e
+SHA512 (lua-arc4random-1.4.1.tar.gz) = 60270fe210895a0714b6ba4a1bc91bf026f756c6b2e128099a55ef2e2410ad9a05b3c2a4973a4ca4e27f133251c634a209de7882f827b14254eef378f5482378
+Size (lua-arc4random-1.4.1.tar.gz) = 22771 bytes
diff --git a/security/lua-arc4random/patches/patch-Makefile.mess b/security/lua-arc4random/patches/patch-Makefile.mess
deleted file mode 100644
index 13ab91ec188..00000000000
--- a/security/lua-arc4random/patches/patch-Makefile.mess
+++ /dev/null
@@ -1,30 +0,0 @@
-$NetBSD: patch-Makefile.mess,v 1.2 2020/07/02 20:07:29 nia Exp $
-
-- Use libc on NetBSD too.
-- Support SunOS.
-
---- Makefile.mess.orig 2017-04-13 21:00:05.000000000 +0000
-+++ Makefile.mess
-@@ -12,7 +12,9 @@ else
- LDFLAGS += -bundle -undefined dynamic_lookup
- endif
-
--ifneq ($(uname),OpenBSD)
-+ifeq ($(uname),NetBSD)
-+else ifeq ($(uname),OpenBSD)
-+else
- # This is more or less what libressl does
- # See http://openbsd.cs.toronto.edu/cgi-bin/cvsweb/src/lib/libssl/src/crypto/mem_clr.c?rev=1.4&content-type=text/x-cvsweb-markup
- CFLAGS += -DOPENSSL_cleanse=explicit_bzero
-@@ -32,6 +34,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