Skip to content

Commit

Permalink
lzip: use plzip for parallel compression and decompression
Browse files Browse the repository at this point in the history
Thanks to Oskari Pirhonen for feedback.

Signed-off-by: Florian Schmaus <[email protected]>
  • Loading branch information
Flowdalic committed Jul 21, 2023
1 parent f228252 commit 58c1c3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Bug fixes:

* gpkg: Fix timestamp for binary packages (bug #909067).

Features:
* lzip: Use plzip for parallel compression and decompression.

portage-3.0.49 (2023-06-21)
--------------

Expand Down
6 changes: 3 additions & 3 deletions lib/portage/util/compression_probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"package": "app-arch/lz4",
},
"lzip": {
"compress": "lzip ${BINPKG_COMPRESS_FLAGS}",
"decompress": "lzip -d",
"package": "app-arch/lzip",
"compress": "plzip -n {JOBS} ${BINPKG_COMPRESS_FLAGS}",
"decompress": "plzip -n {JOBS} -d",
"package": "app-arch/plzip"
},
"lzop": {
"compress": "lzop ${BINPKG_COMPRESS_FLAGS}",
Expand Down

0 comments on commit 58c1c3b

Please sign in to comment.