[PR #756] [CLOSED] Add .tar.7z support #1205

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

📋 Pull Request Information

Original PR: https://github.com/adamhathcock/sharpcompress/pull/756
Author: @btomblinson
Created: 8/26/2023
Status: Closed

Base: masterHead: master


📝 Commits (3)

📊 Changes

19 files changed (+412 additions, -37 deletions)

View changed files

📝 .github/workflows/dotnetcore.yml (+1 -1)
📝 src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs (+1 -1)
src/SharpCompress/Compressors/Filters/BCJFilterARM.cs (+49 -0)
src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs (+47 -0)
src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs (+107 -0)
src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs (+48 -0)
src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs (+58 -0)
📝 src/SharpCompress/Compressors/LZMA/Registry.cs (+15 -0)
📝 tests/SharpCompress.Test/SevenZip/SevenZipArchiveTests.cs (+86 -35)
tests/TestArchives/Archives/7Zip.ARM.7z (+0 -0)
tests/TestArchives/Archives/7Zip.ARMT.7z (+0 -0)
tests/TestArchives/Archives/7Zip.BCJ.7z (+0 -0)
tests/TestArchives/Archives/7Zip.BCJ2.7z (+0 -0)
tests/TestArchives/Archives/7Zip.Filters.7z (+0 -0)
tests/TestArchives/Archives/7Zip.IA64.7z (+0 -0)
tests/TestArchives/Archives/7Zip.PPC.7z (+0 -0)
tests/TestArchives/Archives/7Zip.SPARC.7z (+0 -0)
tests/TestArchives/Archives/7Zip.Tar.tar (+0 -0)
tests/TestArchives/Archives/7Zip.Tar.tar.7z (+0 -0)

📄 Description

Candidate for #751

I used Ubuntu subsystem on Windows to create a .tar.7z file, and was able to open and read it via the test


🔄 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/756 **Author:** [@btomblinson](https://github.com/btomblinson) **Created:** 8/26/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (3) - [`4aea9fb`](https://github.com/adamhathcock/sharpcompress/commit/4aea9fbbee77e4b4a5732069b131855e60d6c9f0) #751 Add .tar.7z support - [`39374f5`](https://github.com/adamhathcock/sharpcompress/commit/39374f556f806dcf46bc84a8d93ec65dd7a22184) Merge branch 'master' into master - [`da78ea4`](https://github.com/adamhathcock/sharpcompress/commit/da78ea4e8ce15f9b190b8747618e5242a1fccb91) Update from upstream ### 📊 Changes **19 files changed** (+412 additions, -37 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dotnetcore.yml` (+1 -1) 📝 `src/SharpCompress/Archives/SevenZip/SevenZipArchive.cs` (+1 -1) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterARM.cs` (+49 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterARMT.cs` (+47 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterIA64.cs` (+107 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterPPC.cs` (+48 -0) ➕ `src/SharpCompress/Compressors/Filters/BCJFilterSPARC.cs` (+58 -0) 📝 `src/SharpCompress/Compressors/LZMA/Registry.cs` (+15 -0) 📝 `tests/SharpCompress.Test/SevenZip/SevenZipArchiveTests.cs` (+86 -35) ➕ `tests/TestArchives/Archives/7Zip.ARM.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.ARMT.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.BCJ.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.BCJ2.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.Filters.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.IA64.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.PPC.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.SPARC.7z` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.Tar.tar` (+0 -0) ➕ `tests/TestArchives/Archives/7Zip.Tar.tar.7z` (+0 -0) </details> ### 📄 Description Candidate for #751 I used Ubuntu subsystem on Windows to create a .tar.7z file, and was able to open and read it via the test --- <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:28 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/sharpcompress#1205