summaryrefslogtreecommitdiff
path: root/libarchive/archive_write_add_filter_lrzip.c
Commit message (Collapse)AuthorAgeFilesLines
* Improve error messages by including the name of the external program being usedTim Kientzle2016-01-311-1/+1
|
* Allow the option to use no 2nd stage compression with lrzip.Andres Mejia2013-02-241-1/+6
|
* Integrate __archive_write_program_set_cmd into __archive_write_program_open.Michihiro NAKAJIMA2012-10-131-9/+2
|
* Set warning messages.Michihiro NAKAJIMA2012-10-111-0/+2
|
* Parse a command line instead of usingMichihiro NAKAJIMA2012-10-111-30/+15
| | | | | | | | | | archive_write_add_filter_programl, archive_write_add_filter_programv, archive_read_support_filter_programl, archive_read_support_filter_programv, archive_read_support_filter_programl_signature and archive_read_support_filter_programv_signature. And so remove those functions, which I recently added.
* Support lrzip options for writing.Michihiro NAKAJIMA2012-10-111-3/+67
|
* Improve archive_write_filter_program handing to be able toMichihiro NAKAJIMA2012-10-111-7/+110
| | | | | use options for an external program from archive_write_filter_{grzip,lrzip,lzop}.
* Make lrzip and lzop write filters set correct filter name and codeMichihiro NAKAJIMA2012-10-091-2/+5
| | | | even if thery actually use archive_write_filter_program.
* archive_read_support_filter_lrzip and archive_write_add_filter_lrzipMichihiro NAKAJIMA2012-10-071-15/+6
| | | | | | | | should return ARCHIVE_WARN instead of ARCHIVE_OK since those filters always use an external program, lrzip(1) and other filters do so if they use an external program instead of implemented code with the library. It is clear that returning ARCHIVE_WARN means the filter uses an external program.
* Use -q option to lrzip to be quiet.Michihiro NAKAJIMA2012-10-051-2/+3
|
* lrzip support isn't legacy, so we don't need legacy shims for it.Tim Kientzle2012-06-091-9/+0
|
* Add basic archive read and write filter support for lrzip.Con Kolivas2012-04-231-0/+59