All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40
@ 2021-05-11 16:52 Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 2/5] python3-cerberus: Upgrade 1.3.3 -> 1.3.4 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-11 16:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.40:

- dotnet: added optiononal bytes repr (de)serialization
- java: added optional bytes-repr (de)serialization
- added unittest for new bytes-repr form
- add parameter to serialize bytes into byte literal
  representation instead of base-64 (which remains the default)

License-Update: Use file LICENSE.

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

diff --git a/meta-python/recipes-devtools/python/python3-serpent_1.30.2.bb b/meta-python/recipes-devtools/python/python3-serpent_1.40.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-serpent_1.30.2.bb
rename to meta-python/recipes-devtools/python/python3-serpent_1.40.bb
index 64edff76ba..305222f764 100644
--- a/meta-python/recipes-devtools/python/python3-serpent_1.30.2.bb
+++ b/meta-python/recipes-devtools/python/python3-serpent_1.40.bb
@@ -1,9 +1,8 @@
 SUMMARY = "Serialization based on ast.literal_eval"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=5271c65b7cf83bd28055e592c2d14667"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d7c28f460fafe7be454fcdcac0b60263"
 
-SRC_URI[md5sum] = "cbef4f9c88f88c38195d11a0363a095f"
-SRC_URI[sha256sum] = "72753820246a7d8486e8b385353e3bbf769abfceec2e850fa527a288b084ff7a"
+SRC_URI[sha256sum] = "10b34e7f8e3207ee6fb70dcdc9bce473851ee3daf0b47c58aec1b48032ac11ce"
 
 inherit pypi ptest setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-cerberus: Upgrade 1.3.3 -> 1.3.4
  2021-05-11 16:52 [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40 Leon Anavi
@ 2021-05-11 16:52 ` Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 3/5] python3-aiohue: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-11 16:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.4:

- Reverts the unsatisfying fix for KeyError during import when
  running with python optimisation level of 2
- instead a RuntimeError is thrown when Python is running with
  optimization level 2

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-cerberus_1.3.3.bb => python3-cerberus_1.3.4.bb}  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-cerberus_1.3.3.bb => python3-cerberus_1.3.4.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-cerberus_1.3.3.bb b/meta-python/recipes-devtools/python/python3-cerberus_1.3.4.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-cerberus_1.3.3.bb
rename to meta-python/recipes-devtools/python/python3-cerberus_1.3.4.bb
index fa0bbb0aad..95934c6e42 100644
--- a/meta-python/recipes-devtools/python/python3-cerberus_1.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-cerberus_1.3.4.bb
@@ -4,8 +4,10 @@ SECTION = "devel/python"
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=48f8e9432d0dac5e0e7a18211a0bacdb"
 
+RDEPENDS_${PN} += "python3-setuptools"
+
 # The PyPI package uses a capital letter so we have to specify this explicitly
 PYPI_PACKAGE = "Cerberus"
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "eec10585c33044fb7c69650bc5b68018dac0443753337e2b07684ee0f3c83329"
+SRC_URI[sha256sum] = "d1b21b3954b2498d9a79edf16b3170a3ac1021df88d197dc2ce5928ba519237c"
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-aiohue: Upgrade 2.2.0 -> 2.3.0
  2021-05-11 16:52 [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40 Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 2/5] python3-cerberus: Upgrade 1.3.3 -> 1.3.4 Leon Anavi
@ 2021-05-11 16:52 ` Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 4/5] python3-robotframework: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.0.0 -> 1.1.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-11 16:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.0:

- Fix Hue communication protocol
- Create Dependabot config file
- Include LICENSE in the manifest

License-Update: Use file LICENSE.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python3-aiohue_2.2.0.bb  | 12 ------------
 .../recipes-devtools/python/python3-aiohue_2.3.0.bb  | 11 +++++++++++
 2 files changed, 11 insertions(+), 12 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-aiohue_2.2.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-aiohue_2.3.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-aiohue_2.2.0.bb b/meta-python/recipes-devtools/python/python3-aiohue_2.2.0.bb
deleted file mode 100644
index a2a7363f6c..0000000000
--- a/meta-python/recipes-devtools/python/python3-aiohue_2.2.0.bb
+++ /dev/null
@@ -1,12 +0,0 @@
-DESCRIPTION = "Asynchronous library to control Philips Hue"
-HOMEPAGE = "https://pypi.org/project/aiohue/"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-# No license file available but the license is specified in PKG-INFO and setup.py.
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=7145f7cdd263359b62d342a02f005515"
-
-SRC_URI[sha256sum] = "35696d04d6eb0328b7031ea3c0a3cfe5d83dfcf62f920522e4767d165c6bc529"
-
-inherit pypi setuptools3
-
-RDEPENDS_${PN} += "${PYTHON_PN}-aiohttp"
diff --git a/meta-python/recipes-devtools/python/python3-aiohue_2.3.0.bb b/meta-python/recipes-devtools/python/python3-aiohue_2.3.0.bb
new file mode 100644
index 0000000000..02f698532e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-aiohue_2.3.0.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "Asynchronous library to control Philips Hue"
+HOMEPAGE = "https://pypi.org/project/aiohue/"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=dab31a1d28183826937f4b152143a33f"
+
+SRC_URI[sha256sum] = "d36fa57747191b92e77c89c453c792f13b9af8f7ca9610bb4bb46f2636a536f6"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "${PYTHON_PN}-aiohttp"
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-robotframework: Upgrade 4.0.1 -> 4.0.2
  2021-05-11 16:52 [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40 Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 2/5] python3-cerberus: Upgrade 1.3.3 -> 1.3.4 Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 3/5] python3-aiohue: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
@ 2021-05-11 16:52 ` Leon Anavi
  2021-05-11 16:52 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.0.0 -> 1.1.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-11 16:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.0.2:

- Using Union containing generics as type hint causes an error
- Libdoc does not anymore work with resource files in PYTHONPATH
- Rebot removes sourcename attribute from <kw> in output.xml
- Run Keyword If Test Failed does not work correctly if it is not
  first keyword in teardown and test is skipped
- Argument conversion problems when type hint is ABC

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

diff --git a/meta-python/recipes-devtools/python/python3-robotframework_4.0.1.bb b/meta-python/recipes-devtools/python/python3-robotframework_4.0.2.bb
similarity index 91%
rename from meta-python/recipes-devtools/python/python3-robotframework_4.0.1.bb
rename to meta-python/recipes-devtools/python/python3-robotframework_4.0.2.bb
index 3e5d67e0a4..67ebe3ee69 100644
--- a/meta-python/recipes-devtools/python/python3-robotframework_4.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-robotframework_4.0.2.bb
@@ -13,7 +13,7 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE_EXT = "zip"
 
-SRC_URI[sha256sum] = "9fa609ceb78f67b1476edce8a7011b16bf3ab41c0fb8c211de6c99955eaf9fde"
+SRC_URI[sha256sum] = "efd39558219fddc86473d4d390aeaec60640d7a7567a15fd51c0576f20e46171"
 
 RDEPENDS_${PN} += " \
     ${PYTHON_PN}-shell \
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.0.0 -> 1.1.0
  2021-05-11 16:52 [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-05-11 16:52 ` [meta-python][PATCH 4/5] python3-robotframework: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
@ 2021-05-11 16:52 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-05-11 16:52 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.1.0:

- Fix for AWSLambda integration returns value of original handler
- Fix for RQ integration that only captures exception if RQ job
  has failed and ignore retries
- Feature that supports Tracing for the Tornado integration
- Feature that supports wild cards in ignore_logger in the Logging
  Integration
- Fix for django that deals with template span description names
  that are either lists or tuples

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-sentry-sdk_1.0.0.bb => python3-sentry-sdk_1.1.0.bb} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_1.0.0.bb => python3-sentry-sdk_1.1.0.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.0.0.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.1.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_1.0.0.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_1.1.0.bb
index 22b9f55ddf..89c659dba3 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_1.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_1.1.0.bb
@@ -5,7 +5,9 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[sha256sum] = "71de00c9711926816f750bc0f57ef2abbcb1bfbdf5378c601df7ec978f44857a"
+RDEPENDS_${PN} += "python3-urllib3"
+
+SRC_URI[sha256sum] = "c1227d38dca315ba35182373f129c3e2722e8ed999e52584e6aca7d287870739"
 
 PYPI_PACKAGE = "sentry-sdk"
 
-- 
2.17.1


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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-11 16:52 [meta-python][PATCH 1/5] python3-serpent: Upgrade 1.30.2 -> 1.40 Leon Anavi
2021-05-11 16:52 ` [meta-python][PATCH 2/5] python3-cerberus: Upgrade 1.3.3 -> 1.3.4 Leon Anavi
2021-05-11 16:52 ` [meta-python][PATCH 3/5] python3-aiohue: Upgrade 2.2.0 -> 2.3.0 Leon Anavi
2021-05-11 16:52 ` [meta-python][PATCH 4/5] python3-robotframework: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
2021-05-11 16:52 ` [meta-python][PATCH 5/5] python3-sentry-sdk: Upgrade 1.0.0 -> 1.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.