summaryrefslogtreecommitdiff
path: root/archivers/lziprecover
AgeCommit message (Collapse)AuthorFilesLines
2020-01-18all: migrate several HOMEPAGEs to httpsrillig1-2/+2
pkglint --only "https instead of http" -r -F With manual adjustments afterwards since pkglint 19.4.4 fixed a few indentations in unrelated lines. This mainly affects projects hosted at SourceForce, as well as freedesktop.org, CTAN and GNU.
2019-01-18lziprecover: updated to 1.21adam2-7/+8
Changes in version 1.21: The options '--dump', '--remove' and '--strip' have been added, mainly as support for the tarlz archive format: http://www.nongnu.org/lzip/tarlz.html These options replace '--dump-tdata', '--remove-tdata' and '--strip-tdata', which are now aliases and will be removed in version 1.22. '--dump=[<member_list>][:damaged][:tdata]' dumps the members listed, the damaged members (if any), or the trailing data (if any) of one or more regular multimember files to standard output. '--remove=[<member_list>][:damaged][:tdata]' removes the members listed, the damaged members (if any), or the trailing data (if any) from regular multimember files in place. '--strip=[<member_list>][:damaged][:tdata]' copies one or more regular multimember files to standard output, stripping the members listed, the damaged members (if any), or the trailing data (if any) from each file. Detection of forbidden combinations of characters in trailing data has been improved. '--split' can now detect trailing data and gaps between members, and save each gap in its own file. Trailing data (if any) are saved alone in the last file. (Gaps may contain garbage or may be members with corrupt headers or trailers). '--ignore-errors' now makes '--list' show gaps between members, ignoring format errors. '--ignore-errors' now makes '--range-decompress' ignore a truncated last member. Errors are now also checked when closing the input file in decompression mode. Some diagnostic messages have been improved. '\n' is now printed instead of '\r' when showing progress of merge or repair if stdout is not a terminal. Lziprecover now compiles on DOS with DJGPP. (Patch from Robert Riebisch). The new chapter 'Tarlz', explaining the ways in which lziprecover can recover and process multimember tar.lz archives, has been added to the manual. The configure script now accepts appending options to CXXFLAGS using the syntax 'CXXFLAGS+=OPTIONS'. It has been documented in INSTALL the use of CXXFLAGS+='-D __USE_MINGW_ANSI_STDIO' when compiling on MinGW.
2017-08-18Changes in version 1.19:adam2-8/+13
'--merge' is now able to fix files with thousands of scattered errors per member by grouping the errors into clusters and then merging the files as if each cluster were a single error. The option '-a, --trailing-error' now works with '-l, --list' and '-D, --range-decompress'. The output of option '-l, --list' has been simplified to make it easier to read. In test mode, lziprecover now continues checking the rest of the files if any input file is a terminal. Trailing data are now shown both in hexadecimal and as a string of printable ASCII characters.
2016-12-16Updated archivers/lziprecover to 1.18mef2-7/+7
-------------------------------------- 2016-05-12 Antonio Diaz Diaz <antonio@gnu.org> * Version 1.18 released. * main.cc: Added new option '-a, --trailing-error'. * merge.cc (open_input_files): Use CRC to test identical files. * repair.cc (repair_file): Detect gross damage before repairing. * repair.cc: Repair a damaged dictionary size in the header. * repair.cc: Try bytes at offsets 7 to 11 first. * Decompression time has been reduced by 2%. * main.cc (decompress): Print up to 6 bytes of trailing data when '-tvvvv' is specified. * decoder.cc (verify_trailer): Removed test of final code. * main.cc (main): Delete '--output' file if infd is a terminal. * main.cc (main): Don't use stdin more than once. * Use 'close_and_set_permissions' and 'set_signals' in all modes. * range_dec.cc (list_file): Show dictionary size and size of trailing data (if any) with '-lv'. * Added new option '-A, --alone-to-lz'. * Added new option '-W, --debug-decompress'. * Added new option '-X, --show-packets'. * Changed short name of option '--debug-delay' to '-Y'. * Changed short name of option '--debug-repair' to '-Z'. * unzcrash.cc: Added new option '-B, --block'. * unzcrash.cc: Added new option '-d, --delta'. * unzcrash.cc: Added new option '-t, --truncate'. * unzcrash.cc: Added new option '-z, --zcmp'. * unzcrash.cc: Read files as large as RAM allows. * unzcrash.cc: Compare output using zcmp if decompressor returns 0. * unzcrash.cc: Accept negative position and size. * lzip.texi: Added chapter 'Trailing data'. * configure: Avoid warning on some shells when testing for g++. * Makefile.in: Detect the existence of install-info. * testsuite/check.sh: Don't check error messages. * testsuite/check.sh: A POSIX shell is required to run the tests.
2015-11-03Add SHA512 digests for distfiles for archivers categoryagc1-1/+2
Problems found with existing distfile for eagle: distfiles/bicom101.zip distfiles/szip-2.1nb3/szip-2.1.tar.gz distfiles/xmill-0.9.1.tar.gz No changes made to these distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-07-26Update 1.16 to 1.17mef2-6/+6
------------------- 2015-05-28 Antonio Diaz Diaz <antonio@gnu.org> * Version 1.17 released. * New block selection algorithm makes merge up to 100 times faster. * repair.cc: Repair time has been reduced by 15%. * Added new option '-y, --debug-delay'. * Added new option '-z, --debug-repair'. * Makefile.in: Added new targets 'install*-compress'. * testsuite/unzcrash.cc: Moved to top directory. * lziprecover.texi: Added chapter 'File names'.
2015-01-04Update to 1.16:wiz2-7/+7
Changes in version 1.16: Repairing of single-byte errors is now about 10 times faster depending on file size and position of error. Copying of file dates, permissions, and ownership now behaves like "cp -p". (If the user ID or the group ID can't be duplicated, the file permission bits S_ISUID and S_ISGID are cleared). Some minor improvements have been made. "lziprecover.texinfo" has been renamed to "lziprecover.texi". The license has been changed to GPL version 2 or later.
2014-12-16MASTER_SITES directory is one level down now.mef1-2/+2
2013-10-09Update to 1.15:wiz2-6/+6
Changes in version 1.15: Lziprecover can now repair multi-member files with up to one byte error per member, without having to split them first. Lziprecover can now merge multi-member files without having to split them first even if some copies have the header and the trailer damaged. The chapters "Repairing files", "Merging files" and "Unzcrash" have been added to the manual.
2012-09-11"user-destdir" is default these daysasau1-3/+1
2012-03-14Initial import of lziprecover-1.13:wiz4-0/+44
Lziprecover is a data recovery tool and decompressor for files in the lzip compressed data format (.lz) able to repair slightly damaged files, recover badly damaged files from two or more copies, extract undamaged members from multi-member files, decompress files and test integrity of files. Lziprecover is able to recover or decompress files produced by any of the compressors in the lzip family; lzip, plzip, minilzip/lzlib, clzip and pdlzip. This recovery capability contributes to make the lzip format one of the best options for long-term data archiving. Lziprecover is able to efficiently extract a range of bytes from a multi-member file, because it only decompresses the members containing the desired data.