All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1
@ 2020-07-15 15:24 Leon Anavi
  2020-07-15 15:24 ` [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2020-07-15 15:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.1.1:

- Build system: Making C lib optional if it fails to compile
- Build system: Better Glibc version detection
- Tests: Positive and negative bignums
- Bugfix: Fractional seconds parsing in datetimes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-cbor2_5.1.0.bb => python3-cbor2_5.1.1.bb}  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cbor2_5.1.0.bb => python3-cbor2_5.1.1.bb} (81%)

diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb
rename to meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
index 812539941..6b26da2a6 100644
--- a/meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
@@ -4,7 +4,8 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
 
-SRC_URI[sha256sum] = "43ce11e8c2fe4971d386d1a60cf83bfa0a4a667b97668ba76acbf5e6398821aa"
+SRC_URI[sha256sum] = "09e9607ea50e2ebb718791d475f11620cb244b0cc3758ce2e76cf36e8372ad64"
+SRC_URI[md5sum] = "b034d7edfd22c1f98e600aaedbd90f39"
 
 inherit pypi setuptools3 ptest
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2
  2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
@ 2020-07-15 15:24 ` Leon Anavi
  2020-07-16 18:03   ` [oe] " Trevor Gamblin
  2020-07-15 15:24 ` [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-07-15 15:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.7.2:

- wheels for 2.7 were inadvertently deleted.
- parallel tests on UNIX (make test-parallel). They're twice as
  fast!
- "make build/install" is now run in parallel and it's about 15%
  faster on UNIX.
- Process.wait() on POSIX returns an enum, showing the negative
  signal which was used to terminate the process.
- Process.wait() return value is cached so that the exit code can
  be retrieved on then next call.
- memory leak tests are now stable.
- Linux: cpu_freq() parsing should use spaces instead of tabs on
  ia64.
- Linux: Process.rlimit() does not handle long long type properly.
- fix signature of callback function for getloadavg().

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-psutil_5.7.0.bb => python3-psutil_5.7.2.bb}     | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-psutil_5.7.0.bb => python3-psutil_5.7.2.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb b/meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb
rename to meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
index 170819d59..d61d501e9 100644
--- a/meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
@@ -2,8 +2,9 @@ SUMMARY = "A cross-platform process and system utilities module for Python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e35fd9f271d19d5f742f20a9d1f8bb8b"
 
-SRC_URI[md5sum] = "ed7b0f11ed214bcabbe76b7cf52f3ae3"
-SRC_URI[sha256sum] = "685ec16ca14d079455892f25bd124df26ff9137664af445563c1bd36629b5e0e"
+PYPI_SRC_URI = "https://files.pythonhosted.org/packages/aa/3e/d18f2c04cf2b528e18515999b0c8e698c136db78f62df34eee89cee205f1/psutil-${PV}.tar.gz"
+SRC_URI[md5sum] = "50bf39b4faa268ba1da8a9730bb38bb6"
+SRC_URI[sha256sum] = "90990af1c3c67195c44c9a889184f84f5b2320dce3ee3acbd054e3ba0b4a7beb"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0
  2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
  2020-07-15 15:24 ` [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2 Leon Anavi
@ 2020-07-15 15:24 ` Leon Anavi
  2020-07-16 18:03   ` [oe] " Trevor Gamblin
  2020-07-15 15:24 ` [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-07-15 15:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.1.0:

- isort now throws an exception if an invalid settings path is
  given (issue #1174).
- Implemented support for automatic redundant alias removal
  (issue #1281).
- Implemented experimental support for floating all imports to
  the top of a file (issue #1228)
- Fixed #1178: support for semicolons in decorators.
- Fixed #1315: Extra newline before comment with -n + --fss.
- Fixed #1192: -k or --keep-direct-and-as-imports option has been
  deprecated as it is now always on.

For more details and breaking changes with release 5:
https://github.com/timothycrosley/isort/blob/master/CHANGELOG.md

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-isort_4.3.21.bb => python3-isort_5.1.0.bb}     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-isort_4.3.21.bb => python3-isort_5.1.0.bb} (61%)

diff --git a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb b/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
similarity index 61%
rename from meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
rename to meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
index e0b21ab55..a57b22361 100644
--- a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
@@ -2,10 +2,10 @@ SUMMARY = "A Python utility / library to sort Python imports."
 HOMEPAGE = "https://pypi.python.org/pypi/isort"
 LICENSE = "MIT"
 SECTION = "devel/python"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
-SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
+SRC_URI[md5sum] = "9e47f58de573c3fab674a70f0512e9f7"
+SRC_URI[sha256sum] = "b19b7ebce5e292507afa8fab30dd666011dd5ae8f4ef2a2d431751dc84c22140"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0
  2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
  2020-07-15 15:24 ` [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2 Leon Anavi
  2020-07-15 15:24 ` [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0 Leon Anavi
@ 2020-07-15 15:24 ` Leon Anavi
  2020-07-16 18:04   ` [oe] " Trevor Gamblin
  2020-07-15 15:24 ` [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1 Leon Anavi
  2020-07-16 18:03 ` [oe] [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-07-15 15:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.0:

* Fixed weak reference support in classes with ``__slots__``
* Added ``__bytes__`` to ``IPAddress`` for intuitive usage,
  thanks to Michael Belousov.
* Added ``format()`` function to EUI, thanks to Omer Anson.
* Added ``IPNetwork.netmask`` property setter, thanks to
  Naveen Nathan.
* Added support for IABs in the ``40:D8:55`` OUI, thanks to
  Brian Maissy.
* Drastically optimized ``spanning_cidr()``, thanks to Brian
  Maissy.
* Fixed ``"x.x.x.x/x" in IPNetwork`` tests, thanks to xpac1985.
* Added support for passing iterables of ``IPRange`` to ``IPSet``
  and ``cidr_merge()``, based on a patch by Henry Stern.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-netaddr_0.7.20.bb => python3-netaddr_0.8.0.bb}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-netaddr_0.7.20.bb => python3-netaddr_0.8.0.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb b/meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb
rename to meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
index bc7598c46..a120b24f1 100644
--- a/meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb
+++ b/meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
@@ -2,8 +2,8 @@ SUMMARY = "A network address manipulation library for Python."
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e6345d695ffe3776f68a56fe7962db44"
 
-SRC_URI[md5sum] = "f254d6b61e07123f9e2643b1dcbd03df"
-SRC_URI[sha256sum] = "d09252e5aec3913815d77eb8e8ea8fa6eb33521253e52f977f6abaa964776f3e"
+SRC_URI[md5sum] = "34cad578473b66ad77bc3b2a7613ed4a"
+SRC_URI[sha256sum] = "d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"
 
 inherit pypi setuptools3
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1
  2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-07-15 15:24 ` [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0 Leon Anavi
@ 2020-07-15 15:24 ` Leon Anavi
  2020-07-16 18:04   ` [oe] " Trevor Gamblin
  2020-07-16 18:03 ` [oe] [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-07-15 15:24 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4.1:

* add `.clear()` method (Python 3.3 added this method to lists)
* avoid overallocation when bitarray objects are initially created
* raise BufferError when resizing bitarrays which is exporting
  buffers
* add example to study the resize() function
* improve some error messages
* add more tests
* raise `NotImplementedError` with (useful message) when trying to
  call the `.fromstring()` or `.tostring()` methods, which have
  been removed in the last release
* add official Python 3.9 support
* improve many docstrings
* add DeprecationWarning for bitdiff()
* add more tests
* C-level:
  - simplify pack/unpack code
  - fix memory leak in '~' operation (bitarray_cpinvert)

Use the exact line for the license in PKG-INFO.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python3-bitarray_1.2.2.bb | 11 -----------
 .../recipes-devtools/python/python3-bitarray_1.4.1.bb | 11 +++++++++++
 2 files changed, 11 insertions(+), 11 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
deleted file mode 100644
index c495738c4..000000000
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
+++ /dev/null
@@ -1,11 +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;md5=d331e1d54f5e78247388f5416c2ab928"
-
-SRC_URI[md5sum] = "81c48852b0bc538ac3ed25fae020360c"
-SRC_URI[sha256sum] = "27a69ffcee3b868abab3ce8b17c69e02b63e722d4d64ffd91d659f81e9984954"
-
-inherit setuptools3 pypi
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
new file mode 100644
index 000000000..4866e8464
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
@@ -0,0 +1,11 @@
+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[md5sum] = "dfb3fe66ae989e4724747fcb0f704f56"
+SRC_URI[sha256sum] = "9e26d3dc7fad932fed66e08da3fcf93dd15e8402aa84e764e1e2a9e1b6ae2b7f"
+
+inherit setuptools3 pypi
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1
  2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-07-15 15:24 ` [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1 Leon Anavi
@ 2020-07-16 18:03 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-16 18:03 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1619 bytes --]


On 7/15/20 11:24 AM, Leon Anavi wrote:
> Upgrade to release 5.1.1:
>
> - Build system: Making C lib optional if it fails to compile
> - Build system: Better Glibc version detection
> - Tests: Positive and negative bignums
> - Bugfix: Fractional seconds parsing in datetimes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cbor2_5.1.0.bb => python3-cbor2_5.1.1.bb}  | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-cbor2_5.1.0.bb => python3-cbor2_5.1.1.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb b/meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
> index 812539941..6b26da2a6 100644
> --- a/meta-python/recipes-devtools/python/python3-cbor2_5.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-cbor2_5.1.1.bb
> @@ -4,7 +4,8 @@ DEPENDS +="${PYTHON_PN}-setuptools-scm-native"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
>   
> -SRC_URI[sha256sum] = "43ce11e8c2fe4971d386d1a60cf83bfa0a4a667b97668ba76acbf5e6398821aa"
> +SRC_URI[sha256sum] = "09e9607ea50e2ebb718791d475f11620cb244b0cc3758ce2e76cf36e8372ad64"
> +SRC_URI[md5sum] = "b034d7edfd22c1f98e600aaedbd90f39"
>   
>   inherit pypi setuptools3 ptest
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 2571 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2
  2020-07-15 15:24 ` [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2 Leon Anavi
@ 2020-07-16 18:03   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-16 18:03 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2316 bytes --]


On 7/15/20 11:24 AM, Leon Anavi wrote:
> Upgrade to release 5.7.2:
>
> - wheels for 2.7 were inadvertently deleted.
> - parallel tests on UNIX (make test-parallel). They're twice as
>    fast!
> - "make build/install" is now run in parallel and it's about 15%
>    faster on UNIX.
> - Process.wait() on POSIX returns an enum, showing the negative
>    signal which was used to terminate the process.
> - Process.wait() return value is cached so that the exit code can
>    be retrieved on then next call.
> - memory leak tests are now stable.
> - Linux: cpu_freq() parsing should use spaces instead of tabs on
>    ia64.
> - Linux: Process.rlimit() does not handle long long type properly.
> - fix signature of callback function for getloadavg().
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-psutil_5.7.0.bb => python3-psutil_5.7.2.bb}     | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-psutil_5.7.0.bb => python3-psutil_5.7.2.bb} (64%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb b/meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
> similarity index 64%
> rename from meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb
> rename to meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
> index 170819d59..d61d501e9 100644
> --- a/meta-python/recipes-devtools/python/python3-psutil_5.7.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-psutil_5.7.2.bb
> @@ -2,8 +2,9 @@ SUMMARY = "A cross-platform process and system utilities module for Python"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=e35fd9f271d19d5f742f20a9d1f8bb8b"
>   
> -SRC_URI[md5sum] = "ed7b0f11ed214bcabbe76b7cf52f3ae3"
> -SRC_URI[sha256sum] = "685ec16ca14d079455892f25bd124df26ff9137664af445563c1bd36629b5e0e"
> +PYPI_SRC_URI = "https://files.pythonhosted.org/packages/aa/3e/d18f2c04cf2b528e18515999b0c8e698c136db78f62df34eee89cee205f1/psutil-${PV}.tar.gz"
> +SRC_URI[md5sum] = "50bf39b4faa268ba1da8a9730bb38bb6"
> +SRC_URI[sha256sum] = "90990af1c3c67195c44c9a889184f84f5b2320dce3ee3acbd054e3ba0b4a7beb"
>   
>   inherit pypi setuptools3
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 3419 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0
  2020-07-15 15:24 ` [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0 Leon Anavi
@ 2020-07-16 18:03   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-16 18:03 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2296 bytes --]


On 7/15/20 11:24 AM, Leon Anavi wrote:
> Upgrade to release 5.1.0:
>
> - isort now throws an exception if an invalid settings path is
>    given (issue #1174).
> - Implemented support for automatic redundant alias removal
>    (issue #1281).
> - Implemented experimental support for floating all imports to
>    the top of a file (issue #1228)
> - Fixed #1178: support for semicolons in decorators.
> - Fixed #1315: Extra newline before comment with -n + --fss.
> - Fixed #1192: -k or --keep-direct-and-as-imports option has been
>    deprecated as it is now always on.
>
> For more details and breaking changes with release 5:
> https://github.com/timothycrosley/isort/blob/master/CHANGELOG.md
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-isort_4.3.21.bb => python3-isort_5.1.0.bb}     | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-isort_4.3.21.bb => python3-isort_5.1.0.bb} (61%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb b/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
> similarity index 61%
> rename from meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
> rename to meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
> index e0b21ab55..a57b22361 100644
> --- a/meta-python/recipes-devtools/python/python3-isort_4.3.21.bb
> +++ b/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
> @@ -2,10 +2,10 @@ SUMMARY = "A Python utility / library to sort Python imports."
>   HOMEPAGE = "https://pypi.python.org/pypi/isort"
>   LICENSE = "MIT"
>   SECTION = "devel/python"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
>   
> -SRC_URI[md5sum] = "05d66f2eb7ce2c2d702e86bac24bf9e4"
> -SRC_URI[sha256sum] = "54da7e92468955c4fceacd0c86bd0ec997b0e1ee80d97f67c35a78b719dccab1"
> +SRC_URI[md5sum] = "9e47f58de573c3fab674a70f0512e9f7"
> +SRC_URI[sha256sum] = "b19b7ebce5e292507afa8fab30dd666011dd5ae8f4ef2a2d431751dc84c22140"
>   
>   inherit pypi setuptools3
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 3571 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0
  2020-07-15 15:24 ` [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0 Leon Anavi
@ 2020-07-16 18:04   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-16 18:04 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2138 bytes --]


On 7/15/20 11:24 AM, Leon Anavi wrote:
> Upgrade to release 0.8.0:
>
> * Fixed weak reference support in classes with ``__slots__``
> * Added ``__bytes__`` to ``IPAddress`` for intuitive usage,
>    thanks to Michael Belousov.
> * Added ``format()`` function to EUI, thanks to Omer Anson.
> * Added ``IPNetwork.netmask`` property setter, thanks to
>    Naveen Nathan.
> * Added support for IABs in the ``40:D8:55`` OUI, thanks to
>    Brian Maissy.
> * Drastically optimized ``spanning_cidr()``, thanks to Brian
>    Maissy.
> * Fixed ``"x.x.x.x/x" in IPNetwork`` tests, thanks to xpac1985.
> * Added support for passing iterables of ``IPRange`` to ``IPSet``
>    and ``cidr_merge()``, based on a patch by Henry Stern.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-netaddr_0.7.20.bb => python3-netaddr_0.8.0.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-netaddr_0.7.20.bb => python3-netaddr_0.8.0.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb b/meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb
> rename to meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
> index bc7598c46..a120b24f1 100644
> --- a/meta-python/recipes-devtools/python/python3-netaddr_0.7.20.bb
> +++ b/meta-python/recipes-devtools/python/python3-netaddr_0.8.0.bb
> @@ -2,8 +2,8 @@ SUMMARY = "A network address manipulation library for Python."
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=e6345d695ffe3776f68a56fe7962db44"
>   
> -SRC_URI[md5sum] = "f254d6b61e07123f9e2643b1dcbd03df"
> -SRC_URI[sha256sum] = "d09252e5aec3913815d77eb8e8ea8fa6eb33521253e52f977f6abaa964776f3e"
> +SRC_URI[md5sum] = "34cad578473b66ad77bc3b2a7613ed4a"
> +SRC_URI[sha256sum] = "d6cc57c7a07b1d9d2e917aa8b36ae8ce61c35ba3fcd1b83ca31c5a0ee2b5a243"
>   
>   inherit pypi setuptools3
>   
>
> 

[-- Attachment #2: Type: text/html, Size: 3056 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [oe] [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1
  2020-07-15 15:24 ` [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1 Leon Anavi
@ 2020-07-16 18:04   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-16 18:04 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2940 bytes --]


On 7/15/20 11:24 AM, Leon Anavi wrote:
> Upgrade to release 1.4.1:
>
> * add `.clear()` method (Python 3.3 added this method to lists)
> * avoid overallocation when bitarray objects are initially created
> * raise BufferError when resizing bitarrays which is exporting
>    buffers
> * add example to study the resize() function
> * improve some error messages
> * add more tests
> * raise `NotImplementedError` with (useful message) when trying to
>    call the `.fromstring()` or `.tostring()` methods, which have
>    been removed in the last release
> * add official Python 3.9 support
> * improve many docstrings
> * add DeprecationWarning for bitdiff()
> * add more tests
> * C-level:
>    - simplify pack/unpack code
>    - fix memory leak in '~' operation (bitarray_cpinvert)
>
> Use the exact line for the license in PKG-INFO.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-bitarray_1.2.2.bb | 11 -----------
>   .../recipes-devtools/python/python3-bitarray_1.4.1.bb | 11 +++++++++++
>   2 files changed, 11 insertions(+), 11 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
>   create mode 100644 meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
> deleted file mode 100644
> index c495738c4..000000000
> --- a/meta-python/recipes-devtools/python/python3-bitarray_1.2.2.bb
> +++ /dev/null
> @@ -1,11 +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;md5=d331e1d54f5e78247388f5416c2ab928"
> -
> -SRC_URI[md5sum] = "81c48852b0bc538ac3ed25fae020360c"
> -SRC_URI[sha256sum] = "27a69ffcee3b868abab3ce8b17c69e02b63e722d4d64ffd91d659f81e9984954"
> -
> -inherit setuptools3 pypi
> -
> -BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
> new file mode 100644
> index 000000000..4866e8464
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-bitarray_1.4.1.bb
> @@ -0,0 +1,11 @@
> +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[md5sum] = "dfb3fe66ae989e4724747fcb0f704f56"
> +SRC_URI[sha256sum] = "9e26d3dc7fad932fed66e08da3fcf93dd15e8402aa84e764e1e2a9e1b6ae2b7f"
> +
> +inherit setuptools3 pypi
> +
> +BBCLASSEXTEND = "native nativesdk"
>
> 

[-- Attachment #2: Type: text/html, Size: 4245 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-07-16 18:04 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-15 15:24 [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Leon Anavi
2020-07-15 15:24 ` [meta-python][PATCH 2/5] python3-psutil: Upgrade 5.7.0 -> 5.7.2 Leon Anavi
2020-07-16 18:03   ` [oe] " Trevor Gamblin
2020-07-15 15:24 ` [meta-python][PATCH 3/5] python3-isort: Upgrade 4.3.21 -> 5.1.0 Leon Anavi
2020-07-16 18:03   ` [oe] " Trevor Gamblin
2020-07-15 15:24 ` [meta-python][PATCH 4/5] python3-netaddr: Upgrade 0.7.20 -> 0.8.0 Leon Anavi
2020-07-16 18:04   ` [oe] " Trevor Gamblin
2020-07-15 15:24 ` [meta-python][PATCH 5/5] python3-bitarray: Upgrade 1.2.2 -> 1.4.1 Leon Anavi
2020-07-16 18:04   ` [oe] " Trevor Gamblin
2020-07-16 18:03 ` [oe] [meta-python][PATCH 1/5] python3-cbor2: Upgrade 5.1.0 -> 5.1.1 Trevor Gamblin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.