Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master sorcery by Ismael Luceno (dd2eb12825a45311d87aaee650c55d12eeee852e)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master sorcery by Ismael Luceno (dd2eb12825a45311d87aaee650c55d12eeee852e)
  • Date: Fri, 21 Aug 2026 14:35:09 +0000

GIT changes to master sorcery by Ismael Luceno <ismael AT sourcemage.org>:

var/lib/sorcery/modules/libunpack | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit dd2eb12825a45311d87aaee650c55d12eeee852e
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libunpack: Add zstd unpacking

diff --git a/var/lib/sorcery/modules/libunpack
b/var/lib/sorcery/modules/libunpack
index b54813e..d2cfbea 100755
--- a/var/lib/sorcery/modules/libunpack
+++ b/var/lib/sorcery/modules/libunpack
@@ -197,6 +197,7 @@ uncompress_core() {
xz|XZ) xz -cdf "$1" ;;
LZMA) xz -cdf "$1" ;;
lzip) lzip -cdf "$1" ;;
+ Zstandard) zstd -cdf "$1" ;;
7-zip) cat "$1" ;; # 7z supports stdout, but it unpacks at the
same time
*) cat "$1" ;;
esac
@@ -235,7 +236,7 @@ unpack_core() {
debug "libgrimoire" "unpack_core - $*"

case "$2" in
- bzip2|gzip|compress*|lzip|tar|XZ|xz|LZMA)
+ bzip2|gzip|compress*|lzip|tar|XZ|xz|LZMA|Zstandard)
untar 2>/dev/null || cat > /dev/null ;;
Zip) cat /dev/stdin >/dev/null #get rid of unused output
unzip -q "$1" ;;


  • [[SM-Commit] ] GIT changes to master sorcery by Ismael Luceno (dd2eb12825a45311d87aaee650c55d12eeee852e), Ismael Luceno, 08/21/2026

Archive powered by MHonArc 2.6.24.

Top of Page