All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3
@ 2020-09-15  9:02 Leon Anavi
  2020-09-15  9:02 ` [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1 Leon Anavi
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.14.3:

- Don't call PyEval_InitThreads() on CPython >= 3.7, where it
  should always be a no-op.  It is explicitly deprecated in 3.9.
- Let the test run directly on pypy too
- Remove extremely old and outdated .gitignore

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

diff --git a/meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb b/meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb
rename to meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
index 57c28954a..dbdd16f66 100644
--- a/meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb
+++ b/meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
@@ -4,8 +4,8 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5677e2fdbf7cdda61d6dd2b57df547bf"
 DEPENDS += "libffi ${PYTHON_PN}-pycparser"
 
-SRC_URI[md5sum] = "3cc2f1daf62dd66eda79b4d6281cebfc"
-SRC_URI[sha256sum] = "ae8f34d50af2c2154035984b8b5fc5d9ed63f32fe615646ab435b05b132ca91b"
+SRC_URI[md5sum] = "c2a47ffd5d183b193ac8ed3414dcfd07"
+SRC_URI[sha256sum] = "f92f789e4f9241cd262ad7a555ca2c648a98178a953af117ef7fad46aa1d5591"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
@ 2020-09-15  9:02 ` Leon Anavi
  2020-09-16 13:36   ` [oe] " Trevor Gamblin
  2020-09-15  9:02 ` [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5 Leon Anavi
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.12.1:

- deps: require six>=1.13.0
- add quota_project, credentials_file, and scopes support
- convert print statement to function
- remove http from batch execute docs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...t_1.11.0.bb => python3-google-api-python-client_1.12.1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-google-api-python-client_1.11.0.bb => python3-google-api-python-client_1.12.1.bb} (69%)

diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
similarity index 69%
rename from meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
index c14b17254..d79ac3c39 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/googleapis/google-api-python-client"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=94023d14f6b58272fd885e4e3f2f08b3"
 
-SRC_URI[md5sum] = "b9a09d60cffda35887a8e09b600a73b0"
-SRC_URI[sha256sum] = "caf4015800ef1a18d06d117f47f0219c0c0641f21978f6b1bb5ede7912fab97b"
+SRC_URI[md5sum] = "92106822131f76ca77b77009674e78e4"
+SRC_URI[sha256sum] = "ddadc243ce627512c2a27e11d369f5ddf658ef80dbffb247787499486ef1ea98"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
  2020-09-15  9:02 ` [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1 Leon Anavi
@ 2020-09-15  9:02 ` Leon Anavi
  2020-09-16 13:36   ` [oe] " Trevor Gamblin
  2020-09-15  9:02 ` [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0 Leon Anavi
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.5:

- Work around an issue in the Python stdlib that makes the entire
  process deadlock during garbage collection if events are sent
  from a __del__ implementation.
- Add possibility to wrap ASGI application twice in middleware to
  enable split up of request scope data and exception catching.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-sentry-sdk_0.17.3.bb => python3-sentry-sdk_0.17.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.17.3.bb => python3-sentry-sdk_0.17.5.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
index 0a39fb142..5495fa0d3 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
@@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[md5sum] = "5d4abcc416cbd0b9443bf56588b02b55"
-SRC_URI[sha256sum] = "0af429c221670e602f960fca85ca3f607c85510a91f11e8be8f742a978127f78"
+SRC_URI[md5sum] = "dcdf0d4f84f4f6ea02ad3f15dfcff2d9"
+SRC_URI[sha256sum] = "02f2a72698453f722b102562eb6430d2a82d6c6c40f2b991ed69e7628142de6a"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
  2020-09-15  9:02 ` [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1 Leon Anavi
  2020-09-15  9:02 ` [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5 Leon Anavi
@ 2020-09-15  9:02 ` Leon Anavi
  2020-09-16 13:36   ` [oe] " Trevor Gamblin
  2020-09-15  9:02 ` [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2 Leon Anavi
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.2.0:

- Backward-incompatible: attr.define(), attr.frozen(),
  attr.mutable(), and attr.field() remain provisional.
- attr.define() et al now correct detect __eq__ and __ne__.
- attr.define() et al's hybrid behavior now also works correctly
  when arguments are passed.
- It's possible to define custom __setattr__ methods on slotted
  classes again.
- In 20.1.0 we introduced the inherited attribute on the
  attr.Attribute class to differentiate attributes that have been
  inherited and those that have been defined directly on the
  class.It has shown to be problematic to involve that attribute
  when comparing instances of attr.Attribute though, because when
  sub-classing, attributes from base classes are suddenly not
  equal to themselves in a super class.
  Therefore the inherited attribute will now be ignored when
  hashing and comparing instances of attr.Attribute.
- zope.interface is now a "soft dependency" when running the test
  suite; if zope.interface is not installed when running the test
  suite, the interface-related tests will be automatically skipped.
- The ergonomics of creating frozen classes using
  @define(frozen=True) and sub-classing frozen classes has been
  improved: you don't have to set on_setattr=None anymore. #687

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

diff --git a/meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb b/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb
rename to meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
index 371f1f042..c2a5b9051 100644
--- a/meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "http://www.attrs.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff"
 
-SRC_URI[sha256sum] = "0ef97238856430dcf9228e07f316aefc17e8939fc8507e18c6501b761ef1a42a"
-SRC_URI[md5sum] = "ab7533fc91c5db3d5b65e66be907444e"
+SRC_URI[sha256sum] = "26b54ddbbb9ee1d34d5d3668dd37d6cf74990ab23c828c2888dccdceee395594"
+SRC_URI[md5sum] = "7be95e1b35e9385d71a0017a48217efc"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-09-15  9:02 ` [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0 Leon Anavi
@ 2020-09-15  9:02 ` Leon Anavi
  2020-09-16 13:36   ` [oe] " Trevor Gamblin
  2020-09-15  9:02 ` [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131 Leon Anavi
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.2:

- Fixed an AttributeError during unpickling.
- Optimized pickling a NocaseList object by serializing only the
  original list, but not the second lower-cased list. This
  optimization is only implemented for Python 3.
- Added tests for pickling and unpickling.
- Suppressed new Pylint issue 'super-with-arguments', because
  this package still supports Python 2.7.

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

diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
similarity index 61%
rename from meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb
rename to meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
index 9a6b24e75..8509cd0c9 100644
--- a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[md5sum] = "a2654766ee683906ba6c77ac1e89f556"
-SRC_URI[sha256sum] = "87dc37f97cf52f6e10e1e4a82f56359067462a713222b52976045bf227a40eda"
+SRC_URI[md5sum] = "10e58542c1225aff3f057e89e9ae4394"
+SRC_URI[sha256sum] = "3cfe964c436991cd6bd9f2cf23375c484ec7cf0c7488471381eff13a4fdac902"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-09-15  9:02 ` [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2 Leon Anavi
@ 2020-09-15  9:02 ` Leon Anavi
  2020-09-16 13:37   ` [oe] " Trevor Gamblin
  2020-09-15  9:03 ` [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:02 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.131:

- [test] Validate tag removal.
- [describeTypes] updated and sha3 added.
- Bump version, file template version objects and dependencies.
- Rename blacklist -> blocklist.

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

diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb
rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
index 2e9259466..82ab80314 100644
--- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb
+++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
 
-SRC_URI[md5sum] = "be91a479c689857617fbfc7ce919e291"
-SRC_URI[sha256sum] = "2610bfb5cb942e882c247b468769a6f68817b5a413358c381f73ba91d01edaf6"
+SRC_URI[md5sum] = "8844204f8b059ff2fc508ba9ac07dcb2"
+SRC_URI[sha256sum] = "59adb7ee95bfb1b5c35abbc01b5372df7327baea4a8df9efe30140ea64b73c18"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-09-15  9:02 ` [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131 Leon Anavi
@ 2020-09-15  9:03 ` Leon Anavi
  2020-09-16 13:37   ` [oe] " Trevor Gamblin
  2020-09-15  9:03 ` [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2.2:

- fix supported python versions in documentation

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

diff --git a/meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb b/meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb
rename to meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
index c3c368c34..18eae3532 100644
--- a/meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://docs.openstack.org/stevedore/latest/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[md5sum] = "5f5660cebaefebbde4607e44e050a3b2"
-SRC_URI[sha256sum] = "a34086819e2c7a7f86d5635363632829dab8014e5fd7be2454c7cba84ac7514e"
+SRC_URI[md5sum] = "c78357a02888490ef27a0d898eb97172"
+SRC_URI[sha256sum] = "f845868b3a3a77a2489d226568abe7328b5c2d4f6a011cc759dfa99144a521f0"
 
 DEPENDS += "${PYTHON_PN}-pbr-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-09-15  9:03 ` [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
@ 2020-09-15  9:03 ` Leon Anavi
  2020-09-16 13:37   ` [oe] " Trevor Gamblin
  2020-09-15  9:03 ` [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0 Leon Anavi
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.3.2:

- fix Axis scale on twinned Axes
- fix auto-close of Figures in nbagg
- fix automatic title placement if Axes is off the Figure
- fix autoranging of log scales with barstacked histogram
- fix extra redraws when using Button or TextBox widgets
- fix imshow with LogNorm and large vmin/vmax ranges
- fix plotting Pandas DataFrame with string MultiIndex
- fix scatter with marker=''
- fix scatter3d color/linewidth re-projection
- fix state of mode buttons in TkAgg backends
- include license files in built distribution
- reduce Visual C++ runtime requirements on Windows

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-matplotlib_3.3.1.bb => python3-matplotlib_3.3.2.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-matplotlib_3.3.1.bb => python3-matplotlib_3.3.2.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb
rename to meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
index 6273ee2f2..a2e7074d7 100644
--- a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
 SECTION = "devel/python"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "\
-    file://setup.py;beginline=251;endline=251;md5=e0ef37de7122ce842bcd1fb54482b353 \
+    file://setup.py;beginline=259;endline=259;md5=e0ef37de7122ce842bcd1fb54482b353 \
     file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
 "
 DEPENDS = "\
@@ -19,8 +19,8 @@ DEPENDS = "\
     python3-certifi-native \
 "
 
-SRC_URI[md5sum] = "f3a405f340be5b151cb2042c4d8d16f7"
-SRC_URI[sha256sum] = "87f53bcce90772f942c2db56736788b39332d552461a5cb13f05ff45c1680f0e"
+SRC_URI[md5sum] = "a85791908e78818bd425ba9ab38500fa"
+SRC_URI[sha256sum] = "3d2edbf59367f03cd9daf42939ca06383a7d7803e3993eb5ff1bee8e8a3fbb6b"
 
 inherit pypi setuptools3 pkgconfig
 
-- 
2.17.1


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

* [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (6 preceding siblings ...)
  2020-09-15  9:03 ` [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
@ 2020-09-15  9:03 ` Leon Anavi
  2020-09-16 13:37   ` [oe] " Trevor Gamblin
  2020-09-15  9:03 ` [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3 Leon Anavi
  2020-09-16 13:36 ` [oe] [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 7.3.0:

- add support for QUEUE_INSERT
- Run black and flake8 on examples
- Fix get_chromecasts non blocking mode
- Black 20.8b1

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

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
index 6a3b16c38..b444df05d 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[md5sum] = "a39b87178f866dda52da494eac0afe07"
-SRC_URI[sha256sum] = "9aad074d0361791af8ccb8fb7ea0f1646db3d89600fed85c5562b64c8b1aa899"
+SRC_URI[md5sum] = "7ab862743ff33dafc93206c1435abc5e"
+SRC_URI[sha256sum] = "f594231efb34b86eeb463611662bca21a6962793885d3ad68195286940f7473d"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.17.1


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

* [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (7 preceding siblings ...)
  2020-09-15  9:03 ` [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0 Leon Anavi
@ 2020-09-15  9:03 ` Leon Anavi
  2020-09-16 13:37   ` [oe] " Trevor Gamblin
  2020-09-16 13:36 ` [oe] [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2020-09-15  9:03 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade 0.17.3:

- Remove Python 2 support code. This includes dropping some
  compatibility code and the dependency on six.
- Python 3 exception chaining. This is a minor backwards
  incompatibility, hence stepping to 0.17.0.
- Restrict package to Python >= 3.5 to not break unpinned
  Python 2 dependencies.
- Release v0.17.3 with proper meta data requiring Python >= 3.5.

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

diff --git a/meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb b/meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb
rename to meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
index dec661143..72736c891 100644
--- a/meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
@@ -3,14 +3,13 @@ HOMEPAGE = "https://github.com/tobgu/pyrsistent"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE.mit;md5=ca574f2891cf528b3e7a2ee570337e7c"
 
-SRC_URI[md5sum] = "4ba30da6f0a63554e70ac6c4c1904929"
-SRC_URI[sha256sum] = "28669905fe725965daa16184933676547c5bb40a5153055a8dee2a4bd7933ad3"
+SRC_URI[md5sum] = "cd38658ea772a7f9b12b6f9485a7018b"
+SRC_URI[sha256sum] = "2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e"
 
 inherit pypi setuptools3
 
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-numbers \
-    ${PYTHON_PN}-six \
 "
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3
  2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
                   ` (8 preceding siblings ...)
  2020-09-15  9:03 ` [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3 Leon Anavi
@ 2020-09-16 13:36 ` Trevor Gamblin
  9 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 1.14.3:
>
> - Don't call PyEval_InitThreads() on CPython >= 3.7, where it
>    should always be a no-op.  It is explicitly deprecated in 3.9.
> - Let the test run directly on pypy too
> - Remove extremely old and outdated .gitignore
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cffi_1.14.2.bb => python3-cffi_1.14.3.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cffi_1.14.2.bb => python3-cffi_1.14.3.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb b/meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb
> rename to meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
> index 57c28954a..dbdd16f66 100644
> --- a/meta-python/recipes-devtools/python/python3-cffi_1.14.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-cffi_1.14.3.bb
> @@ -4,8 +4,8 @@ LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5677e2fdbf7cdda61d6dd2b57df547bf"
>   DEPENDS += "libffi ${PYTHON_PN}-pycparser"
>   
> -SRC_URI[md5sum] = "3cc2f1daf62dd66eda79b4d6281cebfc"
> -SRC_URI[sha256sum] = "ae8f34d50af2c2154035984b8b5fc5d9ed63f32fe615646ab435b05b132ca91b"
> +SRC_URI[md5sum] = "c2a47ffd5d183b193ac8ed3414dcfd07"
> +SRC_URI[sha256sum] = "f92f789e4f9241cd262ad7a555ca2c648a98178a953af117ef7fad46aa1d5591"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1
  2020-09-15  9:02 ` [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1 Leon Anavi
@ 2020-09-16 13:36   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 1.12.1:
>
> - deps: require six>=1.13.0
> - add quota_project, credentials_file, and scopes support
> - convert print statement to function
> - remove http from batch execute docs
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...t_1.11.0.bb => python3-google-api-python-client_1.12.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-google-api-python-client_1.11.0.bb => python3-google-api-python-client_1.12.1.bb} (69%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
> similarity index 69%
> rename from meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb
> rename to meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
> index c14b17254..d79ac3c39 100644
> --- a/meta-python/recipes-devtools/python/python3-google-api-python-client_1.11.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_1.12.1.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/googleapis/google-api-python-client"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=94023d14f6b58272fd885e4e3f2f08b3"
>   
> -SRC_URI[md5sum] = "b9a09d60cffda35887a8e09b600a73b0"
> -SRC_URI[sha256sum] = "caf4015800ef1a18d06d117f47f0219c0c0641f21978f6b1bb5ede7912fab97b"
> +SRC_URI[md5sum] = "92106822131f76ca77b77009674e78e4"
> +SRC_URI[sha256sum] = "ddadc243ce627512c2a27e11d369f5ddf658ef80dbffb247787499486ef1ea98"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5
  2020-09-15  9:02 ` [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5 Leon Anavi
@ 2020-09-16 13:36   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 0.17.5:
>
> - Work around an issue in the Python stdlib that makes the entire
>    process deadlock during garbage collection if events are sent
>    from a __del__ implementation.
> - Add possibility to wrap ASGI application twice in middleware to
>    enable split up of request scope data and exception catching.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sentry-sdk_0.17.3.bb => python3-sentry-sdk_0.17.5.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.17.3.bb => python3-sentry-sdk_0.17.5.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
> index 0a39fb142..5495fa0d3 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.5.bb
> @@ -5,8 +5,8 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
>   
> -SRC_URI[md5sum] = "5d4abcc416cbd0b9443bf56588b02b55"
> -SRC_URI[sha256sum] = "0af429c221670e602f960fca85ca3f607c85510a91f11e8be8f742a978127f78"
> +SRC_URI[md5sum] = "dcdf0d4f84f4f6ea02ad3f15dfcff2d9"
> +SRC_URI[sha256sum] = "02f2a72698453f722b102562eb6430d2a82d6c6c40f2b991ed69e7628142de6a"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0
  2020-09-15  9:02 ` [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0 Leon Anavi
@ 2020-09-16 13:36   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 20.2.0:
>
> - Backward-incompatible: attr.define(), attr.frozen(),
>    attr.mutable(), and attr.field() remain provisional.
> - attr.define() et al now correct detect __eq__ and __ne__.
> - attr.define() et al's hybrid behavior now also works correctly
>    when arguments are passed.
> - It's possible to define custom __setattr__ methods on slotted
>    classes again.
> - In 20.1.0 we introduced the inherited attribute on the
>    attr.Attribute class to differentiate attributes that have been
>    inherited and those that have been defined directly on the
>    class.It has shown to be problematic to involve that attribute
>    when comparing instances of attr.Attribute though, because when
>    sub-classing, attributes from base classes are suddenly not
>    equal to themselves in a super class.
>    Therefore the inherited attribute will now be ignored when
>    hashing and comparing instances of attr.Attribute.
> - zope.interface is now a "soft dependency" when running the test
>    suite; if zope.interface is not installed when running the test
>    suite, the interface-related tests will be automatically skipped.
> - The ergonomics of creating frozen classes using
>    @define(frozen=True) and sub-classing frozen classes has been
>    improved: you don't have to set on_setattr=None anymore. #687
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-attrs_20.1.0.bb => python3-attrs_20.2.0.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-attrs_20.1.0.bb => python3-attrs_20.2.0.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb b/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
> index 371f1f042..c2a5b9051 100644
> --- a/meta-python/recipes-devtools/python/python3-attrs_20.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "http://www.attrs.org/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff"
>   
> -SRC_URI[sha256sum] = "0ef97238856430dcf9228e07f316aefc17e8939fc8507e18c6501b761ef1a42a"
> -SRC_URI[md5sum] = "ab7533fc91c5db3d5b65e66be907444e"
> +SRC_URI[sha256sum] = "26b54ddbbb9ee1d34d5d3668dd37d6cf74990ab23c828c2888dccdceee395594"
> +SRC_URI[md5sum] = "7be95e1b35e9385d71a0017a48217efc"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2
  2020-09-15  9:02 ` [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2 Leon Anavi
@ 2020-09-16 13:36   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:36 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 1.0.2:
>
> - Fixed an AttributeError during unpickling.
> - Optimized pickling a NocaseList object by serializing only the
>    original list, but not the second lower-cased list. This
>    optimization is only implemented for Python 3.
> - Added tests for pickling and unpickling.
> - Suppressed new Pylint issue 'super-with-arguments', because
>    this package still supports Python 2.7.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-nocaselist_1.0.1.bb => python3-nocaselist_1.0.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-nocaselist_1.0.1.bb => python3-nocaselist_1.0.2.bb} (61%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
> similarity index 61%
> rename from meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb
> rename to meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
> index 9a6b24e75..8509cd0c9 100644
> --- a/meta-python/recipes-devtools/python/python3-nocaselist_1.0.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-nocaselist_1.0.2.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://nocaselist.readthedocs.io/en/latest/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
>   
> -SRC_URI[md5sum] = "a2654766ee683906ba6c77ac1e89f556"
> -SRC_URI[sha256sum] = "87dc37f97cf52f6e10e1e4a82f56359067462a713222b52976045bf227a40eda"
> +SRC_URI[md5sum] = "10e58542c1225aff3f057e89e9ae4394"
> +SRC_URI[sha256sum] = "3cfe964c436991cd6bd9f2cf23375c484ec7cf0c7488471381eff13a4fdac902"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131
  2020-09-15  9:02 ` [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131 Leon Anavi
@ 2020-09-16 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:02 AM, Leon Anavi wrote:
> Upgrade to release 2.4.131:
>
> - [test] Validate tag removal.
> - [describeTypes] updated and sha3 added.
> - Bump version, file template version objects and dependencies.
> - Rename blacklist -> blocklist.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pymisp_2.4.130.bb => python3-pymisp_2.4.131.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pymisp_2.4.130.bb => python3-pymisp_2.4.131.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb b/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb
> rename to meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
> index 2e9259466..82ab80314 100644
> --- a/meta-python/recipes-devtools/python/python3-pymisp_2.4.130.bb
> +++ b/meta-python/recipes-devtools/python/python3-pymisp_2.4.131.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/MISP/PyMISP"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3639cf5780f71b125d3e9d1dc127c20"
>   
> -SRC_URI[md5sum] = "be91a479c689857617fbfc7ce919e291"
> -SRC_URI[sha256sum] = "2610bfb5cb942e882c247b468769a6f68817b5a413358c381f73ba91d01edaf6"
> +SRC_URI[md5sum] = "8844204f8b059ff2fc508ba9ac07dcb2"
> +SRC_URI[sha256sum] = "59adb7ee95bfb1b5c35abbc01b5372df7327baea4a8df9efe30140ea64b73c18"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2
  2020-09-15  9:03 ` [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
@ 2020-09-16 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:03 AM, Leon Anavi wrote:
> Upgrade to release 3.2.2:
>
> - fix supported python versions in documentation
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-stevedore_3.2.1.bb => python3-stevedore_3.2.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-stevedore_3.2.1.bb => python3-stevedore_3.2.2.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb b/meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb
> rename to meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
> index c3c368c34..18eae3532 100644
> --- a/meta-python/recipes-devtools/python/python3-stevedore_3.2.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-stevedore_3.2.2.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://docs.openstack.org/stevedore/latest/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
>   
> -SRC_URI[md5sum] = "5f5660cebaefebbde4607e44e050a3b2"
> -SRC_URI[sha256sum] = "a34086819e2c7a7f86d5635363632829dab8014e5fd7be2454c7cba84ac7514e"
> +SRC_URI[md5sum] = "c78357a02888490ef27a0d898eb97172"
> +SRC_URI[sha256sum] = "f845868b3a3a77a2489d226568abe7328b5c2d4f6a011cc759dfa99144a521f0"
>   
>   DEPENDS += "${PYTHON_PN}-pbr-native"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2
  2020-09-15  9:03 ` [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
@ 2020-09-16 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:03 AM, Leon Anavi wrote:
> Upgrade to release 3.3.2:
>
> - fix Axis scale on twinned Axes
> - fix auto-close of Figures in nbagg
> - fix automatic title placement if Axes is off the Figure
> - fix autoranging of log scales with barstacked histogram
> - fix extra redraws when using Button or TextBox widgets
> - fix imshow with LogNorm and large vmin/vmax ranges
> - fix plotting Pandas DataFrame with string MultiIndex
> - fix scatter with marker=''
> - fix scatter3d color/linewidth re-projection
> - fix state of mode buttons in TkAgg backends
> - include license files in built distribution
> - reduce Visual C++ runtime requirements on Windows
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-matplotlib_3.3.1.bb => python3-matplotlib_3.3.2.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-matplotlib_3.3.1.bb => python3-matplotlib_3.3.2.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb
> rename to meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> index 6273ee2f2..a2e7074d7 100644
> --- a/meta-python/recipes-devtools/python/python3-matplotlib_3.3.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.3.2.bb
> @@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
>   SECTION = "devel/python"
>   LICENSE = "PSF"
>   LIC_FILES_CHKSUM = "\
> -    file://setup.py;beginline=251;endline=251;md5=e0ef37de7122ce842bcd1fb54482b353 \
> +    file://setup.py;beginline=259;endline=259;md5=e0ef37de7122ce842bcd1fb54482b353 \
>       file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
>   "
>   DEPENDS = "\
> @@ -19,8 +19,8 @@ DEPENDS = "\
>       python3-certifi-native \
>   "
>   
> -SRC_URI[md5sum] = "f3a405f340be5b151cb2042c4d8d16f7"
> -SRC_URI[sha256sum] = "87f53bcce90772f942c2db56736788b39332d552461a5cb13f05ff45c1680f0e"
> +SRC_URI[md5sum] = "a85791908e78818bd425ba9ab38500fa"
> +SRC_URI[sha256sum] = "3d2edbf59367f03cd9daf42939ca06383a7d7803e3993eb5ff1bee8e8a3fbb6b"
>   
>   inherit pypi setuptools3 pkgconfig
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0
  2020-09-15  9:03 ` [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0 Leon Anavi
@ 2020-09-16 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:03 AM, Leon Anavi wrote:
> Upgrade to release 7.3.0:
>
> - add support for QUEUE_INSERT
> - Run black and flake8 on examples
> - Fix get_chromecasts non blocking mode
> - Black 20.8b1
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-pychromecast_7.2.1.bb => python3-pychromecast_7.3.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pychromecast_7.2.1.bb => python3-pychromecast_7.3.0.bb} (66%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
> similarity index 66%
> rename from meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb
> rename to meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
> index 6a3b16c38..b444df05d 100644
> --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.2.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.3.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
>   
> -SRC_URI[md5sum] = "a39b87178f866dda52da494eac0afe07"
> -SRC_URI[sha256sum] = "9aad074d0361791af8ccb8fb7ea0f1646db3d89600fed85c5562b64c8b1aa899"
> +SRC_URI[md5sum] = "7ab862743ff33dafc93206c1435abc5e"
> +SRC_URI[sha256sum] = "f594231efb34b86eeb463611662bca21a6962793885d3ad68195286940f7473d"
>   
>   PYPI_PACKAGE = "PyChromecast"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3
  2020-09-15  9:03 ` [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3 Leon Anavi
@ 2020-09-16 13:37   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2020-09-16 13:37 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/15/20 5:03 AM, Leon Anavi wrote:
> Upgrade 0.17.3:
>
> - Remove Python 2 support code. This includes dropping some
>    compatibility code and the dependency on six.
> - Python 3 exception chaining. This is a minor backwards
>    incompatibility, hence stepping to 0.17.0.
> - Restrict package to Python >= 3.5 to not break unpinned
>    Python 2 dependencies.
> - Release v0.17.3 with proper meta data requiring Python >= 3.5.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...on3-pyrsistent_0.16.0.bb => python3-pyrsistent_0.17.3.bb} | 5 ++---
>   1 file changed, 2 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pyrsistent_0.16.0.bb => python3-pyrsistent_0.17.3.bb} (66%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb b/meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
> similarity index 66%
> rename from meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb
> rename to meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
> index dec661143..72736c891 100644
> --- a/meta-python/recipes-devtools/python/python3-pyrsistent_0.16.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyrsistent_0.17.3.bb
> @@ -3,14 +3,13 @@ HOMEPAGE = "https://github.com/tobgu/pyrsistent"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENCE.mit;md5=ca574f2891cf528b3e7a2ee570337e7c"
>   
> -SRC_URI[md5sum] = "4ba30da6f0a63554e70ac6c4c1904929"
> -SRC_URI[sha256sum] = "28669905fe725965daa16184933676547c5bb40a5153055a8dee2a4bd7933ad3"
> +SRC_URI[md5sum] = "cd38658ea772a7f9b12b6f9485a7018b"
> +SRC_URI[sha256sum] = "2e636185d9eb976a18a8a8e96efce62f2905fea90041958d8cc2a189756ebf3e"
>   
>   inherit pypi setuptools3
>   
>   RDEPENDS_${PN} += " \
>       ${PYTHON_PN}-numbers \
> -    ${PYTHON_PN}-six \
>   "
>   
>   BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

end of thread, other threads:[~2020-09-16 13:38 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-15  9:02 [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 Leon Anavi
2020-09-15  9:02 ` [meta-python][PATCH 02/10] python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1 Leon Anavi
2020-09-16 13:36   ` [oe] " Trevor Gamblin
2020-09-15  9:02 ` [meta-python][PATCH 03/10] python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5 Leon Anavi
2020-09-16 13:36   ` [oe] " Trevor Gamblin
2020-09-15  9:02 ` [meta-python][PATCH 04/10] python3-attrs: Upgrade 20.1.0 -> 20.2.0 Leon Anavi
2020-09-16 13:36   ` [oe] " Trevor Gamblin
2020-09-15  9:02 ` [meta-python][PATCH 05/10] python3-nocaselist: Upgrade 1.0.1 -> 1.0.2 Leon Anavi
2020-09-16 13:36   ` [oe] " Trevor Gamblin
2020-09-15  9:02 ` [meta-python][PATCH 06/10] python3-pymisp: Upgrade 2.4.130 -> 2.4.131 Leon Anavi
2020-09-16 13:37   ` [oe] " Trevor Gamblin
2020-09-15  9:03 ` [meta-python][PATCH 07/10] python3-stevedore: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
2020-09-16 13:37   ` [oe] " Trevor Gamblin
2020-09-15  9:03 ` [meta-python][PATCH 08/10] python3-matplotlib: Upgrade 3.3.1 -> 3.3.2 Leon Anavi
2020-09-16 13:37   ` [oe] " Trevor Gamblin
2020-09-15  9:03 ` [meta-python][PATCH 09/10] python3-pychromecast: Upgrade 7.2.1 -> 7.3.0 Leon Anavi
2020-09-16 13:37   ` [oe] " Trevor Gamblin
2020-09-15  9:03 ` [meta-python][PATCH 10/10] python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3 Leon Anavi
2020-09-16 13:37   ` [oe] " Trevor Gamblin
2020-09-16 13:36 ` [oe] [meta-python][PATCH 01/10] python3-cffi: Upgrade 1.14.2 -> 1.14.3 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.