projects
/
cumulus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6ed771
)
cumulus-util: Add support for zstd compression and chained zstd/gpg
master
author
Michael Vrable
<vrable@cs.hmc.edu>
Fri, 18 Jul 2025 04:02:48 +0000
(21:02 -0700)
committer
Michael Vrable
<vrable@cs.hmc.edu>
Fri, 18 Jul 2025 04:02:48 +0000
(21:02 -0700)
python/cumulus/__init__.py
patch
|
blob
|
history
diff --git
a/python/cumulus/__init__.py
b/python/cumulus/__init__.py
index
a755515
..
ce2397f
100644
(file)
--- a/
python/cumulus/__init__.py
+++ b/
python/cumulus/__init__.py
@@
-62,8
+62,10
@@
accessed_segments = set()
# the list are tried first).
SEGMENT_FILTERS = [
(".gpg", "cumulus-filter-gpg --decrypt"),
+ (".zst.gpg", "zstd -dc | cumulus-filter-gpg --decrypt"),
(".gz", "gzip -dc"),
(".bz2", "bzip2 -dc"),
+ (".zst", "zstd -dc"),
("", None),
]