diff options
author | sketch <sketch> | 2008-10-09 12:00:59 +0000 |
---|---|---|
committer | sketch <sketch> | 2008-10-09 12:00:59 +0000 |
commit | a4267c2726e050228a90eecf95368d165480d4f3 (patch) | |
tree | aa935c2e2f9ffe8d400f28861c5086dc9aee128d /sysutils | |
parent | 1a1154b6fdd718abc73c2efde394abbea9e43951 (diff) | |
download | pkgsrc-a4267c2726e050228a90eecf95368d165480d4f3.tar.gz |
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/Makefile | 7 | ||||
-rw-r--r-- | sysutils/mktemp/distinfo | 9 | ||||
-rw-r--r-- | sysutils/mktemp/patches/patch-aa | 13 |
3 files changed, 7 insertions, 22 deletions
diff --git a/sysutils/mktemp/Makefile b/sysutils/mktemp/Makefile index cb04e7c082d..68e82da6c83 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.6 2008/10/09 12:00:59 sketch 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..f4ac5ffc8f6 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.5 2008/10/09 12:00:59 sketch 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)); |