sak 0.1.3.1 → 0.1.3.2
raw patch · 4 files changed
+40/−41 lines, 4 filesdep +lzma-staticdep −lzma
Dependencies added: lzma-static
Dependencies removed: lzma
Files
- CHANGELOG.md +4/−0
- man/sak.1 +33/−38
- sak.cabal +2/−2
- src/Version.cpphs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # sak +## 0.1.3.2++ * Depend on `lzma-static` over `lzma`+ ## 0.1.3.1 * Add `size` subcommand to show hypothetical compression
man/sak.1 view
@@ -1,94 +1,89 @@-.\" Automatically generated by Pandoc 2.13+.\" Automatically generated by Pandoc 3.1.10 .\" .TH "sak (1)" "" "" "" ""-.hy .SH NAME-.PP-sak - \f[I]S\f[R]wiss \f[I]A\f[R]rmy \f[I]K\f[R]nife for compression+sak \- \f[I]S\f[R]wiss \f[I]A\f[R]rmy \f[I]K\f[R]nife for compression .SH DESCRIPTION-.PP \f[B]sak\f[R] is a compression tool .SH SYNOPSIS-.PP sak transcode tarball.tar.gz tarball.tar.zst .PP sak verify file.gz .PP-sak matrix release-binary --best+sak matrix release\-binary \-\-best .PP-sak recompress binary.tar.zst --best+sak recompress binary.tar.zst \-\-best .SH SUBCOMMANDS-.PP-\f[B]compress\f[R] - Compress a file+\f[B]compress\f[R] \- Compress a file .PP-\f[B]decompress\f[R] - Decompress a file+\f[B]decompress\f[R] \- Decompress a file .PP-\f[B]transcode\f[R] - Convert compression format, in-memory (and+\f[B]transcode\f[R] \- Convert compression format, in\-memory (and streaming) .PP-\f[B]verify\f[R] - Check the integrity of a compressed file+\f[B]verify\f[R] \- Check the integrity of a compressed file .PP-\f[B]matrix\f[R] - Generate multiple compressed files in various formats+\f[B]matrix\f[R] \- Generate multiple compressed files in various+formats .PP-\f[B]recompress\f[R] - Recompress a file in-memory.+\f[B]recompress\f[R] \- Recompress a file in\-memory. .PP-\f[B]size\f[R] - Show hypothetical compressed size for a file+\f[B]size\f[R] \- Show hypothetical compressed size for a file .PP-\f[B]info\f[R] - Guess a file format (for debugging)+\f[B]info\f[R] \- Guess a file format (for debugging) .SH OPTIONS .TP-\f[B]-h\f[R] \f[B]--help\f[R]+\f[B]\-h\f[R] \f[B]\-\-help\f[R] Display help .TP-\f[B]-V\f[R] \f[B]--version\f[R]+\f[B]\-V\f[R] \f[B]\-\-version\f[R] Display version information .TP-\f[B]-l\f[R] \f[B]--compression-level\f[R]-Set compression level (usually 0-9)+\f[B]\-l\f[R] \f[B]\-\-compression\-level\f[R]+Set compression level (usually 0\-9) .TP-\f[B]--best\f[R]+\f[B]\-\-best\f[R] Use the maximum compression for the format .TP-\f[B]--fastest\f[R]+\f[B]\-\-fastest\f[R] Use the fastest compression for the format .SH SUPPORTED FORMATS .SS COMPRESSION .IP \[bu] 2-gzip (0-9)+gzip (0\-9) .IP \[bu] 2-bzip2 (1-9)+bzip2 (1\-9) .IP \[bu] 2-lzma (0-9)+lzma (0\-9) .IP \[bu] 2-lzip (0-9)+lzip (0\-9) .IP \[bu] 2-zstd (0-22)+zstd (0\-22) .IP \[bu] 2-lz4 (0-12)+lz4 (0\-12) .IP \[bu] 2-deflate (0-9)+deflate (0\-9) .IP \[bu] 2-brotli (0-11)+brotli (0\-11) .IP \[bu] 2 snappy .IP \[bu] 2 lzo .SH SHELL COMPLETIONS-.PP To get shell completions in your current session: .PP-\f[C]eval \[dq]$(sak --bash-completion-script sak)\[dq]\f[R]+\f[CR]eval \[dq]$(sak \-\-bash\-completion\-script sak)\[dq]\f[R] .PP-Put this in your \f[C]\[ti]/.bashrc\f[R] or-\f[C]\[ti]/.bash_profile\f[R] to install them.+Put this in your \f[CR]\[ti]/.bashrc\f[R] or+\f[CR]\[ti]/.bash_profile\f[R] to install them. .SH BUGS-.PP Please report any bugs you may come across to http://hub.darcs.net/vmchale/sak/issues. .SH COPYRIGHT-.PP Copyright 2020. Vanessa McHale. All Rights Reserved. .SH AUTHORS-Vanessa McHale<vamchale@gmail.com>.+Vanessa McHale\c+.MT vamchale@gmail.com+.ME \c.
sak.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: sak-version: 0.1.3.1+version: 0.1.3.2 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2020-2021 Vanessa McHale@@ -54,7 +54,7 @@ bz2 >=0.1.1.0, zlib, zstd,- lzma,+ lzma-static, lz4-hs >=0.1.4.0, optparse-applicative, filepath,
src/Version.cpphs view
@@ -17,7 +17,7 @@ ++ "zlib: " ++ zlib ++ "\n" ++ "zlib-hs: " ++ VERSION_zlib ++ "\n" ++ "lzma: " ++ lzma ++ "\n"- ++ "lzma-hs: " ++ VERSION_lzma ++ "\n"+ ++ "lzma-hs: " ++ VERSION_lzma_static ++ "\n" ++ "zstd: " ++ zstd ++ "\n" ++ "zstd-hs: " ++ VERSION_zstd ++ "\n" ++ "bz2-hs: " ++ VERSION_bz2 ++ "\n"