aboutsummaryrefslogtreecommitdiffstats
path: root/community/py-lz4
Commit message (Collapse)AuthorAgeFilesLines
* community/py-lz4: upgrade to 2.1.0Stuart Cardall2018-08-101-2/+2
| | | | | | | | | | | | | | | | | | | This release changes the handling of errors for block decompression when uncompressed_size > 0. In this case, we no longer check that the uncompressed data has exactly the size specified by uncompressed_size: this argument is now used as an upper bound. In addition, we introduce a new exception: LZ4BlockError which is raised whenever the LZ4 library fails. These two changes together allow "guessing" of the uncompressed data size: simply set uncompressed_size to a number and try decompress, and catch LZ4BlockError. If LZ4BlockError is raised, increase uncompressed_size and try again. See the documentation for more details and examples: http://python-lz4.readthedocs.io/en/stable/lz4.block.html
* community/py-lz4: upgrade to 2.0.1Stuart Cardall2018-06-241-3/+3
|
* community/py-lz4: upgrade to 1.1.0Stuart Cardall2018-04-091-2/+2
|
* community/py-lz4: upgrade to 1.0.0Stuart Cardall2018-04-051-2/+2
|
* community/py-lz4: upgrade to 0.21.6Stuart Cardall2018-02-131-2/+2
|
* community/py-lz4: upgrade to 0.20.1Stuart Cardall2018-02-031-2/+2
|
* community/py-lz4: upgrade to 0.18.2Stuart Cardall2018-01-211-3/+3
|
* community/py-lz4: force use of system lz4Natanael Copa2018-01-142-4/+37
| | | | also run tests for python3 instead of python2
* community/py-lz4: upgrade to 0.17.0Stuart Cardall2018-01-021-2/+2
|
* community/py-lz4: upgrade to 0.13.0Stuart Cardall2017-12-272-58/+10
|
* community/py-lz4: upgrade to 0.11.1Roberto Oliveira2017-11-281-2/+2
|
* main/py-lz4: add FIXME commentNatanael Copa2017-09-261-0/+2
|
* community/py-lz4: update to 0.10.1Stuart Cardall2017-07-031-3/+3
|
* community/py-lz4: correct test typoLeonardo Arena2017-06-201-2/+2
|
* community/py-lz4: disable check() on s390xLeonardo Arena2017-06-201-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ====================================================================== ERROR: test_LZ4FrameCompressor (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 218, in test_LZ4FrameCompressor compressed += compressor.compress(input_data) File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/lz4/frame/__init__.py", line 130, in compress result = compress_update(self._context, data) MemoryError ====================================================================== ERROR: test_LZ4FrameCompressor_reset (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 227, in test_LZ4FrameCompressor_reset compressed += compressor.compress(input_data) File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/lz4/frame/__init__.py", line 130, in compress result = compress_update(self._context, data) MemoryError ====================================================================== ERROR: test_compress_begin_update_end (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 26, in test_compress_begin_update_end compressed += lz4frame.compress_update(context, input_data[:chunk_size]) MemoryError ====================================================================== ERROR: test_compress_begin_update_end_no_auto_flush (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 108, in test_compress_begin_update_end_no_auto_flush compressed += lz4frame.compress_update(context, input_data[:chunk_size]) MemoryError ====================================================================== ERROR: test_compress_begin_update_end_no_auto_flush_2 (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 124, in test_compress_begin_update_end_no_auto_flush_2 compressed += lz4frame.compress_update(context, input_data[start:end]) MemoryError ====================================================================== ERROR: test_compress_begin_update_end_no_auto_flush_not_defaults (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 172, in test_compress_begin_update_end_no_auto_flush_not_defaults compressed += lz4frame.compress_update(context, input_data[start:end]) MemoryError ====================================================================== ERROR: test_compress_begin_update_end_not_defaults (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 148, in test_compress_begin_update_end_not_defaults compressed += lz4frame.compress_update(context, input_data[start:end]) MemoryError ====================================================================== ERROR: test_compress_huge_with_size (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 37, in test_compress_huge_with_size compressed += lz4frame.compress_update(context, input_data[:chunk_size]) MemoryError ====================================================================== ERROR: test_compress_huge_without_size (test_frame.TestLZ4Frame) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 48, in test_compress_huge_without_size compressed += lz4frame.compress_update(context, input_data[:chunk_size]) MemoryError ====================================================================== ERROR: test_LZ4FrameCompressor_fails (test_frame.TestLZ4FrameModern) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 281, in test_LZ4FrameCompressor_fails compressed += compressor.compress(input_data) File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/lz4/frame/__init__.py", line 130, in compress result = compress_update(self._context, data) MemoryError ====================================================================== ERROR: test_decompress_truncated (test_frame.TestLZ4FrameModern) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/buildozer/aports/community/py-lz4/src/lz4-0.10.0/tests/test_frame.py", line 251, in test_decompress_truncated compressed += lz4frame.compress_update(context, input_data) MemoryError
* community/py-lz4: update to 0.10.0Stuart Cardall2017-06-111-2/+3
|
* community/py-lz4: update to 0.9.4 / add check()Stuart Cardall2017-06-032-8/+58
|
* community/py-lz4: rebuild against new version of python3Łukasz Jendrysik2017-02-181-1/+1
|
* community/[various]: dont set arch in split functionTimo Teräs2016-11-021-2/+1
|
* community/py-lz4: update to 0.8.2, add py2/py3 and tests subpackagesStuart Cardall2016-09-263-84/+40
|
* testing/[various]: move to communityStuart Cardall2016-08-213-0/+100
albatross-themes apk-post-messages autossh bitcoin btrbk entr ffmpegthumbnailer firejail firetools fwsnort gnome-colors imapsync inetutils-syslogd inotify-tools-inc isync junit ktsuss letsencrypt-nosudo libmbim libndp libqmi libteam mini-sendmail modemmanager namecoin networkmanager nginx-naxsi numix-themes nxapi opencl-headers opencl-icd-loader opus-tools perl-authen-ntlm perl-bit-vector perl-data-uniqid perl-file-copy-recursive perl-getopt-argvfile perl-io-tee perl-iptables-chainmgr perl-iptables-parse perl-module-scandeps perl-par-dist perl-par-packer perl-par perl-uri-escape psad py-crcmod py-graphviz py-lz4 py-opencl py-opengl-accelerate runit secpwgen secure-delete socklog spacefm tinyssh udevil virt-viewer virtualbricks whois wrk xpra zram-init