From b035f0271585f3664282cb71caad9928a1d424d2 Mon Sep 17 00:00:00 2001 From: "zhengrq.fnst" Date: Thu, 12 May 2022 17:19:14 +0800 Subject: python3-bitarray: upgrade 2.4.1 -> 2.5.0 2022-05-04 2.5.0: ------------------- * add calculating of canonical Huffman codes 'util.canonical_huffman()' and decoding thereof 'util.canonical_decode()', see #173 * allow creating "Huffman codes" from frequency maps with a single symbol in 'util.huffman_code()' and 'util.canonical_huffman()', see #172 * allow bytes-like argument in '.frombytes()' and '.pack()' - previously, the arguments were limited to the 'bytes' object, see #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 #172 * add 'skipIF' decorator for skipping tests * add test Signed-off-by: Zheng Ruoqin Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb (limited to 'meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb') diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb new file mode 100644 index 0000000000..bb80c4a04f --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-bitarray_2.5.0.bb @@ -0,0 +1,10 @@ +SUMMARY = "A high-level Python efficient arrays of booleans -- C extension" +HOMEPAGE = "https://github.com/ilanschnell/bitarray" +LICENSE = "PSF-2.0" +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" + +SRC_URI[sha256sum] = "5abed04adcd2031f6e714993d95223bf9ae85354c640c270b2ed6f46b83573ba" + +inherit setuptools3 pypi + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf