From 81bcc422d258e7a984e2480ffb4ad9925eecefbd Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 23 Mar 2021 18:33:08 +0200 Subject: python3-bitarray: Upgrade 1.7.1 -> 1.8.0 Upgrade to release 1.8.0: - Add `bitarray.util.serialize()` and `bitarray.util.deserialize()` - Allow whitespace (ignore space and `\n\r\t\v`) in input strings, e.g. `bitarray('01 11')` or `a += '10 00'` - Add `bitarray.util.pprint()` - When initializing a bitarray from another with different bit endianness, e.g. `a = bitarray('110', 'little')` and `b = bitarray(a, 'big')`, the buffer used to be simply copied, with consequence that `a == b` would result in `False`. This is fixed now, that is `a == b` will always evaluate to `True`. - Add example showing how to jsonize bitarrays - Add tests Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb | 10 ---------- meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb deleted file mode 100644 index f859283ab2..0000000000 --- a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb +++ /dev/null @@ -1,10 +0,0 @@ -SUMMARY = "A high-level Python efficient arrays of booleans -- C extension" -HOMEPAGE = "https://github.com/ilanschnell/bitarray" -LICENSE = "PSF" -LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" - -SRC_URI[sha256sum] = "e4de977d708b7024760266d827b8285e4405dce4293f25508c4556970139018a" - -inherit setuptools3 pypi - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb new file mode 100644 index 0000000000..f38791716e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.8.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" +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" + +SRC_URI[sha256sum] = "fe4444d92b17073bf1f9f24e3015a0e5bb70a645c47df93ef8a9ce8be33fcbad" + +inherit setuptools3 pypi + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf