All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS
@ 2021-05-28 11:08 Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 2/5] python3-ecdsa: Upgrade 0.16.1 -> 0.17.0 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-28 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Extend RDEPENDS and add python3-profile to them.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python3-flask_2.0.1.bb        | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb b/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb
index 2c94f82da..6c63a388a 100644
--- a/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-flask_2.0.1.bb
@@ -14,4 +14,10 @@ inherit pypi setuptools3
 
 CLEANBROKEN = "1"
 
-RDEPENDS_${PN} = "${PYTHON_PN}-werkzeug ${PYTHON_PN}-jinja2 ${PYTHON_PN}-itsdangerous ${PYTHON_PN}-click"
+RDEPENDS_${PN} = " \
+    ${PYTHON_PN}-werkzeug \
+    ${PYTHON_PN}-jinja2 \
+    ${PYTHON_PN}-itsdangerous \
+    ${PYTHON_PN}-click \
+    ${PYTHON_PN}-profile \
+"
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-ecdsa: Upgrade 0.16.1 -> 0.17.0
  2021-05-28 11:08 [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS Leon Anavi
@ 2021-05-28 11:08 ` Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 3/5] python3-alembic: Upgrade 1.6.4 -> 1.6.5 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-28 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.17.0:

- Keys that use explicit curve parameters can now be read and
  written. Reading of explicit curves can be disabled by using
  the valid_curve_encodings keyword argument in
  VerifyingKey.from_pem(), VerifyingKey.from_der(),
  SigningKey.from_pem(), and SigningKey.from_der().
- Keys can now be written with use of explicit curve parameters,
  use curve_parameters_encoding keyword argument of
  VerifyingKey.to_pem(), VerifyingKey.to_der(),
  SigningKey.to_pem(), or SigningKey.to_der() to specify the
  format. By default named_curve will be used, unless the curve
  doesn't have an associated OID (as will be the case for an
  unsupported curve), then explicit encoding will be used.
- Allow specifying acceptable point formats when loading public
  keys (this also fixes a minor bug where python-ecdsa would
  accept raw encoding for points in PKCS#8 files). Set of accepted
  encodings is controlled by valid_encodings keyword argument in
  ECDH.load_received_public_key_bytes(),
  VerifyingKey.from_string(), VerifyingKey.from_pem(),
  VerifyingKey.from_der().
- PointJacobi and Point now inherit from AbstractPoint that
  implements the methods for parsing points. That added
  from_bytes() and to_bytes() methods to both of them.
- Curve parameters can now be read and written to PEM and DER
  files. The Curve class supports new to_der(), from_der(),
  to_pem(), and from_pem() methods.

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

diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.16.1.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.17.0.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-ecdsa_0.16.1.bb
rename to meta-python/recipes-devtools/python/python3-ecdsa_0.17.0.bb
index 819d41e86..1401f8e58 100644
--- a/meta-python/recipes-devtools/python/python3-ecdsa_0.16.1.bb
+++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.17.0.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d"
 DEPENDS += "python3-pip python3-pbr"
 
 PYPI_PACKAGE = "ecdsa"
-SRC_URI[sha256sum] = "cfc046a2ddd425adbd1a78b3c46f0d1325c657811c0f45ecc3a0a6236c1e50ff"
+SRC_URI[sha256sum] = "b9f500bb439e4153d0330610f5d26baaf18d17b8ced1bc54410d189385ea68aa"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-alembic: Upgrade 1.6.4 -> 1.6.5
  2021-05-28 11:08 [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 2/5] python3-ecdsa: Upgrade 0.16.1 -> 0.17.0 Leon Anavi
@ 2021-05-28 11:08 ` Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 4/5] python3-websockets: Upgrade 9.0.2 -> 9.1 Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 5/5] python3-pyzmq: Upgrade 22.0.3 -> 22.1.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-28 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.6.5:

- Fixed issue where dialect-specific keyword arguments within the
  DropIndex operation directive would not render in the
  autogenerated Python code. As support was improved for adding
  dialect specific arguments to directives as part of #803, in
  particular arguments such as "postgresql_concurrently" which
  apply to the actual create/drop of the index, support was needed
  for these to render even in a drop index operation.

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

diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.6.4.bb b/meta-python/recipes-devtools/python/python3-alembic_1.6.5.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-alembic_1.6.4.bb
rename to meta-python/recipes-devtools/python/python3-alembic_1.6.5.bb
index 8bb815bfa..6b58c7704 100644
--- a/meta-python/recipes-devtools/python/python3-alembic_1.6.4.bb
+++ b/meta-python/recipes-devtools/python/python3-alembic_1.6.5.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "becb572c6701c90ca249f97fc1ae231468cc9516df367a350901eeb9310a8d43"
+SRC_URI[sha256sum] = "a21fedebb3fb8f6bbbba51a11114f08c78709377051384c9c5ead5705ee93a51"
 
 PYPI_PACKAGE = "alembic"
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-websockets: Upgrade 9.0.2 -> 9.1
  2021-05-28 11:08 [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 2/5] python3-ecdsa: Upgrade 0.16.1 -> 0.17.0 Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 3/5] python3-alembic: Upgrade 1.6.4 -> 1.6.5 Leon Anavi
@ 2021-05-28 11:08 ` Leon Anavi
  2021-05-28 11:08 ` [meta-python][PATCH 5/5] python3-pyzmq: Upgrade 22.0.3 -> 22.1.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-28 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 9.1:

- Fix a security issue introduced in version 8.0:
  Version 8.0 was vulnerable to timing attacks on HTTP Basic Auth
  passwords.

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

diff --git a/meta-python/recipes-devtools/python/python3-websockets_9.0.2.bb b/meta-python/recipes-devtools/python/python3-websockets_9.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-websockets_9.0.2.bb
rename to meta-python/recipes-devtools/python/python3-websockets_9.1.bb
index cc9887a94..8802ee370 100644
--- a/meta-python/recipes-devtools/python/python3-websockets_9.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-websockets_9.1.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=78c2cc91e172ca96d6f8e4a76c739ec6"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "6550ecf06e39b7b009605d332dc58b04f3f6f8fe087d452bb2ea4712fbbdcbe6"
+SRC_URI[sha256sum] = "276d2339ebf0df4f45df453923ebd2270b87900eda5dfd4a6b0cfa15f82111c3"
 
 BBCLASSEXTEND = "native nativesdk"
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-pyzmq: Upgrade 22.0.3 -> 22.1.0
  2021-05-28 11:08 [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS Leon Anavi
                   ` (2 preceding siblings ...)
  2021-05-28 11:08 ` [meta-python][PATCH 4/5] python3-websockets: Upgrade 9.0.2 -> 9.1 Leon Anavi
@ 2021-05-28 11:08 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-28 11:08 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 22.1.0:

- asyncio: experimental support for Proactor eventloop if tornado
  6.1 is available by running a selector in a background thread.
- Windows: fix type of `socket.FD` option in win-amd64
- asyncio: Cancel timers when using HWM with async Sockets
- Windows: update bundled libzmq dll URLs for Windows.
- adopt pre-commit for formatting, linting

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

diff --git a/meta-python/recipes-devtools/python/python3-pyzmq_22.0.3.bb b/meta-python/recipes-devtools/python/python3-pyzmq_22.1.0.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-pyzmq_22.0.3.bb
rename to meta-python/recipes-devtools/python/python3-pyzmq_22.1.0.bb
index dbf8e6446..f213131da 100644
--- a/meta-python/recipes-devtools/python/python3-pyzmq_22.0.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pyzmq_22.1.0.bb
@@ -8,7 +8,7 @@ DEPENDS = "zeromq"
 FILESEXTRAPATHS_prepend := "${THISDIR}/python-pyzmq:"
 
 SRC_URI += "file://club-rpath-out.patch"
-SRC_URI[sha256sum] = "f7f63ce127980d40f3e6a5fdb87abf17ce1a7c2bd8bf2c7560e1bbce8ab1f92d"
+SRC_URI[sha256sum] = "7040d6dd85ea65703904d023d7f57fab793d7ffee9ba9e14f3b897f34ff2415d"
 
 inherit pypi pkgconfig setuptools3
 
-- 
2.17.1


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

end of thread, other threads:[~2021-05-28 11:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-28 11:08 [meta-python][PATCH 1/5] python3-flask: Extend RDEPENDS Leon Anavi
2021-05-28 11:08 ` [meta-python][PATCH 2/5] python3-ecdsa: Upgrade 0.16.1 -> 0.17.0 Leon Anavi
2021-05-28 11:08 ` [meta-python][PATCH 3/5] python3-alembic: Upgrade 1.6.4 -> 1.6.5 Leon Anavi
2021-05-28 11:08 ` [meta-python][PATCH 4/5] python3-websockets: Upgrade 9.0.2 -> 9.1 Leon Anavi
2021-05-28 11:08 ` [meta-python][PATCH 5/5] python3-pyzmq: Upgrade 22.0.3 -> 22.1.0 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.