summaryrefslogtreecommitdiff
path: root/sysutils/file
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2005-02-18 19:39:26 +0000
committerreed <reed@pkgsrc.org>2005-02-18 19:39:26 +0000
commited81a742fead69821352677daae241c455985b23 (patch)
treee28fb2afe8239f269ed4ab275fee86fab79911b7 /sysutils/file
parent2a67031d460f4748b9794242669644cb1d31d3e0 (diff)
downloadpkgsrc-ed81a742fead69821352677daae241c455985b23.tar.gz
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> * 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> * 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> 2004-11-24 12:39 Christos Zoulas <christos@zoulas.com> * Stack smash fix, and ELF more conservative reading. Jakub Bogusz <qboosh@pld-linux.org> 2004-11-20 18:50 Christos Zoulas <christos@zoulas.com> * New FreeBSD version parsing code: Jon Noack <noackjr@alumni.rice.edu> * Hackish support for ucs16 strings <christos@zoulas.com> 2004-11-13 03:07 Christos Zoulas <christos@zoulas.com> * print the file name and line number in syntax errors. 2004 10-12 10:50 Christos Zoulas <christos@zoulas.com> * Fix stack overwriting on 0 length strings: Tim Waugh <twaugh@redhat.com> Ned Ludd <solar@gentoo.org> 2004-09-27 11:30 Christos Zoulas <christos@zoulas.com> * Remove 3rd and 4th copyright clause; approved by Ian Darwin. * Fix small memory leaks; caught by: Tamas Sarlos <stamas@csillag.ilab.sztaki.hu> 2004-07-24 16:33 Christos Zoulas <christos@zoulas.com> * magic.mime update Danny Milosavljevic <danny.milo@gmx.net> * FreeBSD version update Oliver Eikemeier <eikemeier@fillmore-labs.com> * utime/utimes detection Ian Lance Taylor <ian@wasabisystems.com> * errors reading elf magic Jakub Bogusz <qboosh@pld-linux.org> 2004-04-12 10:55 Christos Zoulas <christos@zoulas.com> * 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> * detect present of mbstate_t Petter Reinholdtsen <pere@hungry.com> * magic fixes
Diffstat (limited to 'sysutils/file')
-rw-r--r--sysutils/file/Makefile5
-rw-r--r--sysutils/file/distinfo8
-rw-r--r--sysutils/file/patches/patch-aa15
3 files changed, 14 insertions, 14 deletions
diff --git a/sysutils/file/Makefile b/sysutils/file/Makefile
index d57585a887b..0dc22820b95 100644
--- a/sysutils/file/Makefile
+++ b/sysutils/file/Makefile
@@ -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 --git a/sysutils/file/distinfo b/sysutils/file/distinfo
index 43fac0ddc26..644754b8cfc 100644
--- a/sysutils/file/distinfo
+++ b/sysutils/file/distinfo
@@ -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 --git a/sysutils/file/patches/patch-aa b/sysutils/file/patches/patch-aa
index 84d787a24c0..d45c0f9f947 100644
--- a/sysutils/file/patches/patch-aa
+++ b/sysutils/file/patches/patch-aa
@@ -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