5
I Use This!
Moderate Activity

Commits : Listings

Analyzed 14 days ago. based on code collected 14 days ago.
May 29, 2023 — May 29, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Basic test for gzip compatibility. I've commented out the test for handling concatenated gzip streams, as it appears I need to do more work on refactoring the read filter framework before this is reasonable to implement. Fortunately, concatenated gzip streams are uncommon. More... over 15 years ago
Strip trailing ';1' and trailing '.' from ISO9660 filenames. This matches common usage a bit better. More... over 15 years ago
Add a fuzz tester to the libarchive test suite. This takes known-good archives, changes random bytes, then feeds them through libarchive trying to provoke a crash or hang. More... over 15 years ago
Don't export structure definitions. Submitted by: Ivailo Petrov More... over 15 years ago
If you can't verify group restore, mark it as a skipped test, don't just printf(). More... over 15 years ago
Rework Bzip2 stream management. Mostly, this makes the stream initialization lazy so we can re-open the decompressor for a new stream. This should allow us to read pbzip2 output, which compresses large blocks separately and writes them as independent streams, while still handling files such as Gentoo binary packages, which store unrelated data after the end of the bzip2 data. More... over 15 years ago
Don't assign through a NULL pointer. More... over 15 years ago
IFC More... over 15 years ago
<sigh> Weaken the already-weak LZMA format check. More... over 15 years ago
Minor fixes to build on Windows. Submitted by: Ivailo Petrov More... over 15 years ago
Allow zip reader to build on platforms that lack zlib. However, this breaks reading non-compressed zip entries as well. Submitted by: Ivailo Petrov More... over 15 years ago
2 is more portable than STDERR_FILENO More... over 15 years ago
Fix compile error. Submitted by: Ivailo Petrov More... over 15 years ago
Cleanup on platforms that lack utimes() or stat.st_blksize Submitted by: Ivailo Petrov More... over 15 years ago
Fix gzip/bzip2 support compiling on platforms that lack zlib/bzlib. Submitted by: Ivailo Petrov More... over 15 years ago
Minor tweak to release script. More... over 15 years ago
IFC More... over 15 years ago
Update NEWS, version to 2.5.902a. More... over 15 years ago
Shar utility by Jaakko Heinonen More... over 15 years ago
Update NEWS with a few of the things that have happened since 2.5.5 was released. I still need to dig through old commit messages to fill this in further before releasing 2.6.0. More... over 15 years ago
Add LZMA test, more detailed comments about the sorry state of LZMA magic number checks, update Makefiles to include lzma reader and lzma test. More... over 15 years ago
Fix lzma decoder to build properly when LZMA libraries are unavailable. More... over 15 years ago
Bump version to 2.5.900 to start testing of what will become 2.6 More... over 15 years ago
Hack up the lzma decoder to at least compile; there aren't any tests for it yet, so I'm not sure if it actually works. More... over 15 years ago
Minor style update to cpio_bin_bz2 read test. Make tar_sparse read test a bit more robust; have it stop after the first header read failure. More... over 15 years ago
Conditionalize some debugging code. This also removes an extraneous stdio dependency. MFP4 after: 3 days More... over 15 years ago
Checkpoint the read filter rearchitecture. More... over 15 years ago
Comment the read I/O model a little more completely. Fix a minor bug: If user asks for the availability, give it to them even if it's an error code. More... over 15 years ago
First step in transitioning the current decompression code to a more generic system of stackable stream transforms. In particular, I believe I've edited every place that called the decompressor directly to go through new __archive_read_ahead(), __archive_read_consume() and __archive_read_skip() functions, so the rest of the work here will not require any changes to the format handlers. More... over 15 years ago
Style cleanup and sketch out the switch from off_t to int64_t for libarchive 3.0. (Linux off_t isn't always the same size thanks to the Large File System support in the system headers; it's a huge headache using it in public headers for shared libraries.) This is still a bit tentative; "long long" may be a more appropriate choice here. More... over 15 years ago