Merging upstream version 1.12~rc1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4ddb634c25
commit
cd6a248630
24 changed files with 874 additions and 719 deletions
74
ChangeLog
74
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2024-11-19 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.12-rc1 released.
|
||||
* decompress.cc (decompress), list.cc (list_files):
|
||||
Return 2 if any empty member is found in a multimember file.
|
||||
* dec_stdout.cc, dec_stream.cc:
|
||||
Change 'deliver_packet' to 'deliver_packets'.
|
||||
* plzip.texi: New chapter 'Syntax of command-line arguments'.
|
||||
* check.sh: Use 'cp' instead of 'cat'.
|
||||
|
||||
2024-01-21 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.11 released.
|
||||
|
@ -20,16 +30,17 @@
|
|||
2021-01-03 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.9 released.
|
||||
* New option '--check-lib'.
|
||||
* main.cc (main): Report an error if a file name is empty.
|
||||
(main): Show final diagnostic when testing multiple files.
|
||||
Make '-o' behave like '-c', but writing to file instead of stdout.
|
||||
Make '-c' and '-o' check whether the output is a terminal only once.
|
||||
Do not open output if input is a terminal.
|
||||
* main.cc: New option '--check-lib'.
|
||||
Set a valid invocation_name even if argc == 0.
|
||||
* Replace 'decompressed', 'compressed' with 'out', 'in' in output.
|
||||
* decompress.cc, dec_stream.cc, dec_stdout.cc:
|
||||
* decompress.cc, dec_stdout.cc, dec_stream.cc:
|
||||
Continue testing if any input file fails the test.
|
||||
Show the largest dictionary size in a multimember file.
|
||||
* main.cc: Show final diagnostic when testing multiple files.
|
||||
* decompress.cc, dec_stream.cc [LZ_API_VERSION >= 1012]: Avoid
|
||||
copying decompressed data when testing with lzlib 1.12 or newer.
|
||||
* compress.cc, dec_stream.cc: Start only the worker threads required.
|
||||
|
@ -38,47 +49,46 @@
|
|||
Use plain comparison instead of Boyer-Moore to search for headers.
|
||||
* lzip_index.cc: Improve messages for corruption in last header.
|
||||
* decompress.cc: Shorten messages 'Data error' and 'Unexpected EOF'.
|
||||
* main.cc: Set a valid invocation_name even if argc == 0.
|
||||
* Document extraction from tar.lz in manual, '--help', and man page.
|
||||
* plzip.texi (Introduction): Mention tarlz as an alternative.
|
||||
* plzip.texi: Several fixes and improvements.
|
||||
Several fixes and improvements.
|
||||
* testsuite: Add 8 new test files.
|
||||
|
||||
2019-01-05 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.8 released.
|
||||
* Rename File_* to Lzip_*.
|
||||
* main.cc: New options '--in-slots' and '--out-slots'.
|
||||
* main.cc: Increase default in_slots per worker from 2 to 4.
|
||||
* main.cc: Increase default out_slots per worker from 32 to 64.
|
||||
* New options '--in-slots' and '--out-slots'.
|
||||
* main.cc (main): Increase default in_slots per worker from 2 to 4.
|
||||
(main): Increase default out_slots per worker from 32 to 64.
|
||||
(main): Check return value of close( infd ).
|
||||
* lzip.h (Lzip_trailer): New function 'verify_consistency'.
|
||||
* lzip_index.cc: Detect some kinds of corrupt trailers.
|
||||
* main.cc (main): Check return value of close( infd ).
|
||||
* plzip.texi: Improve description of '-0..-9', '-m', and '-s'.
|
||||
* plzip.texi: Improve descriptions of '-0..-9', '-m', and '-s'.
|
||||
* configure: New option '--with-mingw'.
|
||||
* configure: Accept appending to CXXFLAGS; 'CXXFLAGS+=OPTIONS'.
|
||||
Accept appending to CXXFLAGS; 'CXXFLAGS+=OPTIONS'.
|
||||
* INSTALL: Document use of CXXFLAGS+='-D __USE_MINGW_ANSI_STDIO'.
|
||||
|
||||
2018-02-07 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.7 released.
|
||||
* New option '--loose-trailing'.
|
||||
* compress.cc: Use 'LZ_compress_restart_member' and replace input
|
||||
packet queue by a circular buffer to reduce memory fragmentation.
|
||||
* compress.cc: Return one empty packet at a time to reduce mem use.
|
||||
Return one empty packet at a time to reduce memory use.
|
||||
* main.cc: Reduce threads on 32 bit systems to use under 2.22 GiB.
|
||||
* main.cc: New option '--loose-trailing'.
|
||||
(set_c_outname): Do not add a second '.lz' to the arg of '-o'.
|
||||
(cleanup_and_fail): Suppress messages from other threads.
|
||||
* Improve corrupt header detection to HD = 3 on seekable files.
|
||||
(On all files with lzlib 1.10 or newer).
|
||||
* Replace 'bits/byte' with inverse compression ratio in output.
|
||||
* Show progress of decompression at verbosity level 2 (-vv).
|
||||
* Show progress of (de)compression only if stderr is a terminal.
|
||||
* main.cc: Do not add a second .lz extension to the arg of -o.
|
||||
* Show dictionary size at verbosity level 4 (-vvvv).
|
||||
* main.cc (cleanup_and_fail): Suppress messages from other threads.
|
||||
* list.cc: Add missing '#include <pthread.h>'.
|
||||
* plzip.texi: New chapter 'Output'.
|
||||
* plzip.texi (Memory requirements): Add table.
|
||||
* plzip.texi (Program design): Add a block diagram.
|
||||
* plzip.texi: New chapter 'Meaning of plzip's output'.
|
||||
(Memory requirements): Add table.
|
||||
(Program design): Add a block diagram.
|
||||
|
||||
2017-04-12 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
|
@ -92,14 +102,13 @@
|
|||
2016-05-14 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
* Version 1.5 released.
|
||||
* main.cc: New option '-a, --trailing-error'.
|
||||
* New option '-a, --trailing-error'.
|
||||
* main.cc (main): Delete '--output' file if infd is a terminal.
|
||||
* main.cc (main): Don't use stdin more than once.
|
||||
(main): Don't use stdin more than once.
|
||||
* plzip.texi: New chapters 'Trailing data' and 'Examples'.
|
||||
* configure: Avoid warning on some shells when testing for g++.
|
||||
* Makefile.in: Detect the existence of install-info.
|
||||
* check.sh: A POSIX shell is required to run the tests.
|
||||
* check.sh: Don't check error messages.
|
||||
* check.sh: Require a POSIX shell. Don't check error messages.
|
||||
|
||||
2015-07-09 Antonio Diaz Diaz <antonio@gnu.org>
|
||||
|
||||
|
@ -136,14 +145,14 @@
|
|||
|
||||
* Version 1.0 released.
|
||||
* compress.cc: Change 'deliver_packet' to 'deliver_packets'.
|
||||
* Scalability of decompression from/to regular files has been
|
||||
increased by removing splitter and muxer when not needed.
|
||||
* The number of worker threads is now limited to the number of
|
||||
members when decompressing from a regular file.
|
||||
* Increase scalability of decompression from/to regular files by
|
||||
removing splitter and muxer when not needed.
|
||||
* Limit the number of worker threads to the number of members when
|
||||
decompressing from a regular file.
|
||||
* configure: Options now accept a separate argument.
|
||||
* Makefile.in: New targets 'install-as-lzip' and 'install-bin'.
|
||||
* main.cc: Use 'setmode' instead of '_setmode' on Windows and OS/2.
|
||||
* main.cc: Define 'strtoull' to 'std::strtoul' on Windows.
|
||||
(main): Use 'setmode' instead of '_setmode' on Windows and OS/2.
|
||||
|
||||
2012-03-01 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
|
@ -154,13 +163,13 @@
|
|||
2012-01-17 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
||||
* Version 0.8 released.
|
||||
* main.cc: New option '-F, --recompress'.
|
||||
* New option '-F, --recompress'.
|
||||
* decompress.cc (decompress): Show compression ratio.
|
||||
* main.cc (close_and_set_permissions): Inability to change output
|
||||
file attributes has been downgraded from error to warning.
|
||||
(main): Set stdin/stdout in binary mode on OS2.
|
||||
* Small change in '--help' output and man page.
|
||||
* Change quote characters in messages as advised by GNU Standards.
|
||||
* main.cc: Set stdin/stdout in binary mode on OS2.
|
||||
* compress.cc: Reduce memory use of compressed packets.
|
||||
* decompress.cc: Use Boyer-Moore algorithm to search for headers.
|
||||
|
||||
|
@ -174,7 +183,7 @@
|
|||
* main.cc (open_instream): Don't show the message
|
||||
" and '--stdout' was not specified" for directories, etc.
|
||||
Exit with status 1 if any output file exists and is skipped.
|
||||
* main.cc: Fix warning about fchown return value being ignored.
|
||||
Fix warning about fchown's return value being ignored.
|
||||
* testsuite: Rename 'test1' to 'test.txt'. New tests.
|
||||
|
||||
2010-03-20 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
@ -202,9 +211,8 @@
|
|||
* Version 0.3 released.
|
||||
* New option '-B, --data-size'.
|
||||
* Output file is now removed if plzip is interrupted.
|
||||
* This version automatically chooses the smallest possible
|
||||
dictionary size for each member during compression, saving
|
||||
memory during decompression.
|
||||
* Choose automatically the smallest possible dictionary size for
|
||||
each member during compression, saving memory during decompression.
|
||||
* main.cc: New constant 'o_binary'.
|
||||
|
||||
2010-01-17 Antonio Diaz Diaz <ant_diaz@teleline.es>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue