All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe
@ 2022-01-12 18:35 Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-12 18:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Add asyncio-throttle: a simple, easy-to-use throttler for asyncio.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python3-asyncio-throttle_1.0.2.bb             | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
new file mode 100644
index 000000000..1f907511a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-asyncio-throttle_1.0.2.bb
@@ -0,0 +1,9 @@
+DESCRIPTION = "Simple, easy-to-use throttler for asyncio."
+HOMEPAGE = "https://github.com/hallazzang/asyncio-throttle"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c7906e56b70808e1ade6ca05e0bb48d5"
+
+SRC_URI[sha256sum] = "2675282e99d9129ecc446f917e174bc205c65e36c602aa18603b4948567fcbd4"
+
+inherit pypi setuptools3
-- 
2.30.2



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

* [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11
  2022-01-12 18:35 [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Leon Anavi
@ 2022-01-12 18:35 ` Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 3/5] python3-requests: Upgrade 2.26.0 -> 2.27.1 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-12 18:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.0.11:

- Add workaround for FOH switches
- Fix short and long flash for lights
- Fix reconnect last event id

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-aiohue_3.0.1.bb => python3-aiohue_3.0.11.bb} | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-aiohue_3.0.1.bb => python3-aiohue_3.0.11.bb} (56%)

diff --git a/meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb b/meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb
similarity index 56%
rename from meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb
rename to meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb
index 757ab96c3..47d9964b0 100644
--- a/meta-python/recipes-devtools/python/python3-aiohue_3.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohue_3.0.11.bb
@@ -4,8 +4,12 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=dab31a1d28183826937f4b152143a33f"
 
-SRC_URI[sha256sum] = "f4933b8583d093da4c2772c40c59d262892539c7053996cea5b964a2cceaa386"
+SRC_URI[sha256sum] = "31c0b90d7dc2b62f5e1a93e78b2c0d6360ef6c0a87485c217a4f394c937fce7d"
 
 inherit pypi setuptools3
 
-RDEPENDS:${PN} += "${PYTHON_PN}-aiohttp"
+RDEPENDS:${PN} += " \
+	${PYTHON_PN}-aiohttp \
+	${PYTHON_PN}-asyncio-throttle \
+	${PYTHON_PN}-profile \
+"
-- 
2.30.2



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

* [meta-python][PATCH 3/5] python3-requests: Upgrade 2.26.0 -> 2.27.1
  2022-01-12 18:35 [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11 Leon Anavi
@ 2022-01-12 18:35 ` Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 4/5] python3-natsort: Upgrade 8.0.0 -> 8.0.2 Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.4.3 -> 1.5.2 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-12 18:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.27.1:

- Fixed parsing issue that resulted in the auth component being
  dropped from proxy URLs.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-requests_2.26.0.bb => python3-requests_2.27.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-requests_2.26.0.bb => python3-requests_2.27.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb b/meta-python/recipes-devtools/python/python3-requests_2.27.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-requests_2.26.0.bb
rename to meta-python/recipes-devtools/python/python3-requests_2.27.1.bb
index 406e42a5e..af52b7caf 100644
--- a/meta-python/recipes-devtools/python/python3-requests_2.26.0.bb
+++ b/meta-python/recipes-devtools/python/python3-requests_2.27.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://python-requests.org"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
 
-SRC_URI[sha256sum] = "b8aa58f8cf793ffd8782d3d8cb19e66ef36f7aba4353eec859e74678b01b07a7"
+SRC_URI[sha256sum] = "68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 4/5] python3-natsort: Upgrade 8.0.0 -> 8.0.2
  2022-01-12 18:35 [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11 Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 3/5] python3-requests: Upgrade 2.26.0 -> 2.27.1 Leon Anavi
@ 2022-01-12 18:35 ` Leon Anavi
  2022-01-12 18:35 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.4.3 -> 1.5.2 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-12 18:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 8.0.2:

- Bug where sorting paths fail if one of the paths is '.'.
- Compose unicode characters when using locale to ensure sorting
  is correct across all locales.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-natsort_8.0.0.bb => python3-natsort_8.0.2.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-natsort_8.0.0.bb => python3-natsort_8.0.2.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb b/meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb
rename to meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb
index 7c2b7deb6..1a54fcb24 100644
--- a/meta-python/recipes-devtools/python/python3-natsort_8.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-natsort_8.0.2.bb
@@ -4,7 +4,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=58db8ac9e152dd9b700f4d39ff40a31a"
 
 PYPI_PACKAGE = "natsort"
-SRC_URI[sha256sum] = "a0a4fd71aee20a6d648da61e01180a63f7268e69983d0440bd3ad80ef1ba6981"
+SRC_URI[sha256sum] = "feb87e0ce1dc1f8f3f21e18a85216c790e746d76a5ff6889563394605f504a2b"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.4.3 -> 1.5.2
  2022-01-12 18:35 [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Leon Anavi
                   ` (2 preceding siblings ...)
  2022-01-12 18:35 ` [meta-python][PATCH 4/5] python3-natsort: Upgrade 8.0.0 -> 8.0.2 Leon Anavi
@ 2022-01-12 18:35 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-12 18:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.2:

- Record event_processor client reports
- Add a Quart integration
- Sanic v21.12 support
- Support Celery abstract tasks

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-sentry-sdk_1.4.3.bb => python3-sentry-sdk_1.5.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_1.4.3.bb => python3-sentry-sdk_1.5.2.bb} (82%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb
index c5614a381..d1ea76b8a 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.5.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
 RDEPENDS:${PN} += "python3-urllib3"
 
-SRC_URI[sha256sum] = "b9844751e40710e84a457c5bc29b21c383ccb2b63d76eeaad72f7f1c808c8828"
+SRC_URI[sha256sum] = "7bbaa32bba806ec629962f207b597e86831c7ee2c1f287c21ba7de7fea9a9c46"
 
 PYPI_PACKAGE = "sentry-sdk"
 
-- 
2.30.2



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

end of thread, other threads:[~2022-01-12 18:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-12 18:35 [meta-python][PATCH 1/5] python3-asyncio-throttle: Add recipe Leon Anavi
2022-01-12 18:35 ` [meta-python][PATCH 2/5] python3-aiohue: Upgrade 3.0.1 -> 3.0.11 Leon Anavi
2022-01-12 18:35 ` [meta-python][PATCH 3/5] python3-requests: Upgrade 2.26.0 -> 2.27.1 Leon Anavi
2022-01-12 18:35 ` [meta-python][PATCH 4/5] python3-natsort: Upgrade 8.0.0 -> 8.0.2 Leon Anavi
2022-01-12 18:35 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.4.3 -> 1.5.2 Leon Anavi

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.