pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/sysutils/file Update to 4.13.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/46c7966669bb
branches:  trunk
changeset: 489228:46c7966669bb
user:      reed <reed%pkgsrc.org@localhost>
date:      Fri Feb 18 19:39:26 2005 +0000

description:
Update to 4.13.

I updated this because old version I was using had false-positive
with "Macintosh HFS data" -- file(1) saw a postscript file wrong
and broke some printing tasks. The distfile was no longer on MASTER_SITES
so updated. This fixed my Poscript problem.

Changes include:
2005-01-12 00:00  Stepan Kasal  <kasal%ucw.cz@localhost>
        * src/ascmagic.c (file_ascmagic): Fix three bugs about text files:
          If a CRLF text file happens to have CR at offset HOWMANY - 1
          (currently 0xffff), it should not be counted as CR line
          terminator.
          If a line has length exactly MAXLINELEN, it should not yet be
          treated as a ``very long line'', as MAXLINELEN is ``longest sane
          line length''.
          With CRLF, the line length was not computed correctly, and even
          lines of length MAXLINELEN - 1 were treated as ``very long''.
2004-12-07 14:15  Christos Zoulas  <christos%zoulas.com@localhost>
        * bzip2 needs a lot of input buffer space on some files
          before it can begin uncompressing. This makes file -z
          fail on some bz2 files. Fix it by giving it a copy of
          the file descriptor to read as much as it wants if we
          have access to it. <christos%zoulas.com@localhost>
2004-11-24 12:39  Christos Zoulas  <christos%zoulas.com@localhost>
        * Stack smash fix, and ELF more conservative reading.
          Jakub Bogusz <qboosh%pld-linux.org@localhost>
2004-11-20 18:50  Christos Zoulas  <christos%zoulas.com@localhost>
        * New FreeBSD version parsing code:
          Jon Noack <noackjr%alumni.rice.edu@localhost>
        * Hackish support for ucs16 strings <christos%zoulas.com@localhost>
2004-11-13 03:07  Christos Zoulas  <christos%zoulas.com@localhost>
        * print the file name and line number in syntax errors.
2004 10-12 10:50  Christos Zoulas  <christos%zoulas.com@localhost>
        * Fix stack overwriting on 0 length strings: Tim Waugh
            <twaugh%redhat.com@localhost> Ned Ludd <solar%gentoo.org@localhost>
2004-09-27 11:30  Christos Zoulas  <christos%zoulas.com@localhost>
        * Remove 3rd and 4th copyright clause; approved by Ian Darwin.
        * Fix small memory leaks; caught by: Tamas Sarlos
            <stamas%csillag.ilab.sztaki.hu@localhost>
2004-07-24 16:33  Christos Zoulas  <christos%zoulas.com@localhost>
        * magic.mime update Danny Milosavljevic <danny.milo%gmx.net@localhost>
        * FreeBSD version update Oliver Eikemeier <eikemeier%fillmore-labs.com@localhost>
        * utime/utimes detection Ian Lance Taylor <ian%wasabisystems.com@localhost>
        * errors reading elf magic Jakub Bogusz <qboosh%pld-linux.org@localhost>
2004-04-12 10:55  Christos Zoulas  <christos%zoulas.com@localhost>
        * make sure that magic formats match magic types during compilation
        * fix broken sgi magic file
2004-04-06 20:36  Christos Zoulas  <christos%zoulas.com@localhost>
        * detect present of mbstate_t Petter Reinholdtsen <pere%hungry.com@localhost>
        * magic fixes

diffstat:

 sysutils/file/Makefile         |   5 ++---
 sysutils/file/distinfo         |   8 ++++----
 sysutils/file/patches/patch-aa |  15 ++++++++-------
 3 files changed, 14 insertions(+), 14 deletions(-)

diffs (53 lines):

diff -r a996ba7661ef -r 46c7966669bb sysutils/file/Makefile
--- a/sysutils/file/Makefile    Fri Feb 18 19:32:10 2005 +0000
+++ b/sysutils/file/Makefile    Fri Feb 18 19:39:26 2005 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2004/10/03 00:18:14 tv Exp $
+# $NetBSD: Makefile,v 1.8 2005/02/18 19:39:26 reed Exp $
 
-DISTNAME=              file-4.09
-PKGREVISION=   1
+DISTNAME=              file-4.13
 CATEGORIES=            sysutils
 MASTER_SITES=          ftp://ftp.gw.com/mirrors/pub/unix/file/
 MASTER_SITES+=         ftp://ftp.astron.com/pub/file/
diff -r a996ba7661ef -r 46c7966669bb sysutils/file/distinfo
--- a/sysutils/file/distinfo    Fri Feb 18 19:32:10 2005 +0000
+++ b/sysutils/file/distinfo    Fri Feb 18 19:39:26 2005 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2004/06/22 13:45:31 grant Exp $
+$NetBSD: distinfo,v 1.3 2005/02/18 19:39:26 reed Exp $
 
-SHA1 (file-4.09.tar.gz) = ba960e47ab433b1077d0ba1644c9edf3c81253ec
-Size (file-4.09.tar.gz) = 365226 bytes
-SHA1 (patch-aa) = 01ef09e5a7cd6c967cb8fe5972ecc15fd4f0dd3c
+SHA1 (file-4.13.tar.gz) = a643b6e4c00cb7673a4dfd055d972dda0f5e0f53
+Size (file-4.13.tar.gz) = 420851 bytes
+SHA1 (patch-aa) = 057af6589512876c0c2ad085785d0b7888001714
diff -r a996ba7661ef -r 46c7966669bb sysutils/file/patches/patch-aa
--- a/sysutils/file/patches/patch-aa    Fri Feb 18 19:32:10 2005 +0000
+++ b/sysutils/file/patches/patch-aa    Fri Feb 18 19:39:26 2005 +0000
@@ -1,15 +1,16 @@
-$NetBSD: patch-aa,v 1.1.1.1 2003/04/13 10:24:27 cjep Exp $
+$NetBSD: patch-aa,v 1.2 2005/02/18 19:39:27 reed Exp $
 
---- src/Makefile.in.orig       Fri Apr 11 19:37:59 2003
-+++ src/Makefile.in    Fri Apr 11 19:41:12 2003
-@@ -122,13 +122,13 @@
- sharedstatedir = @sharedstatedir@
- sysconfdir = @sysconfdir@
- target_alias = @target_alias@
+--- src/Makefile.in.orig       2005-01-07 11:17:26.000000000 -0800
++++ src/Makefile.in
+@@ -84,14 +84,14 @@ am__include = @am__include@
+ am__quote = @am__quote@
+ fsect = @fsect@
+ install_sh = @install_sh@
 -MAGIC = $(pkgdatadir)/magic
 +MAGIC = @sysconfdir@/magic
  lib_LTLIBRARIES = libmagic.la
  include_HEADERS = magic.h
+ EXTRA_DIST = test.c
  
  bin_PROGRAMS = file
  



Home | Main Index | Thread Index | Old Index