From 5f4733b892edb63af94e098f8a6c12a8cca7fb7d Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 7 Jul 2025 17:06:37 +0800 Subject: python3-aiosignal: upgrade 1.3.2 -> 1.4.0 Changelog: =============== - Added decorator functionality to Signal as a convenient way to add a callback - Improved type safety by allowing callback parameters to be type checked (typing-extensions is now required for Python <3.13). Parameters for a Signal callback should now be defined like Signal[int, str] - Removed the sphinxcontrib-asyncio documentation dependency. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-aiosignal_1.3.2.bb | 14 -------------- .../recipes-devtools/python/python3-aiosignal_1.4.0.bb | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-aiosignal_1.3.2.bb create mode 100644 meta-python/recipes-devtools/python/python3-aiosignal_1.4.0.bb (limited to 'meta-python/recipes-devtools') diff --git a/meta-python/recipes-devtools/python/python3-aiosignal_1.3.2.bb b/meta-python/recipes-devtools/python/python3-aiosignal_1.3.2.bb deleted file mode 100644 index 33320770ab..0000000000 --- a/meta-python/recipes-devtools/python/python3-aiosignal_1.3.2.bb +++ /dev/null @@ -1,14 +0,0 @@ -SUMMARY = "A list of registered asynchronous callbacks" -HOMEPAGE = "https://github.com/aio-libs/aiosignal" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=cf056e8e7a0a5477451af18b7b5aa98c" - -SRC_URI[sha256sum] = "a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54" - -inherit pypi python_setuptools_build_meta - -BBCLASSEXTEND = "native nativesdk" - -RDEPENDS:${PN} = "\ - python3-frozenlist \ -" diff --git a/meta-python/recipes-devtools/python/python3-aiosignal_1.4.0.bb b/meta-python/recipes-devtools/python/python3-aiosignal_1.4.0.bb new file mode 100644 index 0000000000..ddbdcddc68 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-aiosignal_1.4.0.bb @@ -0,0 +1,14 @@ +SUMMARY = "A list of registered asynchronous callbacks" +HOMEPAGE = "https://github.com/aio-libs/aiosignal" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=cf056e8e7a0a5477451af18b7b5aa98c" + +SRC_URI[sha256sum] = "f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7" + +inherit pypi python_setuptools_build_meta + +BBCLASSEXTEND = "native nativesdk" + +RDEPENDS:${PN} = "\ + python3-frozenlist \ +" -- cgit v1.2.3-54-g00ecf