All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0
@ 2022-01-10 16:31 Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 2/5] python3-paramiko: Upgrade 2.9.1 -> 2.9.2 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-10 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi, Khem Raj

Upgrade to release 5.4.0:

- Run isort
- Remove unused imports
- Update tests for Django 3.2

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 ...diskcache_5.3.0.bb => python3-diskcache_5.4.0.bb} | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-diskcache_5.3.0.bb => python3-diskcache_5.4.0.bb} (50%)

diff --git a/meta-python/recipes-devtools/python/python3-diskcache_5.3.0.bb b/meta-python/recipes-devtools/python/python3-diskcache_5.4.0.bb
similarity index 50%
rename from meta-python/recipes-devtools/python/python3-diskcache_5.3.0.bb
rename to meta-python/recipes-devtools/python/python3-diskcache_5.4.0.bb
index 55829bd1e..84d42e572 100644
--- a/meta-python/recipes-devtools/python/python3-diskcache_5.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-diskcache_5.4.0.bb
@@ -3,10 +3,20 @@ HOMEPAGE = "http://www.grantjenks.com/docs/diskcache/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c60ef82f0f40155453f6d5f2c94b6e8e"
 
-SRC_URI[sha256sum] = "3f1fa30b29fdff26cfddcb3ee7d61376903f82c769ea2907a2b82a5bfb8abbe2"
+SRC_URI[sha256sum] = "8879eb8c9b4a2509a5e633d2008634fb2b0b35c2b36192d89655dbde02419644"
 
 PYPI_PACKAGE = "diskcache"
 
 inherit pypi setuptools3
 
+RDEPENDS:${PN} = "\
+    ${PYTHON_PN}-json \
+    ${PYTHON_PN}-pickle \
+    ${PYTHON_PN}-sqlite3 \
+    ${PYTHON_PN}-core \
+    ${PYTHON_PN}-io \
+    ${PYTHON_PN}-compression \
+    ${PYTHON_PN}-threading \
+"
+
 CLEANBROKEN = "1"
-- 
2.30.2



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

* [meta-python][PATCH 2/5] python3-paramiko: Upgrade 2.9.1 -> 2.9.2
  2022-01-10 16:31 [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0 Leon Anavi
@ 2022-01-10 16:31 ` Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 3/5] python3-pycocotools: Upgrade 2.0.2 -> 2.0.4 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-10 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.9.2:

- Enhanced log output when connecting to servers that do not
  support server-sig-algs extensions, making the new-as-of-2.9
  defaulting to SHA2 pubkey algorithms more obvious when it
  kicks in.
- Connecting to servers which support server-sig-algs but which
  have no overlap between that list and what a Paramiko client
  supports, now raise an exception instead of defaulting to
  rsa-sha2-512 (since the use of server-sig-algs allows us to
  know what the server supports).

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

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb
rename to meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb
index 8cf004aa3..0a54efde8 100644
--- a/meta-python/recipes-devtools/python/python3-paramiko_2.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-paramiko_2.9.2.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/paramiko/paramiko/"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
 
-SRC_URI[sha256sum] = "a1fdded3b55f61d23389e4fe52d9ae428960ac958d2edf50373faa5d8926edd0"
+SRC_URI[sha256sum] = "944a9e5dbdd413ab6c7951ea46b0ab40713235a9c4c5ca81cfe45c6f14fa677b"
 
 PYPI_PACKAGE = "paramiko"
 
-- 
2.30.2



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

* [meta-python][PATCH 3/5] python3-pycocotools: Upgrade 2.0.2 -> 2.0.4
  2022-01-10 16:31 [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0 Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 2/5] python3-paramiko: Upgrade 2.9.1 -> 2.9.2 Leon Anavi
@ 2022-01-10 16:31 ` Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 4/5] python3-typeguard: Upgrade 2.13.2 -> 2.13.3 Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.4.2 -> 2.4.3 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-10 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.4:

- Revamp Python build system to fix multiple build problems
- Update config.yml

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-pycocotools_2.0.2.bb => python3-pycocotools_2.0.4.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pycocotools_2.0.2.bb => python3-pycocotools_2.0.4.bb} (76%)

diff --git a/meta-python/recipes-devtools/python/python3-pycocotools_2.0.2.bb b/meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pycocotools_2.0.2.bb
rename to meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb
index d47b7b563..ec8585e61 100644
--- a/meta-python/recipes-devtools/python/python3-pycocotools_2.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-pycocotools_2.0.4.bb
@@ -5,8 +5,7 @@ LIC_FILES_CHKSUM = "file://pycocotools/coco.py;beginline=45;endline=45;md5=12cb5
 
 inherit setuptools3 pypi
 
-SRC_URI[md5sum] = "33858f23c8b99ce8116b70c32f6b6dd9"
-SRC_URI[sha256sum] = "24717a12799b4471c2e54aa210d642e6cd4028826a1d49fcc2b0e3497e041f1a"
+SRC_URI[sha256sum] = "2ab586aa389b9657b6d73c2b9a827a3681f8d00f36490c2e8ab05902e3fd9e93"
 
 DEPENDS = "python3-cython-native python3-numpy-native virtual/crypt"
 RDEPENDS:${PN} = "python3-matplotlib python3-pillow python3-profile"
-- 
2.30.2



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

* [meta-python][PATCH 4/5] python3-typeguard: Upgrade 2.13.2 -> 2.13.3
  2022-01-10 16:31 [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0 Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 2/5] python3-paramiko: Upgrade 2.9.1 -> 2.9.2 Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 3/5] python3-pycocotools: Upgrade 2.0.2 -> 2.0.4 Leon Anavi
@ 2022-01-10 16:31 ` Leon Anavi
  2022-01-10 16:31 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.4.2 -> 2.4.3 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-10 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.13.3:

- Fixed TypeError when using typeguard within exec() (where
  __module__ is None)
- Fixed TypedDict causing TypeError: TypedDict does not support
  instance and class checks on Python 3.8 with standard library
  (not typing_extensions) typed dicts

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

diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.13.2.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb
similarity index 87%
rename from meta-python/recipes-devtools/python/python3-typeguard_2.13.2.bb
rename to meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb
index b7ae4a32c..21ca43950 100644
--- a/meta-python/recipes-devtools/python/python3-typeguard_2.13.2.bb
+++ b/meta-python/recipes-devtools/python/python3-typeguard_2.13.3.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://pypi.org/project/typeguard/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f0e423eea5c91e7aa21bdb70184b3e53"
 
-SRC_URI[sha256sum] = "7e50071590ab997509aa0977609eb5cf9d73d84c1f416cb4fab78b77a9d15326"
+SRC_URI[sha256sum] = "00edaa8da3a133674796cf5ea87d9f4b4c367d77476e185e80251cc13dfbb8c4"
 
 inherit pypi setuptools3 ptest
 
-- 
2.30.2



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

* [meta-python][PATCH 5/5] python3-huey: Upgrade 2.4.2 -> 2.4.3
  2022-01-10 16:31 [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2022-01-10 16:31 ` [meta-python][PATCH 4/5] python3-typeguard: Upgrade 2.13.2 -> 2.13.3 Leon Anavi
@ 2022-01-10 16:31 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-01-10 16:31 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.3:

- Fix compatibility issue with new redis-py

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

diff --git a/meta-python/recipes-devtools/python/python3-huey_2.4.2.bb b/meta-python/recipes-devtools/python/python3-huey_2.4.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-huey_2.4.2.bb
rename to meta-python/recipes-devtools/python/python3-huey_2.4.3.bb
index 865e9ff77..f8f4062a6 100644
--- a/meta-python/recipes-devtools/python/python3-huey_2.4.2.bb
+++ b/meta-python/recipes-devtools/python/python3-huey_2.4.3.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=5cac039fcc82f01141cc170b48f315d4"
 
 PYPI_PACKAGE = "huey"
 
-SRC_URI[sha256sum] = "20683288e27e851f786b38465784c5d0e7e2b93b8791cc826898f9555a320cb4"
+SRC_URI[sha256sum] = "4fa2f6055d581778c3bcf93fc8c9ce87aecc2a345d5ff35bd955da152c02ef37"
 
 RDEPENDS:${PN} += " \
 	python3-datetime \
-- 
2.30.2



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

end of thread, other threads:[~2022-01-10 16:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-10 16:31 [meta-python][PATCH 1/5] python3-diskcache: Upgrade 5.3.0 -> 5.4.0 Leon Anavi
2022-01-10 16:31 ` [meta-python][PATCH 2/5] python3-paramiko: Upgrade 2.9.1 -> 2.9.2 Leon Anavi
2022-01-10 16:31 ` [meta-python][PATCH 3/5] python3-pycocotools: Upgrade 2.0.2 -> 2.0.4 Leon Anavi
2022-01-10 16:31 ` [meta-python][PATCH 4/5] python3-typeguard: Upgrade 2.13.2 -> 2.13.3 Leon Anavi
2022-01-10 16:31 ` [meta-python][PATCH 5/5] python3-huey: Upgrade 2.4.2 -> 2.4.3 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.