summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2008-10-11 18:34:31 +0000
committertron <tron@pkgsrc.org>2008-10-11 18:34:31 +0000
commita9e2100f0915369158d306a53e7cf1ed25450859 (patch)
tree6722c2ae3c72206213547eeb2c56a0966759d718 /sysutils
parent432c3ef9c5f8772c2b6fdb8213f90bf1992553cd (diff)
downloadpkgsrc-a9e2100f0915369158d306a53e7cf1ed25450859.tar.gz
Pullup ticket #2550 - requested by sketch
mktemp: security update Revisions pulled up: - sysutils/mktemp/Makefile 1.6 - sysutils/mktemp/distinfo 1.5 - sysutils/mktemp/patches/patch-aa delete --- Module Name: pkgsrc Committed By: sketch Date: Thu Oct 9 12:00:59 UTC 2008 Modified Files: pkgsrc/sysutils/mktemp: Makefile distinfo Removed Files: pkgsrc/sysutils/mktemp/patches: patch-aa Log Message: Update to 1.6 and take maintainership. Changes: * Temporary file names no longer use the process ID as part of the name * Use arc4random_uniform() instead of random() or lrand48() * The prngd or egd daemon can now be used on systems without /dev/urandom * Added long option support for compatibility with GNU coreutils version * Fixed an installation issue on Cygwin
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/mktemp/Makefile7
-rw-r--r--sysutils/mktemp/distinfo9
-rw-r--r--sysutils/mktemp/patches/patch-aa13
3 files changed, 7 insertions, 22 deletions
diff --git a/sysutils/mktemp/Makefile b/sysutils/mktemp/Makefile
index cb04e7c082d..90d7ce3b2fd 100644
--- a/sysutils/mktemp/Makefile
+++ b/sysutils/mktemp/Makefile
@@ -1,14 +1,13 @@
-# $NetBSD: Makefile,v 1.5 2006/03/04 21:30:42 jlam Exp $
+# $NetBSD: Makefile,v 1.5.26.1 2008/10/11 18:34:31 tron Exp $
#
-DISTNAME= mktemp-1.5
+DISTNAME= mktemp-1.6
CATEGORIES= sysutils security
MASTER_SITES= ftp://ftp.mktemp.org/pub/mktemp/ \
- ftp://ftp.cs.colorado.edu/pub/mktemp/ \
ftp://ftp.usa.openbsd.org/pub/mktemp/ \
ftp://ftp.wiretapped.net/pub/security/host-security/mktemp/
-MAINTAINER= pkgsrc-users@NetBSD.org
+MAINTAINER= sketch@NetBSD.org
HOMEPAGE= http://www.mktemp.org/
COMMENT= Small program for safe temporary file and directory creation
diff --git a/sysutils/mktemp/distinfo b/sysutils/mktemp/distinfo
index a3bf60a404d..0c08d54c045 100644
--- a/sysutils/mktemp/distinfo
+++ b/sysutils/mktemp/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2005/10/07 16:00:57 joerg Exp $
+$NetBSD: distinfo,v 1.4.28.1 2008/10/11 18:34:31 tron Exp $
-SHA1 (mktemp-1.5.tar.gz) = aa001fd61d13bbf128dc58ca4dc6d83311435bae
-RMD160 (mktemp-1.5.tar.gz) = a2fa93592e1d362aa0882a70ea494cc45da48dab
-Size (mktemp-1.5.tar.gz) = 70529 bytes
-SHA1 (patch-aa) = fd6a799fbf14223cb71db35868e90f73cdea2df1
+SHA1 (mktemp-1.6.tar.gz) = 562ee9f2b7033a90196409961c2137917c125838
+RMD160 (mktemp-1.6.tar.gz) = f29953ed51fe0f593c7407467ec1b99f24b5813d
+Size (mktemp-1.6.tar.gz) = 79154 bytes
diff --git a/sysutils/mktemp/patches/patch-aa b/sysutils/mktemp/patches/patch-aa
deleted file mode 100644
index db5a4745c77..00000000000
--- a/sysutils/mktemp/patches/patch-aa
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2005/10/07 16:00:57 joerg Exp $
-
---- extern.h.orig 2005-07-22 14:18:08.000000000 +0000
-+++ extern.h
-@@ -38,8 +38,6 @@
- # define __P(args) ()
- #endif
-
--extern int errno;
--
- extern char *MKDTEMP __P((char *));
- extern int MKSTEMP __P((char *));
- extern long get_random __P((void));