summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2024-11-29 16:46:19 +0200
committerKhem Raj <raj.khem@gmail.com>2024-11-29 07:56:57 -0800
commit18081cc0d9d2b9ce78cd2b895f8634b85ef3e93e (patch)
treea7bc37266e744edc094d62a1bf498bf27fdc40a2 /meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb
parent72524d02e78993b1ad8cea28f38f5bb6f60c1310 (diff)
downloadmeta-openembedded-18081cc0d9d2b9ce78cd2b895f8634b85ef3e93e.tar.gz
python3-service-identity: Upgrade 21.1.0 -> 24.2.0
Upgrade to version 24.2.0: - Python 3.13 is now officially supported. - pyOpenSSL's identity extraction has been reimplemented using cryptography's primitives instead of deprecated pyOpenSSL APIs. As a result, the oldest supported pyOpenSSL version is now 17.1.0 License-Update: Fix a typo contributors vs contibutors Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb36
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb b/meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb
new file mode 100644
index 0000000000..2cae3b08c8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-service-identity_24.2.0.bb
@@ -0,0 +1,36 @@
1DESCRIPTION = "The tools for verifying whether a certificate is valid for the intended purposes."
2HOMEPAGE = "https://pypi.org/project/service-identity"
3
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=76edce6a3fa1b82b0bf2b6ce174c19e2"
6
7SRC_URI[sha256sum] = "b8683ba13f0d39c6cd5d625d2c5f65421d6d707b013b375c355751557cbe8e09"
8
9inherit pypi python_hatchling ptest
10
11PYPI_PACKAGE = "service_identity"
12
13SRC_URI += " \
14 file://run-ptest \
15"
16
17DEPENDS += "python3-hatch-vcs-native python3-hatch-fancy-pypi-readme-native"
18
19RDEPENDS:${PN} += " \
20 python3-attr \
21 python3-cryptography \
22 python3-pyasn1-modules \
23"
24
25RDEPENDS:${PN}-ptest += " \
26 python3-attrs \
27 python3-pytest \
28 python3-six \
29 python3-unittest-automake-output \
30 python3-pyopenssl \
31"
32
33do_install_ptest() {
34 install -d ${D}${PTEST_PATH}/tests
35 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
36}