All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1
@ 2020-09-23  7:58 Leon Anavi
  2020-09-23  7:58 ` [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7 Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.1:

- Exceptions that occur in callbacks are no longer suppressed by
  default. They can optionally be suppressed by setting
  `client.suppress_exceptions = True`.
- Fix PUBREL remaining length of > 2 not being accepted for MQTT
  v5 message flows.

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

diff --git a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb
rename to meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
index 8bf80e601a..d93bc884ee 100644
--- a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
@@ -8,8 +8,8 @@ SRCNAME = "paho-mqtt"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "45e80d9b8066a8d0ba1ecfffe271bd3d"
-SRC_URI[sha256sum] = "e3d286198baaea195c8b3bc221941d25a3ab0e1507fc1779bdb7473806394be4"
+SRC_URI[md5sum] = "32f93c0ed92c7439f7a715ed258fd35d"
+SRC_URI[sha256sum] = "9feb068e822be7b3a116324e01fb6028eb1d66412bf98595ae72698965cb1cae"
 
 DEPENDS += "${PYTHON_PN}-pytest-runner-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:45   ` [oe] " Trevor Gamblin
  2020-09-23  7:58 ` [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.7:

- Internal: Change data category for transaction envelopes.
- Fix a bug under Celery 4.2+ that may have caused disjoint
  traces or missing transactions.

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

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.bb
index 5f566a8264..27f68fcb21 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.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] = "f48cccd128b10a9a4d19db89d1a74a58"
-SRC_URI[sha256sum] = "1a086486ff9da15791f294f6e9915eb3747d161ef64dee2d038a4d0b4a369b24"
+SRC_URI[md5sum] = "eda3a8d9aae8459ef6efe540293a9ca8"
+SRC_URI[sha256sum] = "a698993f3abbe06e88e8a3c8b61c8a79c12f62e503f1a23eda30c3921f0525a9"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
  2020-09-23  7:58 ` [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:45   ` [oe] " Trevor Gamblin
  2020-09-23  7:58 ` [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1 Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.0:

- importlib_metadata no longer presents a __version__ attribute.
  Consumers wishing to resolve the version of the package should
  query it directly with
  importlib_metadata.version('importlib-metadata').

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

diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb
rename to meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
index de0fc78368..325a41c22e 100644
--- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb
+++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
@@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
 
 inherit pypi setuptools3
 
-SRC_URI = "https://files.pythonhosted.org/packages/e2/ae/0b037584024c1557e537d25482c306cf6327b5a09b6c4b893579292c1c38/importlib_metadata-1.7.0.tar.gz"
+SRC_URI = "https://files.pythonhosted.org/packages/56/1f/74c3e29389d34feea2d62ba3de1169efea2566eb22e9546d379756860525/importlib_metadata-2.0.0.tar.gz"
 S = "${WORKDIR}/importlib_metadata-${PV}"
-SRC_URI[md5sum] = "4505ea85600cca1e693a4f8f5dd27ba8"
-SRC_URI[sha256sum] = "90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83"
+SRC_URI[md5sum] = "3dd91821c930a3c3633e99a7025aa9c2"
+SRC_URI[sha256sum] = "77a540690e24b0305878c37ffd421785a6f7e53c8b5720d211b211de8d0e95da"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
  2020-09-23  7:58 ` [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7 Leon Anavi
  2020-09-23  7:58 ` [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:45   ` [oe] " Trevor Gamblin
  2020-09-23  7:58 ` [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.16.1:

- Fix unpickling, now it is using the APP_REGISTRY as expected.

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

diff --git a/meta-python/recipes-devtools/python/python3-pint_0.16.bb b/meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pint_0.16.bb
rename to meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
index 7775d733a7..d96659592a 100644
--- a/meta-python/recipes-devtools/python/python3-pint_0.16.bb
+++ b/meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
@@ -10,8 +10,8 @@ PYPI_PACKAGE := "Pint"
 
 inherit pypi ptest setuptools3
 
-SRC_URI[md5sum] = "ec78e4e42512b93f80b9093416ad7417"
-SRC_URI[sha256sum] = "e437420e65fa72a2805f4036f986669c48d54944eeb0e47c8ba16f98cbdcd599"
+SRC_URI[md5sum] = "d4a7bbdf505dee964eb1e5e6e7f80c34"
+SRC_URI[sha256sum] = "d43a2e9ae003164978b60fdf8cd920d8581e1a5991df8dded29b00f4850ec83a"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-09-23  7:58 ` [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:46   ` [oe] " Trevor Gamblin
  2020-09-23  7:58 ` [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5 Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2.0:

- Mutate the passed ZipFile object type instead of making a copy.
  Prevents issues when both the local copy and the caller's copy
  attempt to close the same file handle.
- Path._next now honors subclasses.
- Path.is_file() now returns False for non-existent names.

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

diff --git a/meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb b/meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb
rename to meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
index a29e2981f2..59d71500d5 100644
--- a/meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
 
-SRC_URI[md5sum] = "199da7385f080ec45da6c1942e2b5996"
-SRC_URI[sha256sum] = "c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"
+SRC_URI[md5sum] = "321a0dfa1080d58e5de0800a26565452"
+SRC_URI[sha256sum] = "b52f22895f4cfce194bc8172f3819ee8de7540aa6d873535a8668b730b8b411f"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-09-23  7:58 ` [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:46   ` [oe] " Trevor Gamblin
  2020-09-23  7:58 ` [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17 Leon Anavi
  2020-09-24 19:45 ` [oe] [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.5:

- Fixed issue where relative url links in images didn't work.
- Added ``use_zip64`` as a constructor option.
- Added check, and warning, for worksheet tables with no data row.
  Either with or without a header row.
- Add a warning when the string length in
  :func:`write_rich_string()` exceeds Excel's limit.

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

diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb
rename to meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
index 61a9c69b51..b4b0e2eb2e 100644
--- a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb
+++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
@@ -8,7 +8,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "XlsxWriter"
 
-SRC_URI[md5sum] = "7ea11261cbd5c763d106eea64471cf2f"
-SRC_URI[sha256sum] = "d804881beb944c4fd73deed0ef2666b84437f30d72bdc1b3a6f0230458facbfd"
+SRC_URI[md5sum] = "0b65976905bf3841bc6cae3f8c47295b"
+SRC_URI[sha256sum] = "de54547f3aa1a611453e32a8ae46380edb5556e823c6803f8673b4b770e50b3b"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-09-23  7:58 ` [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5 Leon Anavi
@ 2020-09-23  7:58 ` Leon Anavi
  2020-09-24 19:46   ` [oe] " Trevor Gamblin
  2020-09-24 19:45 ` [oe] [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-09-23  7:58 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.4.17:

- Provide support for PEP 567 ContextVars
- Provide a feature flag indicating whether we handle context vars
- Switch contextvars when switching greenlets

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

diff --git a/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb b/meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
index 4556d499fa..744265e1fa 100644
--- a/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
+++ b/meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
@@ -3,7 +3,7 @@ LICENSE = "MIT & PSF"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
                     file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
 
-SRC_URI[md5sum] = "9aebea08f7beb6b87143d0588578c984"
-SRC_URI[sha256sum] = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c"
+SRC_URI[md5sum] = "d964c95c2d2f0f02f36c75e158d8e3dc"
+SRC_URI[sha256sum] = "41d8835c69a78de718e466dd0e6bfd4b46125f21a67c3ff6d76d8d8059868d6b"
 
 inherit pypi distutils3
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1
  2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-09-23  7:58 ` [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17 Leon Anavi
@ 2020-09-24 19:45 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 1.5.1:
>
> - Exceptions that occur in callbacks are no longer suppressed by
>    default. They can optionally be suppressed by setting
>    `client.suppress_exceptions = True`.
> - Fix PUBREL remaining length of > 2 not being accepted for MQTT
>    v5 message flows.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-paho-mqtt_1.5.0.bb => python3-paho-mqtt_1.5.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-paho-mqtt_1.5.0.bb => python3-paho-mqtt_1.5.1.bb} (80%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
> similarity index 80%
> rename from meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb
> rename to meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
> index 8bf80e601a..d93bc884ee 100644
> --- a/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-paho-mqtt_1.5.1.bb
> @@ -8,8 +8,8 @@ SRCNAME = "paho-mqtt"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "45e80d9b8066a8d0ba1ecfffe271bd3d"
> -SRC_URI[sha256sum] = "e3d286198baaea195c8b3bc221941d25a3ab0e1507fc1779bdb7473806394be4"
> +SRC_URI[md5sum] = "32f93c0ed92c7439f7a715ed258fd35d"
> +SRC_URI[sha256sum] = "9feb068e822be7b3a116324e01fb6028eb1d66412bf98595ae72698965cb1cae"
>   
>   DEPENDS += "${PYTHON_PN}-pytest-runner-native"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7
  2020-09-23  7:58 ` [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7 Leon Anavi
@ 2020-09-24 19:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 0.17.7:
>
> - Internal: Change data category for transaction envelopes.
> - Fix a bug under Celery 4.2+ that may have caused disjoint
>    traces or missing transactions.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-sentry-sdk_0.17.6.bb => python3-sentry-sdk_0.17.7.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.17.6.bb => python3-sentry-sdk_0.17.7.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.bb
> index 5f566a8264..27f68fcb21 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.6.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.17.7.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] = "f48cccd128b10a9a4d19db89d1a74a58"
> -SRC_URI[sha256sum] = "1a086486ff9da15791f294f6e9915eb3747d161ef64dee2d038a4d0b4a369b24"
> +SRC_URI[md5sum] = "eda3a8d9aae8459ef6efe540293a9ca8"
> +SRC_URI[sha256sum] = "a698993f3abbe06e88e8a3c8b61c8a79c12f62e503f1a23eda30c3921f0525a9"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0
  2020-09-23  7:58 ` [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0 Leon Anavi
@ 2020-09-24 19:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 2.0.0:
>
> - importlib_metadata no longer presents a __version__ attribute.
>    Consumers wishing to resolve the version of the package should
>    query it directly with
>    importlib_metadata.version('importlib-metadata').
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...etadata_1.7.0.bb => python3-importlib-metadata_2.0.0.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-importlib-metadata_1.7.0.bb => python3-importlib-metadata_2.0.0.bb} (64%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb b/meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
> similarity index 64%
> rename from meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb
> rename to meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
> index de0fc78368..325a41c22e 100644
> --- a/meta-python/recipes-devtools/python/python3-importlib-metadata_1.7.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb
> @@ -5,10 +5,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI = "https://files.pythonhosted.org/packages/e2/ae/0b037584024c1557e537d25482c306cf6327b5a09b6c4b893579292c1c38/importlib_metadata-1.7.0.tar.gz"
> +SRC_URI = "https://files.pythonhosted.org/packages/56/1f/74c3e29389d34feea2d62ba3de1169efea2566eb22e9546d379756860525/importlib_metadata-2.0.0.tar.gz"
>   S = "${WORKDIR}/importlib_metadata-${PV}"
> -SRC_URI[md5sum] = "4505ea85600cca1e693a4f8f5dd27ba8"
> -SRC_URI[sha256sum] = "90bb658cdbbf6d1735b6341ce708fc7024a3e14e99ffdc5783edea9f9b077f83"
> +SRC_URI[md5sum] = "3dd91821c930a3c3633e99a7025aa9c2"
> +SRC_URI[sha256sum] = "77a540690e24b0305878c37ffd421785a6f7e53c8b5720d211b211de8d0e95da"
>   
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2"
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1
  2020-09-23  7:58 ` [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1 Leon Anavi
@ 2020-09-24 19:45   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:45 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 0.16.1:
>
> - Fix unpickling, now it is using the APP_REGISTRY as expected.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-pint_0.16.bb => python3-pint_0.16.1.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pint_0.16.bb => python3-pint_0.16.1.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pint_0.16.bb b/meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-pint_0.16.bb
> rename to meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
> index 7775d733a7..d96659592a 100644
> --- a/meta-python/recipes-devtools/python/python3-pint_0.16.bb
> +++ b/meta-python/recipes-devtools/python/python3-pint_0.16.1.bb
> @@ -10,8 +10,8 @@ PYPI_PACKAGE := "Pint"
>   
>   inherit pypi ptest setuptools3
>   
> -SRC_URI[md5sum] = "ec78e4e42512b93f80b9093416ad7417"
> -SRC_URI[sha256sum] = "e437420e65fa72a2805f4036f986669c48d54944eeb0e47c8ba16f98cbdcd599"
> +SRC_URI[md5sum] = "d4a7bbdf505dee964eb1e5e6e7f80c34"
> +SRC_URI[sha256sum] = "d43a2e9ae003164978b60fdf8cd920d8581e1a5991df8dded29b00f4850ec83a"
>   
>   DEPENDS += "python3-setuptools-scm-native"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0
  2020-09-23  7:58 ` [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0 Leon Anavi
@ 2020-09-24 19:46   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:46 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 3.2.0:
>
> - Mutate the passed ZipFile object type instead of making a copy.
>    Prevents issues when both the local copy and the caller's copy
>    attempt to close the same file handle.
> - Path._next now honors subclasses.
> - Path.is_file() now returns False for non-existent names.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-zipp_3.1.0.bb => python3-zipp_3.2.0.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-zipp_3.1.0.bb => python3-zipp_3.2.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb b/meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
> index a29e2981f2..59d71500d5 100644
> --- a/meta-python/recipes-devtools/python/python3-zipp_3.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-zipp_3.2.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
>   
> -SRC_URI[md5sum] = "199da7385f080ec45da6c1942e2b5996"
> -SRC_URI[sha256sum] = "c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96"
> +SRC_URI[md5sum] = "321a0dfa1080d58e5de0800a26565452"
> +SRC_URI[sha256sum] = "b52f22895f4cfce194bc8172f3819ee8de7540aa6d873535a8668b730b8b411f"
>   
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5
  2020-09-23  7:58 ` [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5 Leon Anavi
@ 2020-09-24 19:46   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:46 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 1.3.5:
>
> - Fixed issue where relative url links in images didn't work.
> - Added ``use_zip64`` as a constructor option.
> - Added check, and warning, for worksheet tables with no data row.
>    Either with or without a header row.
> - Add a warning when the string length in
>    :func:`write_rich_string()` exceeds Excel's limit.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-xlsxwriter_1.3.4.bb => python3-xlsxwriter_1.3.5.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-xlsxwriter_1.3.4.bb => python3-xlsxwriter_1.3.5.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb
> rename to meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
> index 61a9c69b51..b4b0e2eb2e 100644
> --- a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.5.bb
> @@ -8,7 +8,7 @@ inherit pypi setuptools3
>   
>   PYPI_PACKAGE = "XlsxWriter"
>   
> -SRC_URI[md5sum] = "7ea11261cbd5c763d106eea64471cf2f"
> -SRC_URI[sha256sum] = "d804881beb944c4fd73deed0ef2666b84437f30d72bdc1b3a6f0230458facbfd"
> +SRC_URI[md5sum] = "0b65976905bf3841bc6cae3f8c47295b"
> +SRC_URI[sha256sum] = "de54547f3aa1a611453e32a8ae46380edb5556e823c6803f8673b4b770e50b3b"
>   
>   BBCLASSEXTEND = "native nativesdk"
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17
  2020-09-23  7:58 ` [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17 Leon Anavi
@ 2020-09-24 19:46   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-09-24 19:46 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 9/23/20 3:58 AM, Leon Anavi wrote:
> Upgrade to release 0.4.17:
>
> - Provide support for PEP 567 ContextVars
> - Provide a feature flag indicating whether we handle context vars
> - Switch contextvars when switching greenlets
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-greenlet_0.4.16.bb => python3-greenlet_0.4.17.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-greenlet_0.4.16.bb => python3-greenlet_0.4.17.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb b/meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
> rename to meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
> index 4556d499fa..744265e1fa 100644
> --- a/meta-python/recipes-devtools/python/python3-greenlet_0.4.16.bb
> +++ b/meta-python/recipes-devtools/python/python3-greenlet_0.4.17.bb
> @@ -3,7 +3,7 @@ LICENSE = "MIT & PSF"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
>                       file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
>   
> -SRC_URI[md5sum] = "9aebea08f7beb6b87143d0588578c984"
> -SRC_URI[sha256sum] = "6e06eac722676797e8fce4adb8ad3dc57a1bb3adfb0dd3fdf8306c055a38456c"
> +SRC_URI[md5sum] = "d964c95c2d2f0f02f36c75e158d8e3dc"
> +SRC_URI[sha256sum] = "41d8835c69a78de718e466dd0e6bfd4b46125f21a67c3ff6d76d8d8059868d6b"
>   
>   inherit pypi distutils3
>
> 
>

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

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

end of thread, other threads:[~2020-09-24 19:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-23  7:58 [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1 Leon Anavi
2020-09-23  7:58 ` [meta-python][PATCH 2/7] python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7 Leon Anavi
2020-09-24 19:45   ` [oe] " Trevor Gamblin
2020-09-23  7:58 ` [meta-python][PATCH 3/7] python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0 Leon Anavi
2020-09-24 19:45   ` [oe] " Trevor Gamblin
2020-09-23  7:58 ` [meta-python][PATCH 4/7] python3-pint: Upgrade 0.16 -> 0.16.1 Leon Anavi
2020-09-24 19:45   ` [oe] " Trevor Gamblin
2020-09-23  7:58 ` [meta-python][PATCH 5/7] python3-zipp: Upgrade 3.1.0 -> 3.2.0 Leon Anavi
2020-09-24 19:46   ` [oe] " Trevor Gamblin
2020-09-23  7:58 ` [meta-python][PATCH 6/7] python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5 Leon Anavi
2020-09-24 19:46   ` [oe] " Trevor Gamblin
2020-09-23  7:58 ` [meta-python][PATCH 7/7] python3-greenlet: Upgrade 0.4.16 -> 0.4.17 Leon Anavi
2020-09-24 19:46   ` [oe] " Trevor Gamblin
2020-09-24 19:45 ` [oe] [meta-python][PATCH 1/7] python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.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.