summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authormef <mef@pkgsrc.org>2016-06-05 13:57:37 +0000
committermef <mef@pkgsrc.org>2016-06-05 13:57:37 +0000
commit330561ccc70aad1860021c3ff63a60f25e16a4f6 (patch)
tree64e89b74e21b57a2a19b28d11287873c5a59a322 /sysutils
parentf651f04b95ef2c166351a7de20452f8d4ff31209 (diff)
downloadpkgsrc-330561ccc70aad1860021c3ff63a60f25e16a4f6.tar.gz
Updated sysutils/file to 5.27
----------------------------- 2016-05-13 12:00 Christos Zoulas <christos@zoulas.com> * release 5.27 2016-04-18 9:35 Christos Zoulas <christos@zoulas.com> * Errors comparing DER entries or computing offsets are just indications of malformed non-DER files. Don't print them. * Offset comparison was off-by-one. * Fix compression code (Werner Fink) * Put new bytes constant in the right file (not the generated one)
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/file/Makefile4
-rw-r--r--sysutils/file/distinfo12
-rw-r--r--sysutils/file/patches/patch-src_compress.c17
3 files changed, 17 insertions, 16 deletions
diff --git a/sysutils/file/Makefile b/sysutils/file/Makefile
index 611e9f3dfe9..aaa92a6dbb0 100644
--- a/sysutils/file/Makefile
+++ b/sysutils/file/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.37 2016/03/05 15:44:36 bsiegert Exp $
+# $NetBSD: Makefile,v 1.38 2016/06/05 13:57:37 mef Exp $
-DISTNAME= file-5.25
+DISTNAME= file-5.27
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.astron.com/pub/file/
diff --git a/sysutils/file/distinfo b/sysutils/file/distinfo
index e804218880e..b7bd2b1fae7 100644
--- a/sysutils/file/distinfo
+++ b/sysutils/file/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.25 2016/03/05 15:44:36 bsiegert Exp $
+$NetBSD: distinfo,v 1.26 2016/06/05 13:57:37 mef Exp $
-SHA1 (file-5.25.tar.gz) = fea78106dd0b7a09a61714cdbe545135563e84bd
-RMD160 (file-5.25.tar.gz) = 94c14b8a76e65ad52349b9b3f3da835f97b642a3
-SHA512 (file-5.25.tar.gz) = 4a5176a7e80df2bb7e45916490433d22eb98a442d49d04146afcbdcf92ff619ea3e73e95c8991e6b6a0628efb9d127bfa4aafc1cae523f8261ca693bc5e13402
-Size (file-5.25.tar.gz) = 739485 bytes
+SHA1 (file-5.27.tar.gz) = 5476e4b98b37f2bd1009c2f38d65063fd1170d4f
+RMD160 (file-5.27.tar.gz) = 5851b5014e4731ce85cf70a29066e50e0cab6a17
+SHA512 (file-5.27.tar.gz) = fcf607d367d85b8a971a62793efc79f7e548e029dd7bb41f95bf992c271c514d70cd4bb5c2ca577e470e0ff1df9dca31beaaf19a5fd4e3f617b36061eff46195
+Size (file-5.27.tar.gz) = 774063 bytes
SHA1 (patch-aa) = d3aa3667e3d28ac1268b83de2de372ba083705fc
-SHA1 (patch-src_compress.c) = 63407a3103bb1e77a5c8f1a5e859eb884ad55b3a
+SHA1 (patch-src_compress.c) = 1745daee386b069ebc3b9e63e0973d4f2ab348f4
SHA1 (patch-src_fsmagic.c) = ee770cf37dfdfbc5a7c123d2691312610b76e76e
diff --git a/sysutils/file/patches/patch-src_compress.c b/sysutils/file/patches/patch-src_compress.c
index f4e84c389c4..e5ae3d3b5d6 100644
--- a/sysutils/file/patches/patch-src_compress.c
+++ b/sysutils/file/patches/patch-src_compress.c
@@ -1,15 +1,16 @@
-$NetBSD: patch-src_compress.c,v 1.1 2015/03/27 18:57:43 bsiegert Exp $
+$NetBSD: patch-src_compress.c,v 1.2 2016/06/05 13:57:37 mef Exp $
sig_t is not defined by default on SunOS
---- src/compress.c.orig 2014-12-16 16:07:12.000000000 +0000
-+++ src/compress.c
-@@ -59,6 +59,9 @@ FILE_RCSID("@(#)$File: compress.c,v 1.77
- #define BUILTIN_DECOMPRESS
+--- src/compress.c.orig 2016-04-20 09:00:26.000000000 +0900
++++ src/compress.c 2016-06-05 22:54:06.000000000 +0900
+@@ -67,6 +67,10 @@ typedef void (*sig_t)(int);
#include <zlib.h>
+ #define ZLIBSUPPORT
#endif
++/* sig_t is not defined by default on SunOS */
+#ifdef __sun
+typedef void (*sig_t)(int);
+#endif
-
- private const struct {
- const char magic[8];
+ #ifdef DEBUG
+ int tty = -1;
+ #define DPRINTF(...) do { \