From dd9a78ac91e1a8ebbac24b3d4f65f48ef77af9d9 Mon Sep 17 00:00:00 2001 From: Guðni Már Gilbert Date: Wed, 10 Apr 2024 22:51:18 +0000 Subject: python3-ecdsa: upgrade 0.18.0 -> 0.19.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changelog: ========== New API: ------------ to_ssh in VerifyingKey and SigningKey, supports Ed25519 keys only (Pablo Mazzini) New features: ------------ Support for twisted Brainpool curves Doc fix: ------------ Fix curve equation in glossary Documentation for signature encoding and signature decoding functions Maintenance: ------------ Dropped official support for 3.3 and 3.4 (because of problems running them in CI, not because it's actually incompatible; support for 2.6 and 2.7 is unaffected) Fixes around hypothesis parameters Officially support Python 3.11 and 3.12 Small updates to test suite to make it work with 3.11 and 3.12 and new releases of test dependencies Dropped the internal _rwlock module as it's unused Added mutation testing to CI, lots of speed-ups to the test suite to make it happen Removal of unnecessary six.b literals (Alexandre Detiste) Deprecations: ------------ int_to_string, string_to_int, and digest_integer from ecdsa.ecdsa module are now considered deprecated, they will be removed in a future release Signed-off-by: Guðni Már Gilbert Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-ecdsa_0.18.0.bb | 17 ----------------- .../recipes-devtools/python/python3-ecdsa_0.19.0.bb | 17 +++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb create mode 100644 meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb (limited to 'meta-python/recipes-devtools') diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb deleted file mode 100644 index 12dd51e799..0000000000 --- a/meta-python/recipes-devtools/python/python3-ecdsa_0.18.0.bb +++ /dev/null @@ -1,17 +0,0 @@ -SUMMARY = "ECDSA cryptographic signature library (pure python)" -SECTION = "devel/python" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d" - -PYPI_PACKAGE = "ecdsa" -SRC_URI[sha256sum] = "190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49" - -inherit pypi setuptools3 python3native - -RDEPENDS:${PN} += "python3-six python3-gmpy2" - -BBCLASSEXTEND = "native nativesdk" - -do_install:append() { - rm ${D}${PYTHON_SITEPACKAGES_DIR}/ecdsa/test_*.py -} diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb new file mode 100644 index 0000000000..5b4f7eb93f --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.19.0.bb @@ -0,0 +1,17 @@ +SUMMARY = "ECDSA cryptographic signature library (pure python)" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d" + +PYPI_PACKAGE = "ecdsa" +SRC_URI[sha256sum] = "60eaad1199659900dd0af521ed462b793bbdf867432b3948e87416ae4caf6bf8" + +inherit pypi setuptools3 python3native + +RDEPENDS:${PN} += "python3-six python3-gmpy2" + +BBCLASSEXTEND = "native nativesdk" + +do_install:append() { + rm ${D}${PYTHON_SITEPACKAGES_DIR}/ecdsa/test_*.py +} -- cgit v1.2.3-54-g00ecf