[PR #819] [MERGED] Support added for TAR LZW compression (Unix 'compress' resulting in .… #1261

Open
opened 2026-01-29 22:19:42 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/819
Author: @TwanVanDongen
Created: 3/24/2024
Status: Merged
Merged: 3/25/2024
Merged by: @adamhathcock

Base: masterHead: master


📝 Commits (2)

  • 02301ec Support added for TAR LZW compression (Unix 'compress' resulting in .Z files)
  • f2b0368 CSharpier reformat missed

📊 Changes

8 files changed (+688 additions, -3 deletions)

View changed files

📝 src/SharpCompress/Common/CompressionType.cs (+2 -1)
src/SharpCompress/Compressors/Lzw/LzwConstants.cs (+65 -0)
src/SharpCompress/Compressors/Lzw/LzwStream.cs (+597 -0)
📝 src/SharpCompress/Factories/TarFactory.cs (+14 -0)
📝 src/SharpCompress/Readers/Tar/TarReader.cs (+3 -1)
📝 src/SharpCompress/SharpCompress.csproj (+4 -1)
📝 tests/SharpCompress.Test/Tar/TarReaderTests.cs (+3 -0)
tests/TestArchives/Archives/Tar.tar.Z (+0 -0)

📄 Description

…Z files)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/adamhathcock/sharpcompress/pull/819 **Author:** [@TwanVanDongen](https://github.com/TwanVanDongen) **Created:** 3/24/2024 **Status:** ✅ Merged **Merged:** 3/25/2024 **Merged by:** [@adamhathcock](https://github.com/adamhathcock) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (2) - [`02301ec`](https://github.com/adamhathcock/sharpcompress/commit/02301ecf6d0f07a8a52912ee2bdbbff5d14d7ef1) Support added for TAR LZW compression (Unix 'compress' resulting in .Z files) - [`f2b0368`](https://github.com/adamhathcock/sharpcompress/commit/f2b0368078e8617a4cba11f93f41359ede55e046) CSharpier reformat missed ### 📊 Changes **8 files changed** (+688 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `src/SharpCompress/Common/CompressionType.cs` (+2 -1) ➕ `src/SharpCompress/Compressors/Lzw/LzwConstants.cs` (+65 -0) ➕ `src/SharpCompress/Compressors/Lzw/LzwStream.cs` (+597 -0) 📝 `src/SharpCompress/Factories/TarFactory.cs` (+14 -0) 📝 `src/SharpCompress/Readers/Tar/TarReader.cs` (+3 -1) 📝 `src/SharpCompress/SharpCompress.csproj` (+4 -1) 📝 `tests/SharpCompress.Test/Tar/TarReaderTests.cs` (+3 -0) ➕ `tests/TestArchives/Archives/Tar.tar.Z` (+0 -0) </details> ### 📄 Description …Z files) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 22:19:42 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1261