Fri Oct 21 21:26:47 2011 UTC ()
Update to 1.12

* lzdiff and lzgrep are now separate package, zutils (not packaged yet).

Changelog:
2011-04-30  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.12 released.
	* main.cc: Added new option `-F, --recompress'.
	* encoder.h (update_prices): Update high length symbol prices
	  independently of the value of `pos_state'. This gives better
	  compression for large values of `--match-length' without being
	  slower.
	* encoder.h encoder.cc: Optimize pair price calculations. This
	  reduces compression time for large values of `--match-length'
	  by up to 6%.
	* Compression time of option `-0' has been reduced by 2%.
	* main.cc (decompress): Print only one status line for each
	  multimember file when only one `-v' is specified.
	* main.cc (decompress): Print up to 6 bytes of trailing garbage
	  when `-vvvv' is specified.
	* main.cc (open_instream): Do not show the message
	  " and `--stdout' was not specified" for directories, etc.
	* lziprecover.cc: If `-v' is not specified show errors only.
	* testsuite/unzcrash.cc: Use Arg_parser.
	* testsuite/unzcrash.cc: Added new options `-b', `-p' and `-s'.

2010-09-16  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.11 released.
	* Added new option `-0' which produces a compression speed and
	  ratio comparable to those of `gzip -9'.
	* fast_encoder.h fast_encoder.cc: New files.
	* main.cc: Match length limit set by options -1 to -8 has been
	  reduced to extend range of use towards gzip. Lower numbers now
	  compress less but faster. (-1 now takes 43% less time for only
	  20% larger compressed size).
	* encoder.cc: Compression of option -9 has been slightly increased.
	* lziprecover.cc: Added new option `--merge' which tries to
	  produce a correct file merging the good parts of two or more
	  damaged copies.
	* lziprecover.cc: Added new option `--repair' for repairing a
	  1-byte error in single-member files.
	* decoder.cc (decode_member): Detect file errors earlier to
	  improve efficiency of lziprecover's new repair capability.
	  This change also prevents (harmless) access to uninitialized
	  memory when decompressing a corrupt file.
	* lziprecover.cc: Added new option `--force'.
	* lziprecover.cc: Added new option `--output'.
	* lziprecover.cc: Added new option `--split' to select the until
	  now only operation of splitting multimember files.
	* lziprecover.cc: If no operation is specified, warn the user
	  and do nothing.
	* main.cc: Fixed warning about fchown's return value being ignored.
	* decoder.cc: `-tvvvv' now also shows compression ratio.
	* main.cc: Set stdin/stdout in binary mode on MSVC and OS2.
	* New examples have been added to the manual.
	* testsuite: `test1' renamed to `test.txt'. Added new tests.
	* Matchfinder types HC4 (4 bytes hash-chain) and HT4 (4 bytes
	  hash-table) have been tested and found no better than the
	  current BT4.

2010-04-05  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.10 released.
	* decoder.h: Input_buffer integrated in Range_decoder.
	* main.cc: File specified with option `-o' is now created with
	  mode 0666 if umask allows it, deleted if interrupted by user.
	* main.cc: New constant `o_binary'.
	* main.cc: Dictionary size for options -2, -3, -4 and -8 has
	  been changed to improve linearity of compressed sizes.
	* lzip.h: Fixed warnings produced by over-optimization (-O3).
	* Makefile.in: Added quotes to directory names.

2010-01-17  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.9 released.
	* main.cc (main): Return at least 1 if closing stdout fails.
	* Makefile.in: Added `--name' option to help2man invocation.
	* testsuite/check.sh: Use `test1' instead of `COPYING' for testing.

2009-09-02  Antonio Diaz Diaz  <ant_diaz@teleline.es>

	* Version 1.8 released.
	* Compression time has been reduced by 4%.
	* Lzdiff and lzgrep have been moved to the new package zutils.
	* Fixed warnings on sistems where uint32_t != unsigned int.


(ryoon)
diff -r1.2 -r1.3 pkgsrc/archivers/lzip/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/archivers/lzip/PLIST
diff -r1.1.1.1 -r1.2 pkgsrc/archivers/lzip/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/archivers/lzip/Makefile (expand / switch to unified diff)

--- pkgsrc/archivers/lzip/Makefile 2010/01/24 23:59:33 1.2
+++ pkgsrc/archivers/lzip/Makefile 2011/10/21 21:26:47 1.3
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.2 2010/01/24 23:59:33 zafer Exp $ 1# $NetBSD: Makefile,v 1.3 2011/10/21 21:26:47 ryoon Exp $
2# 2#
3 3
4DISTNAME= lzip-1.7 4DISTNAME= lzip-1.12
5CATEGORIES= archivers 5CATEGORIES= archivers
6MASTER_SITES= http://download.savannah.gnu.org/releases/lzip/ 6MASTER_SITES= http://download.savannah.gnu.org/releases/lzip/
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://www.nongnu.org/lzip/lzip.html 9HOMEPAGE= http://www.nongnu.org/lzip/lzip.html
10COMMENT= Lossless data compressor based on the LZMA algorithm 10COMMENT= Lossless data compressor based on the LZMA algorithm
11LICENSE= gnu-gpl-v3 11LICENSE= gnu-gpl-v3
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15USE_LANGUAGES= c++ 15USE_LANGUAGES= c++
16HAS_CONFIGURE= yes 16HAS_CONFIGURE= yes
17CONFIGURE_ARGS= --prefix=${PREFIX} 17CONFIGURE_ARGS= --prefix=${PREFIX}

cvs diff -r1.1.1.1 -r1.2 pkgsrc/archivers/lzip/PLIST (expand / switch to unified diff)

--- pkgsrc/archivers/lzip/PLIST 2009/07/15 08:36:48 1.1.1.1
+++ pkgsrc/archivers/lzip/PLIST 2011/10/21 21:26:47 1.2
@@ -1,10 +1,6 @@ @@ -1,10 +1,6 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2009/07/15 08:36:48 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.2 2011/10/21 21:26:47 ryoon Exp $
2bin/lzdiff 
3bin/lzgrep 
4bin/lzip 2bin/lzip
5bin/lziprecover 3bin/lziprecover
6info/lzip.info 4info/lzip.info
7man/man1/lzdiff.1 
8man/man1/lzgrep.1 
9man/man1/lzip.1 5man/man1/lzip.1
10man/man1/lziprecover.1 6man/man1/lziprecover.1

cvs diff -r1.1.1.1 -r1.2 pkgsrc/archivers/lzip/distinfo (expand / switch to unified diff)

--- pkgsrc/archivers/lzip/distinfo 2009/07/15 08:36:48 1.1.1.1
+++ pkgsrc/archivers/lzip/distinfo 2011/10/21 21:26:47 1.2
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.1.1.1 2009/07/15 08:36:48 wiz Exp $ 1$NetBSD: distinfo,v 1.2 2011/10/21 21:26:47 ryoon Exp $
2 2
3SHA1 (lzip-1.7.tar.gz) = fd6ae17440947aec22dc50a99cf63a30a1fd8c29 3SHA1 (lzip-1.12.tar.gz) = 4ea1d38d509e36ee41cf11e78a227e2f5d0e38e9
4RMD160 (lzip-1.7.tar.gz) = 7c0a1748dd7e42a285367d7d0db3e3df3a242c99 4RMD160 (lzip-1.12.tar.gz) = 2068682bc648bd42bcab19dc5f46158d34decb58
5Size (lzip-1.7.tar.gz) = 66758 bytes 5Size (lzip-1.12.tar.gz) = 103815 bytes