diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-03-23 18:33:08 +0200 | 
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-03-24 08:50:45 -0700 | 
| commit | 81bcc422d258e7a984e2480ffb4ad9925eecefbd (patch) | |
| tree | 570a6c5323199aca53e9750d2d91ff3d8ab79669 /meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb | |
| parent | c8bd8cd1726571d983730997d7f0d7f01102dbad (diff) | |
| download | meta-openembedded-81bcc422d258e7a984e2480ffb4ad9925eecefbd.tar.gz | |
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 <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb | 10 | 
1 files changed, 10 insertions, 0 deletions
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 @@ | |||
| 1 | SUMMARY = "A high-level Python efficient arrays of booleans -- C extension" | ||
| 2 | HOMEPAGE = "https://github.com/ilanschnell/bitarray" | ||
| 3 | LICENSE = "PSF" | ||
| 4 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "fe4444d92b17073bf1f9f24e3015a0e5bb70a645c47df93ef8a9ce8be33fcbad" | ||
| 7 | |||
| 8 | inherit setuptools3 pypi | ||
| 9 | |||
| 10 | BBCLASSEXTEND = "native nativesdk" | ||
