All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] Recipe upgrades for 2025-08-07
@ 2025-08-07 18:44 tim.orling
  2025-08-07 18:44 ` [PATCH 1/4] python3-maturin: upgrade 1.9.1 -> 1.9.3 tim.orling
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: tim.orling @ 2025-08-07 18:44 UTC (permalink / raw)
  To: openembedded-core

From: Tim Orling <tim.orling@konsulko.com>

Mostly AUH upgrades, but update to latest for python3-cryptography*

The following changes since commit b36799ea7d62dd2ff695c1e995ac96e6cd1e973d:

  runqemu: fix special characters bug (2025-08-07 12:11:16 +0100)

are available in the Git repository at:

  https://git.yoctoproject.org/poky-contrib timo/upgrades-20250807
  https://git.yoctoproject.org/poky-contrib/log/?h=timo/upgrades-20250807

Tim Orling (4):
  python3-maturin: upgrade 1.9.1 -> 1.9.3
  python3-cryptography{-vectors}: upgrade to  45.0.6
  python3-certifi: upgrade 2025.7.9 -> 2025.8.3
  python3-zipp: upgrade 3.21.0 -> 3.23.0

 ...ython3-certifi_2025.7.9.bb => python3-certifi_2025.8.3.bb} | 2 +-
 meta/recipes-devtools/python/python3-cryptography-common.inc  | 2 +-
 meta/recipes-devtools/python/python3-cryptography-vectors.bb  | 2 +-
 meta/recipes-devtools/python/python3-cryptography.bb          | 2 +-
 .../0001-pyproject.toml-remove-benchmark-disable-option.patch | 4 ++--
 .../{python3-maturin_1.9.1.bb => python3-maturin_1.9.3.bb}    | 2 +-
 .../python/{python3-zipp_3.21.0.bb => python3-zipp_3.23.0.bb} | 4 ++--
 7 files changed, 9 insertions(+), 9 deletions(-)
 rename meta/recipes-devtools/python/{python3-certifi_2025.7.9.bb => python3-certifi_2025.8.3.bb} (87%)
 rename meta/recipes-devtools/python/{python3-maturin_1.9.1.bb => python3-maturin_1.9.3.bb} (92%)
 rename meta/recipes-devtools/python/{python3-zipp_3.21.0.bb => python3-zipp_3.23.0.bb} (67%)

-- 
2.43.0



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

* [PATCH 1/4] python3-maturin: upgrade 1.9.1 -> 1.9.3
  2025-08-07 18:44 [PATCH 0/4] Recipe upgrades for 2025-08-07 tim.orling
@ 2025-08-07 18:44 ` tim.orling
  2025-08-07 18:44 ` [PATCH 2/4] python3-cryptography{-vectors}: upgrade to 45.0.6 tim.orling
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: tim.orling @ 2025-08-07 18:44 UTC (permalink / raw)
  To: openembedded-core

From: Tim Orling <tim.orling@konsulko.com>

[1.9.3]
* Fix adding project.license-files to source distributions.
* Fix relative Readme rewrite of the root crate in source distributions.

[1.9.2]
* Fix PEP 639 implementation, use License-Expression over License.

https://www.maturin.rs/changelog.html#193
https://www.maturin.rs/changelog.html#192

Comparing changes:
bitbake -c update_crates python3-maturin

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 .../{python3-maturin_1.9.1.bb => python3-maturin_1.9.3.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-maturin_1.9.1.bb => python3-maturin_1.9.3.bb} (92%)

diff --git a/meta/recipes-devtools/python/python3-maturin_1.9.1.bb b/meta/recipes-devtools/python/python3-maturin_1.9.3.bb
similarity index 92%
rename from meta/recipes-devtools/python/python3-maturin_1.9.1.bb
rename to meta/recipes-devtools/python/python3-maturin_1.9.3.bb
index ce38e931360..eca474af663 100644
--- a/meta/recipes-devtools/python/python3-maturin_1.9.1.bb
+++ b/meta/recipes-devtools/python/python3-maturin_1.9.3.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT | Apache-2.0"
 LIC_FILES_CHKSUM = "file://license-apache;md5=1836efb2eb779966696f473ee8540542 \
                     file://license-mit;md5=85fd3b67069cff784d98ebfc7d5c0797"
 
-SRC_URI[sha256sum] = "97b52fb19d20c1fdc70e4efdc05d79853a4c9c0051030c93a793cd5181dc4ccd"
+SRC_URI[sha256sum] = "267ac8d0471d1ee2320b8b2ee36f400a32cd2492d7becbd0d976bd3503c2f69b"
 
 S = "${UNPACKDIR}/maturin-${PV}"
 
-- 
2.43.0



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

* [PATCH 2/4] python3-cryptography{-vectors}: upgrade to  45.0.6
  2025-08-07 18:44 [PATCH 0/4] Recipe upgrades for 2025-08-07 tim.orling
  2025-08-07 18:44 ` [PATCH 1/4] python3-maturin: upgrade 1.9.1 -> 1.9.3 tim.orling
@ 2025-08-07 18:44 ` tim.orling
  2025-08-07 18:44 ` [PATCH 3/4] python3-certifi: upgrade 2025.7.9 -> 2025.8.3 tim.orling
  2025-08-07 18:44 ` [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0 tim.orling
  3 siblings, 0 replies; 6+ messages in thread
From: tim.orling @ 2025-08-07 18:44 UTC (permalink / raw)
  To: openembedded-core

From: Tim Orling <tim.orling@konsulko.com>

* Refresh 0001-pyproject.toml-remove-benchmark-disable-option.patch

45.0.6 - 2025-08-05
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.2.

45.0.5 - 2025-07-02
* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.1.

https://cryptography.io/en/latest/changelog/#v45-0-6
https://cryptography.io/en/latest/changelog/#v45-0-5

Comparing changes:
https://github.com/pyca/cryptography/compare/45.0.4...45.0.6

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All ptests pass on qemux86-64 for core-image-ptest-python3-cryptography

 meta/recipes-devtools/python/python3-cryptography-common.inc  | 2 +-
 meta/recipes-devtools/python/python3-cryptography-vectors.bb  | 2 +-
 meta/recipes-devtools/python/python3-cryptography.bb          | 2 +-
 .../0001-pyproject.toml-remove-benchmark-disable-option.patch | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-devtools/python/python3-cryptography-common.inc b/meta/recipes-devtools/python/python3-cryptography-common.inc
index 5ce2485ed56..874f60bf834 100644
--- a/meta/recipes-devtools/python/python3-cryptography-common.inc
+++ b/meta/recipes-devtools/python/python3-cryptography-common.inc
@@ -3,4 +3,4 @@
 #
 # Additionally AUH will detect that they share this .inc file and
 # perform a lockstep upgrade for both.
-PV = "45.0.4"
+PV = "45.0.6"
diff --git a/meta/recipes-devtools/python/python3-cryptography-vectors.bb b/meta/recipes-devtools/python/python3-cryptography-vectors.bb
index 3df61315ea9..b6b0e38f2e9 100644
--- a/meta/recipes-devtools/python/python3-cryptography-vectors.bb
+++ b/meta/recipes-devtools/python/python3-cryptography-vectors.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8c3617db4fb6fae01f1d253ab91511e4 \
 # NOTE: Make sure to keep this recipe at the same version as python3-cryptography
 #       Upgrade both recipes at the same time
 require python3-cryptography-common.inc
-SRC_URI[sha256sum] = "fbb0408df8ff2d2b3dbd2928bc5b7feebfdd36fb092fa8790d5778a9b9a1f9ef"
+SRC_URI[sha256sum] = "068cee15423f3f1633ca04f12284385ac404c19366e7ccb3b680156c1aa9c573"
 
 PYPI_PACKAGE = "cryptography_vectors"
 UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
diff --git a/meta/recipes-devtools/python/python3-cryptography.bb b/meta/recipes-devtools/python/python3-cryptography.bb
index 5963064b724..c4204712f23 100644
--- a/meta/recipes-devtools/python/python3-cryptography.bb
+++ b/meta/recipes-devtools/python/python3-cryptography.bb
@@ -11,7 +11,7 @@ LDSHARED += "-pthread"
 # NOTE: Make sure to keep this recipe at the same version as python3-cryptography-vectors
 #       Upgrade both recipes at the same time
 require python3-cryptography-common.inc
-SRC_URI[sha256sum] = "7405ade85c83c37682c8fe65554759800a4a8c54b2d96e0f8ad114d31b808d57"
+SRC_URI[sha256sum] = "5c966c732cf6e4a276ce83b6e4c729edda2df6929083a952cc7da973c539c719"
 
 SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \
             file://check-memfree.py \
diff --git a/meta/recipes-devtools/python/python3-cryptography/0001-pyproject.toml-remove-benchmark-disable-option.patch b/meta/recipes-devtools/python/python3-cryptography/0001-pyproject.toml-remove-benchmark-disable-option.patch
index e2387172084..16681e80a87 100644
--- a/meta/recipes-devtools/python/python3-cryptography/0001-pyproject.toml-remove-benchmark-disable-option.patch
+++ b/meta/recipes-devtools/python/python3-cryptography/0001-pyproject.toml-remove-benchmark-disable-option.patch
@@ -1,4 +1,4 @@
-From baa3c56b87ceaea331811a0a4642991cbb12e6ea Mon Sep 17 00:00:00 2001
+From b033cd32813a104fb216135cdca7da7180912e56 Mon Sep 17 00:00:00 2001
 From: Mingli Yu <mingli.yu@windriver.com>
 Date: Tue, 17 May 2022 17:22:48 +0800
 Subject: [PATCH] pyproject.toml: remove --benchmark-disable option
@@ -26,7 +26,7 @@ Signed-off-by: Tim Orling <tim.orling@konsulko.com>
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/pyproject.toml b/pyproject.toml
-index d9ef704..878b720 100644
+index 4746201..df98351 100644
 --- a/pyproject.toml
 +++ b/pyproject.toml
 @@ -129,7 +129,7 @@ exclude = [
-- 
2.43.0



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

* [PATCH 3/4] python3-certifi: upgrade 2025.7.9 -> 2025.8.3
  2025-08-07 18:44 [PATCH 0/4] Recipe upgrades for 2025-08-07 tim.orling
  2025-08-07 18:44 ` [PATCH 1/4] python3-maturin: upgrade 1.9.1 -> 1.9.3 tim.orling
  2025-08-07 18:44 ` [PATCH 2/4] python3-cryptography{-vectors}: upgrade to 45.0.6 tim.orling
@ 2025-08-07 18:44 ` tim.orling
  2025-08-07 18:44 ` [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0 tim.orling
  3 siblings, 0 replies; 6+ messages in thread
From: tim.orling @ 2025-08-07 18:44 UTC (permalink / raw)
  To: openembedded-core

From: Tim Orling <tim.orling@konsulko.com>

2025.08.03:
https://github.com/certifi/python-certifi/pull/362
https://github.com/certifi/python-certifi/pull/362/commits/4c1bfa53ef5aad0339d9ae7bbcefc32872a95f6d

2025.07.14:
https://github.com/certifi/python-certifi/pull/359
https://github.com/certifi/python-certifi/pull/359/commits/1c50d2bb6a10403300c0f1c17cff1b6277cb88d1

Comparing changes:
https://github.com/certifi/python-certifi/compare/2025.07.09...2025.08.03

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 ...{python3-certifi_2025.7.9.bb => python3-certifi_2025.8.3.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-certifi_2025.7.9.bb => python3-certifi_2025.8.3.bb} (87%)

diff --git a/meta/recipes-devtools/python/python3-certifi_2025.7.9.bb b/meta/recipes-devtools/python/python3-certifi_2025.8.3.bb
similarity index 87%
rename from meta/recipes-devtools/python/python3-certifi_2025.7.9.bb
rename to meta/recipes-devtools/python/python3-certifi_2025.8.3.bb
index 709346486aa..d3e842b4bd6 100644
--- a/meta/recipes-devtools/python/python3-certifi_2025.7.9.bb
+++ b/meta/recipes-devtools/python/python3-certifi_2025.8.3.bb
@@ -7,7 +7,7 @@ HOMEPAGE = " http://certifi.io/"
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=11618cb6a975948679286b1211bd573c"
 
-SRC_URI[sha256sum] = "c1d2ec05395148ee10cf672ffc28cd37ea0ab0d99f9cc74c43e588cbd111b079"
+SRC_URI[sha256sum] = "e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407"
 
 inherit pypi python_setuptools_build_meta
 
-- 
2.43.0



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

* [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0
  2025-08-07 18:44 [PATCH 0/4] Recipe upgrades for 2025-08-07 tim.orling
                   ` (2 preceding siblings ...)
  2025-08-07 18:44 ` [PATCH 3/4] python3-certifi: upgrade 2025.7.9 -> 2025.8.3 tim.orling
@ 2025-08-07 18:44 ` tim.orling
  2025-08-08 11:00   ` [OE-core] " Mathieu Dubois-Briand
  3 siblings, 1 reply; 6+ messages in thread
From: tim.orling @ 2025-08-07 18:44 UTC (permalink / raw)
  To: openembedded-core

From: Tim Orling <tim.orling@konsulko.com>

License-Update: add copyright year; update to match SPDX license text

v3.23.0
* Features
  - Add a compatibility shim for Python 3.13 and earlier. (#145)

v3.22.0
* Features
  - Backported simplified tests from python/cpython#123424. (#142)
* Bugfixes
  - Fixed .name, .stem, and other basename-based properties on Windows when
    working with a zipfile on disk. (#133)

https://github.com/jaraco/zipp/blob/main/NEWS.rst#v3230
https://github.com/jaraco/zipp/blob/main/NEWS.rst#v3220

Comparing changes:
https://github.com/jaraco/zipp/compare/v3.21.0...v3.23.0

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 .../python/{python3-zipp_3.21.0.bb => python3-zipp_3.23.0.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-zipp_3.21.0.bb => python3-zipp_3.23.0.bb} (67%)

diff --git a/meta/recipes-devtools/python/python3-zipp_3.21.0.bb b/meta/recipes-devtools/python/python3-zipp_3.23.0.bb
similarity index 67%
rename from meta/recipes-devtools/python/python3-zipp_3.21.0.bb
rename to meta/recipes-devtools/python/python3-zipp_3.23.0.bb
index 135a1ae5337..bf9ae7df133 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.21.0.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.23.0.bb
@@ -1,9 +1,9 @@
 SUMMARY = "Backport of pathlib-compatible object wrapper for zip files"
 HOMEPAGE = "https://github.com/jaraco/zipp"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=141643e11c48898150daa83802dbc65f"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1aeae65f25a15b1e46d4381f2f094e0a"
 
-SRC_URI[sha256sum] = "2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4"
+SRC_URI[sha256sum] = "a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.43.0



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

* Re: [OE-core] [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0
  2025-08-07 18:44 ` [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0 tim.orling
@ 2025-08-08 11:00   ` Mathieu Dubois-Briand
  0 siblings, 0 replies; 6+ messages in thread
From: Mathieu Dubois-Briand @ 2025-08-08 11:00 UTC (permalink / raw)
  To: tim.orling, openembedded-core

On Thu Aug 7, 2025 at 8:44 PM CEST, Tim Orling via lists.openembedded.org wrote:
> From: Tim Orling <tim.orling@konsulko.com>
>
> License-Update: add copyright year; update to match SPDX license text
>
> v3.23.0
> * Features
>   - Add a compatibility shim for Python 3.13 and earlier. (#145)
>
> v3.22.0
> * Features
>   - Backported simplified tests from python/cpython#123424. (#142)
> * Bugfixes
>   - Fixed .name, .stem, and other basename-based properties on Windows when
>     working with a zipfile on disk. (#133)
>
> https://github.com/jaraco/zipp/blob/main/NEWS.rst#v3230
> https://github.com/jaraco/zipp/blob/main/NEWS.rst#v3220
>
> Comparing changes:
> https://github.com/jaraco/zipp/compare/v3.21.0...v3.23.0
>
> Signed-off-by: Tim Orling <tim.orling@konsulko.com>
> ---

Hi Tim,

Thanks for the patch.

It looks like this is breaking in several builds:

ERROR: lib32-python3-zipp-3.23.0-r0 do_compile: Execution of '/srv/pokybuild/yocto-worker/qemux86-world/build/build/tmp/work/x86-pokymllib32-linux/lib32-python3-zipp/3.23.0/temp/run.do_compile.3832240' failed with exit code 1
...
| ERROR Missing dependencies:
| 	coherent.licensed

https://autobuilder.yoctoproject.org/valkyrie/#/builders/59/builds/2177
https://autobuilder.yoctoproject.org/valkyrie/#/builders/111/builds/924
https://autobuilder.yoctoproject.org/valkyrie/#/builders/3/builds/2236
https://autobuilder.yoctoproject.org/valkyrie/#/builders/6/builds/2206
https://autobuilder.yoctoproject.org/valkyrie/#/builders/17/builds/2027
https://autobuilder.yoctoproject.org/valkyrie/#/builders/25/builds/2184
https://autobuilder.yoctoproject.org/valkyrie/#/builders/37/builds/2250

Can you have a look at this failure please?

Best regards,
Mathieu

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



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

end of thread, other threads:[~2025-08-08 11:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-07 18:44 [PATCH 0/4] Recipe upgrades for 2025-08-07 tim.orling
2025-08-07 18:44 ` [PATCH 1/4] python3-maturin: upgrade 1.9.1 -> 1.9.3 tim.orling
2025-08-07 18:44 ` [PATCH 2/4] python3-cryptography{-vectors}: upgrade to 45.0.6 tim.orling
2025-08-07 18:44 ` [PATCH 3/4] python3-certifi: upgrade 2025.7.9 -> 2025.8.3 tim.orling
2025-08-07 18:44 ` [PATCH 4/4] python3-zipp: upgrade 3.21.0 -> 3.23.0 tim.orling
2025-08-08 11:00   ` [OE-core] " Mathieu Dubois-Briand

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.