pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/file Updated sysutils/file to 5.27



details:   https://anonhg.NetBSD.org/pkgsrc/rev/454fbafd2f34
branches:  trunk
changeset: 348035:454fbafd2f34
user:      mef <mef%pkgsrc.org@localhost>
date:      Sun Jun 05 13:57:37 2016 +0000

description:
Updated sysutils/file to 5.27
-----------------------------
2016-05-13  12:00  Christos Zoulas <christos%zoulas.com@localhost>

        * release 5.27

2016-04-18   9:35  Christos Zoulas <christos%zoulas.com@localhost>

        * 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:

 sysutils/file/Makefile                     |   4 ++--
 sysutils/file/distinfo                     |  12 ++++++------
 sysutils/file/patches/patch-src_compress.c |  17 +++++++++--------
 3 files changed, 17 insertions(+), 16 deletions(-)

diffs (59 lines):

diff -r 04d331e0cd92 -r 454fbafd2f34 sysutils/file/Makefile
--- a/sysutils/file/Makefile    Sun Jun 05 13:50:32 2016 +0000
+++ b/sysutils/file/Makefile    Sun Jun 05 13:57:37 2016 +0000
@@ -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 -r 04d331e0cd92 -r 454fbafd2f34 sysutils/file/distinfo
--- a/sysutils/file/distinfo    Sun Jun 05 13:50:32 2016 +0000
+++ b/sysutils/file/distinfo    Sun Jun 05 13:57:37 2016 +0000
@@ -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 -r 04d331e0cd92 -r 454fbafd2f34 sysutils/file/patches/patch-src_compress.c
--- a/sysutils/file/patches/patch-src_compress.c        Sun Jun 05 13:50:32 2016 +0000
+++ b/sysutils/file/patches/patch-src_compress.c        Sun Jun 05 13:57:37 2016 +0000
@@ -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 { \



Home | Main Index | Thread Index | Old Index