-
Notifications
You must be signed in to change notification settings - Fork 723
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
zchunk: add recipe #173
Closed
Closed
zchunk: add recipe #173
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thanks @kraj, I will fix that |
zchunk is a compressed file format that splits the file into independent chunks. This allows you to only download changed chunks when downloading a new version of the file, and also makes zchunk files efficient over rsync. Signed-off-by: Pierre-Jean Texier <[email protected]>
@kraj PR updated, tested with |
in master-next now |
Merged in master 5c453ae |
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 12, 2022
2022-05-04 2.5.0: ------------------- * add calculating of canonical Huffman codes 'util.canonical_huffman()' and decoding thereof 'util.canonical_decode()', see openembedded#173 * allow creating "Huffman codes" from frequency maps with a single symbol in 'util.huffman_code()' and 'util.canonical_huffman()', see openembedded#172 * allow bytes-like argument in '.frombytes()' and '.pack()' - previously, the arguments were limited to the 'bytes' object, see openembedded#174 * allow bytes-like arguments in 'util.deserialize()' * add official pyodide support * add [DEFLATE decompression](../examples/puff/) example * optimize '.bytereverse()' * optimize 'delslice()' for cases like 'del a[1:17:2]' when 'a' is large * fix 'examples/huffman/compress.py' to handle files with 0 or 1 characters, see also openembedded#172 * add 'skipIF' decorator for skipping tests * add test Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]>
kraj
pushed a commit
to YoeDistro/meta-openembedded
that referenced
this pull request
May 14, 2022
2022-05-04 2.5.0: ------------------- * add calculating of canonical Huffman codes 'util.canonical_huffman()' and decoding thereof 'util.canonical_decode()', see openembedded#173 * allow creating "Huffman codes" from frequency maps with a single symbol in 'util.huffman_code()' and 'util.canonical_huffman()', see openembedded#172 * allow bytes-like argument in '.frombytes()' and '.pack()' - previously, the arguments were limited to the 'bytes' object, see openembedded#174 * allow bytes-like arguments in 'util.deserialize()' * add official pyodide support * add [DEFLATE decompression](../examples/puff/) example * optimize '.bytereverse()' * optimize 'delslice()' for cases like 'del a[1:17:2]' when 'a' is large * fix 'examples/huffman/compress.py' to handle files with 0 or 1 characters, see also openembedded#172 * add 'skipIF' decorator for skipping tests * add test Signed-off-by: Zheng Ruoqin <[email protected]> Signed-off-by: Khem Raj <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
zchunk is a compressed file format that splits the file into independent chunks.
This allows you to only download changed chunks when downloading a new version of
the file, and also makes zchunk files efficient over rsync.
Signed-off-by: Pierre-Jean Texier [email protected]