Source-Changes-HG archive

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

[src/trunk]: src/external/bsd/bzip2/dist Import bzip2-1.0.6:



details:   https://anonhg.NetBSD.org/src/rev/6ea081ef54e5
branches:  trunk
changeset: 779155:6ea081ef54e5
user:      wiz <wiz%NetBSD.org@localhost>
date:      Mon May 07 00:41:32 2012 +0000

description:
Import bzip2-1.0.6:

1.0.6 (6 Sept 10)
~~~~~~~~~~~~~~~~~

* Security fix for CVE-2010-0405.  This was reported by Mikolaj
  Izdebski.

* Make the documentation build on Ubuntu 10.04

diffstat:

 external/bsd/bzip2/dist/CHANGES                     |   12 +-
 external/bsd/bzip2/dist/LICENSE                     |    4 +-
 external/bsd/bzip2/dist/Makefile                    |    6 +-
 external/bsd/bzip2/dist/Makefile-libbz2_so          |   14 +-
 external/bsd/bzip2/dist/README                      |    9 +-
 external/bsd/bzip2/dist/README.COMPILATION.PROBLEMS |    6 +-
 external/bsd/bzip2/dist/README.XML.STUFF            |    4 +-
 external/bsd/bzip2/dist/blocksort.c                 |    6 +-
 external/bsd/bzip2/dist/bzlib.h                     |    6 +-
 external/bsd/bzip2/dist/compress.c                  |    6 +-
 external/bsd/bzip2/dist/crctable.c                  |    6 +-
 external/bsd/bzip2/dist/entities.xml                |    6 +-
 external/bsd/bzip2/dist/format.pl                   |    4 +-
 external/bsd/bzip2/dist/huffman.c                   |    6 +-
 external/bsd/bzip2/dist/manual.html                 |  344 ++++++++++----------
 external/bsd/bzip2/dist/manual.xml                  |   40 +-
 external/bsd/bzip2/dist/mk251.c                     |    6 +-
 external/bsd/bzip2/dist/randtable.c                 |    6 +-
 external/bsd/bzip2/dist/spewG.c                     |    6 +-
 external/bsd/bzip2/dist/unzcrash.c                  |    6 +-
 external/bsd/bzip2/dist/xmlproc.sh                  |    4 +-
 21 files changed, 260 insertions(+), 247 deletions(-)

diffs (truncated from 1510 to 300 lines):

diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/CHANGES
--- a/external/bsd/bzip2/dist/CHANGES   Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/CHANGES   Mon May 07 00:41:32 2012 +0000
@@ -2,8 +2,8 @@
  This file is part of bzip2/libbzip2, a program and library for
  lossless, block-sorting data compression.
 
- bzip2/libbzip2 version 1.0.5 of 10 December 2007
- Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+ bzip2/libbzip2 version 1.0.6 of 6 September 2010
+ Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
  Please read the WARNING, DISCLAIMER and PATENTS sections in the 
  README file.
@@ -317,3 +317,11 @@
 ~~~~~~~~~~~~~~~~~
 Security fix only.  Fixes CERT-FI 20469 as it applies to bzip2.
 
+
+1.0.6 (6 Sept 10)
+~~~~~~~~~~~~~~~~~
+
+* Security fix for CVE-2010-0405.  This was reported by Mikolaj
+  Izdebski.
+
+* Make the documentation build on Ubuntu 10.04
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/LICENSE
--- a/external/bsd/bzip2/dist/LICENSE   Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/LICENSE   Mon May 07 00:41:32 2012 +0000
@@ -2,7 +2,7 @@
 --------------------------------------------------------------------------
 
 This program, "bzip2", the associated library "libbzip2", and all
-documentation, are copyright (C) 1996-2007 Julian R Seward.  All
+documentation, are copyright (C) 1996-2010 Julian R Seward.  All
 rights reserved.
 
 Redistribution and use in source and binary forms, with or without
@@ -37,6 +37,6 @@
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 Julian Seward, jseward%bzip.org@localhost
-bzip2/libbzip2 version 1.0.5 of 10 December 2007
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
 
 --------------------------------------------------------------------------
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/Makefile
--- a/external/bsd/bzip2/dist/Makefile  Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/Makefile  Mon May 07 00:41:32 2012 +0000
@@ -2,8 +2,8 @@
 # This file is part of bzip2/libbzip2, a program and library for
 # lossless, block-sorting data compression.
 #
-# bzip2/libbzip2 version 1.0.5 of 10 December 2007
-# Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+# bzip2/libbzip2 version 1.0.6 of 6 September 2010
+# Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 #
 # Please read the WARNING, DISCLAIMER and PATENTS sections in the 
 # README file.
@@ -137,7 +137,7 @@
 distclean: clean
        rm -f manual.ps manual.html manual.pdf
 
-DISTNAME=bzip2-1.0.5
+DISTNAME=bzip2-1.0.6
 dist: check manual
        rm -f $(DISTNAME)
        ln -s -f . $(DISTNAME)
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/Makefile-libbz2_so
--- a/external/bsd/bzip2/dist/Makefile-libbz2_so        Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/Makefile-libbz2_so        Mon May 07 00:41:32 2012 +0000
@@ -1,6 +1,6 @@
 
 # This Makefile builds a shared version of the library, 
-# libbz2.so.1.0.4, with soname libbz2.so.1.0,
+# libbz2.so.1.0.6, with soname libbz2.so.1.0,
 # at least on x86-Linux (RedHat 7.2), 
 # with gcc-2.96 20000731 (Red Hat Linux 7.1 2.96-98).  
 # Please see the README file for some important info 
@@ -10,8 +10,8 @@
 # This file is part of bzip2/libbzip2, a program and library for
 # lossless, block-sorting data compression.
 #
-# bzip2/libbzip2 version 1.0.5 of 10 December 2007
-# Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+# bzip2/libbzip2 version 1.0.6 of 6 September 2010
+# Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 #
 # Please read the WARNING, DISCLAIMER and PATENTS sections in the 
 # README file.
@@ -35,13 +35,13 @@
       bzlib.o
 
 all: $(OBJS)
-       $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.4 $(OBJS)
-       $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.4
+       $(CC) -shared -Wl,-soname -Wl,libbz2.so.1.0 -o libbz2.so.1.0.6 $(OBJS)
+       $(CC) $(CFLAGS) -o bzip2-shared bzip2.c libbz2.so.1.0.6
        rm -f libbz2.so.1.0
-       ln -s libbz2.so.1.0.4 libbz2.so.1.0
+       ln -s libbz2.so.1.0.6 libbz2.so.1.0
 
 clean: 
-       rm -f $(OBJS) bzip2.o libbz2.so.1.0.4 libbz2.so.1.0 bzip2-shared
+       rm -f $(OBJS) bzip2.o libbz2.so.1.0.6 libbz2.so.1.0 bzip2-shared
 
 blocksort.o: blocksort.c
        $(CC) $(CFLAGS) -c blocksort.c
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/README
--- a/external/bsd/bzip2/dist/README    Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/README    Mon May 07 00:41:32 2012 +0000
@@ -6,8 +6,8 @@
 This file is part of bzip2/libbzip2, a program and library for
 lossless, block-sorting data compression.
 
-bzip2/libbzip2 version 1.0.5 of 10 December 2007
-Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
+Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
 Please read the WARNING, DISCLAIMER and PATENTS sections in this file.
 
@@ -181,6 +181,10 @@
 
    See the CHANGES file.
 
+WHAT'S NEW IN 1.0.6 ?
+
+   See the CHANGES file.
+
 
 I hope you find bzip2 useful.  Feel free to contact me at
    jseward%bzip.org@localhost
@@ -208,3 +212,4 @@
 15 February 2005 (bzip2, version 1.0.3)
 20 December 2006 (bzip2, version 1.0.4)
 10 December 2007 (bzip2, version 1.0.5)
+ 6     Sept 2010 (bzip2, version 1.0.6)
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/README.COMPILATION.PROBLEMS
--- a/external/bsd/bzip2/dist/README.COMPILATION.PROBLEMS       Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/README.COMPILATION.PROBLEMS       Mon May 07 00:41:32 2012 +0000
@@ -2,8 +2,8 @@
 This file is part of bzip2/libbzip2, a program and library for
 lossless, block-sorting data compression.
 
-bzip2/libbzip2 version 1.0.5 of 10 December 2007
-Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+bzip2/libbzip2 version 1.0.6 of 6 September 2010
+Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
 Please read the WARNING, DISCLAIMER and PATENTS sections in the 
 README file.
@@ -12,7 +12,7 @@
 in the file LICENSE.
 ------------------------------------------------------------------
 
-bzip2-1.0.5 should compile without problems on the vast majority of
+bzip2-1.0.6 should compile without problems on the vast majority of
 platforms.  Using the supplied Makefile, I've built and tested it
 myself for x86-linux and amd64-linux.  With makefile.msc, Visual C++
 6.0 and nmake, you can build a native Win32 version too.  Large file
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/README.XML.STUFF
--- a/external/bsd/bzip2/dist/README.XML.STUFF  Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/README.XML.STUFF  Mon May 07 00:41:32 2012 +0000
@@ -2,8 +2,8 @@
   This file is part of bzip2/libbzip2, a program and library for
   lossless, block-sorting data compression.
 
-  bzip2/libbzip2 version 1.0.5 of 10 December 2007
-  Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+  bzip2/libbzip2 version 1.0.6 of 6 September 2010
+  Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
   Please read the WARNING, DISCLAIMER and PATENTS sections in the 
   README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/blocksort.c
--- a/external/bsd/bzip2/dist/blocksort.c       Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/blocksort.c       Mon May 07 00:41:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: blocksort.c,v 1.1.1.1 2012/05/07 00:21:45 wiz Exp $    */
+/*     $NetBSD: blocksort.c,v 1.1.1.2 2012/05/07 00:41:45 wiz Exp $    */
 
 
 /*-------------------------------------------------------------*/
@@ -10,8 +10,8 @@
    This file is part of bzip2/libbzip2, a program and library for
    lossless, block-sorting data compression.
 
-   bzip2/libbzip2 version 1.0.5 of 10 December 2007
-   Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+   bzip2/libbzip2 version 1.0.6 of 6 September 2010
+   Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
    Please read the WARNING, DISCLAIMER and PATENTS sections in the 
    README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/bzlib.h
--- a/external/bsd/bzip2/dist/bzlib.h   Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/bzlib.h   Mon May 07 00:41:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bzlib.h,v 1.1.1.1 2012/05/07 00:21:46 wiz Exp $        */
+/*     $NetBSD: bzlib.h,v 1.1.1.2 2012/05/07 00:41:46 wiz Exp $        */
 
 
 /*-------------------------------------------------------------*/
@@ -10,8 +10,8 @@
    This file is part of bzip2/libbzip2, a program and library for
    lossless, block-sorting data compression.
 
-   bzip2/libbzip2 version 1.0.5 of 10 December 2007
-   Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+   bzip2/libbzip2 version 1.0.6 of 6 September 2010
+   Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
    Please read the WARNING, DISCLAIMER and PATENTS sections in the 
    README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/compress.c
--- a/external/bsd/bzip2/dist/compress.c        Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/compress.c        Mon May 07 00:41:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: compress.c,v 1.1.1.1 2012/05/07 00:21:46 wiz Exp $     */
+/*     $NetBSD: compress.c,v 1.1.1.2 2012/05/07 00:41:46 wiz Exp $     */
 
 
 /*-------------------------------------------------------------*/
@@ -10,8 +10,8 @@
    This file is part of bzip2/libbzip2, a program and library for
    lossless, block-sorting data compression.
 
-   bzip2/libbzip2 version 1.0.5 of 10 December 2007
-   Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+   bzip2/libbzip2 version 1.0.6 of 6 September 2010
+   Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
    Please read the WARNING, DISCLAIMER and PATENTS sections in the 
    README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/crctable.c
--- a/external/bsd/bzip2/dist/crctable.c        Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/crctable.c        Mon May 07 00:41:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: crctable.c,v 1.1.1.1 2012/05/07 00:21:46 wiz Exp $     */
+/*     $NetBSD: crctable.c,v 1.1.1.2 2012/05/07 00:41:46 wiz Exp $     */
 
 
 /*-------------------------------------------------------------*/
@@ -10,8 +10,8 @@
    This file is part of bzip2/libbzip2, a program and library for
    lossless, block-sorting data compression.
 
-   bzip2/libbzip2 version 1.0.5 of 10 December 2007
-   Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+   bzip2/libbzip2 version 1.0.6 of 6 September 2010
+   Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 
    Please read the WARNING, DISCLAIMER and PATENTS sections in the 
    README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/entities.xml
--- a/external/bsd/bzip2/dist/entities.xml      Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/entities.xml      Mon May 07 00:41:32 2012 +0000
@@ -1,9 +1,9 @@
 <!-- misc. strings -->
 <!ENTITY bz-url "http://www.bzip.org";>
 <!ENTITY bz-email "jseward%bzip.org@localhost">
-<!ENTITY bz-lifespan "1996-2007">
+<!ENTITY bz-lifespan "1996-2010">
 
-<!ENTITY bz-version "1.0.5">
-<!ENTITY bz-date "10 December 2007">
+<!ENTITY bz-version "1.0.6">
+<!ENTITY bz-date "6 September 2010">
 
 <!ENTITY manual-title "bzip2 Manual">
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/format.pl
--- a/external/bsd/bzip2/dist/format.pl Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/format.pl Mon May 07 00:41:32 2012 +0000
@@ -4,8 +4,8 @@
 # This file is part of bzip2/libbzip2, a program and library for
 # lossless, block-sorting data compression.
 #
-# bzip2/libbzip2 version 1.0.5 of 10 December 2007
-# Copyright (C) 1996-2007 Julian Seward <jseward%bzip.org@localhost>
+# bzip2/libbzip2 version 1.0.6 of 6 September 2010
+# Copyright (C) 1996-2010 Julian Seward <jseward%bzip.org@localhost>
 #
 # Please read the WARNING, DISCLAIMER and PATENTS sections in the 
 # README file.
diff -r c59198ff2779 -r 6ea081ef54e5 external/bsd/bzip2/dist/huffman.c
--- a/external/bsd/bzip2/dist/huffman.c Mon May 07 00:35:25 2012 +0000
+++ b/external/bsd/bzip2/dist/huffman.c Mon May 07 00:41:32 2012 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: huffman.c,v 1.1.1.1 2012/05/07 00:21:46 wiz Exp $      */
+/*     $NetBSD: huffman.c,v 1.1.1.2 2012/05/07 00:41:46 wiz Exp $      */
 
 
 /*-------------------------------------------------------------*/
@@ -10,8 +10,8 @@
    This file is part of bzip2/libbzip2, a program and library for
    lossless, block-sorting data compression.
 
-   bzip2/libbzip2 version 1.0.5 of 10 December 2007



Home | Main Index | Thread Index | Old Index