summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorwiz <wiz>2011-03-23 10:16:22 +0000
committerwiz <wiz>2011-03-23 10:16:22 +0000
commitc7118477d2f38ac97ac3b54b09826bb4cb0ae866 (patch)
tree6c4f049ddfd2cfd4cd6bfcd7e5f4a5649b1d7eea /sysutils
parentb9e9831a27841c7d767efb0c2b6d6b03e57cf224 (diff)
downloadpkgsrc-c7118477d2f38ac97ac3b54b09826bb4cb0ae866.tar.gz
Update to 1.7, based on PR 44014 from Aleksey Cheusov.
Set LICENSE. Major changes in upstream Temporary file names now include digits in addition to letters. mktemp will now terminate after 2*N^62 attempts, where N is the number of Xs in the template. Previously it would try forever. Fixed UTF8 formatting of the grave accent character in the manual.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/mktemp/Makefile7
-rw-r--r--sysutils/mktemp/distinfo9
-rw-r--r--sysutils/mktemp/patches/patch-ab21
3 files changed, 8 insertions, 29 deletions
diff --git a/sysutils/mktemp/Makefile b/sysutils/mktemp/Makefile
index 839d09cab6f..388ca8da41f 100644
--- a/sysutils/mktemp/Makefile
+++ b/sysutils/mktemp/Makefile
@@ -1,14 +1,15 @@
-# $NetBSD: Makefile,v 1.8 2009/12/12 23:20:52 asau Exp $
+# $NetBSD: Makefile,v 1.9 2011/03/23 10:16:22 wiz Exp $
#
-DISTNAME= mktemp-1.6
+DISTNAME= mktemp-1.7
CATEGORIES= sysutils security
MASTER_SITES= ftp://ftp.mktemp.org/pub/mktemp/ \
- ftp://ftp.usa.openbsd.org/pub/mktemp/
+ ftp://ftp.usa.openbsd.org/pub/mktemp/
MAINTAINER= sketch@NetBSD.org
HOMEPAGE= http://www.mktemp.org/
COMMENT= Small program for safe temporary file and directory creation
+LICENSE= isc
PKG_DESTDIR_SUPPORT= user-destdir
diff --git a/sysutils/mktemp/distinfo b/sysutils/mktemp/distinfo
index fbe8b31d3d8..ea369abb170 100644
--- a/sysutils/mktemp/distinfo
+++ b/sysutils/mktemp/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2009/12/12 23:20:52 asau Exp $
+$NetBSD: distinfo,v 1.7 2011/03/23 10:16:23 wiz Exp $
-SHA1 (mktemp-1.6.tar.gz) = 562ee9f2b7033a90196409961c2137917c125838
-RMD160 (mktemp-1.6.tar.gz) = f29953ed51fe0f593c7407467ec1b99f24b5813d
-Size (mktemp-1.6.tar.gz) = 79154 bytes
-SHA1 (patch-ab) = cc2499cad500853d76cfd8d7840930e6a1364c6e
+SHA1 (mktemp-1.7.tar.gz) = 6a4098623cd65b9037b301b8f71c62454ccab2d9
+RMD160 (mktemp-1.7.tar.gz) = c6ad39326af4585a36e1846a6a6a8ce56d24265d
+Size (mktemp-1.7.tar.gz) = 78792 bytes
diff --git a/sysutils/mktemp/patches/patch-ab b/sysutils/mktemp/patches/patch-ab
deleted file mode 100644
index d92b1e48463..00000000000
--- a/sysutils/mktemp/patches/patch-ab
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2009/12/12 23:20:52 asau Exp $
-
---- Makefile.in.orig 2008-08-17 19:38:34.000000000 +0400
-+++ Makefile.in 2009-12-13 02:16:34.000000000 +0300
-@@ -106,13 +106,13 @@
- install: install-dirs install-binaries install-man
-
- install-dirs:
-- $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(mandir)/man1
-+ $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1
-
- install-binaries: $(PROG)
-- $(INSTALL) -m 0555 -s $(PROG) $(bindir)/$(PROG)
-+ $(INSTALL) -m 0555 -s $(PROG) $(DESTDIR)$(bindir)/$(PROG)
-
- install-man:
-- $(INSTALL) -m 0444 $(srcdir)/mktemp.$(mantype) $(mandir)/man1/mktemp.1
-+ $(INSTALL) -m 0444 $(srcdir)/mktemp.$(mantype) $(DESTDIR)$(mandir)/man1/mktemp.1
-
- check:
- @echo nothing to check