summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-urllib3_2.0.3.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2023-07-03 01:52:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-07-10 11:36:34 +0100
commit5d54a3855124302ea39d4832ae7516f7b06e2956 (patch)
tree1bcc63e1332074c7bbbe85044efcac1faa24cfd7 /meta/recipes-devtools/python/python3-urllib3_2.0.3.bb
parent3ef63cc384fe195c1545656c92de87d847d5111b (diff)
downloadpoky-5d54a3855124302ea39d4832ae7516f7b06e2956.tar.gz
python3-urllib3: upgrade 2.0.2 -> 2.0.3
https://github.com/urllib3/urllib3/blob/main/CHANGES.rst#203-2023-06-07 * Allowed alternative SSL libraries such as LibreSSL, while still issuing a warning as we cannot help users facing issues with implementations other than OpenSSL. (#3020) * Deprecated URLs which don't have an explicit scheme (#2950) * Fixed response decoding with Zstandard when compressed data is made of several frames. (#3008) * Fixed assert_hostname=False to correctly skip hostname check. (#3051) License-Update: Removed outdated reference to CONTRIBUTORS.txt (From OE-Core rev: 38464a98571d8c2c321b976fbf7963262531c25c) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-urllib3_2.0.3.bb')
-rw-r--r--meta/recipes-devtools/python/python3-urllib3_2.0.3.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-urllib3_2.0.3.bb b/meta/recipes-devtools/python/python3-urllib3_2.0.3.bb
new file mode 100644
index 0000000000..64b21db86d
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-urllib3_2.0.3.bb
@@ -0,0 +1,24 @@
1SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more"
2HOMEPAGE = "https://github.com/shazow/urllib3"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=52d273a3054ced561275d4d15260ecda"
5
6SRC_URI[sha256sum] = "bee28b5e56addb8226c96f7f13ac28cb4c301dd5ea8a6ca179c0b9835e032825"
7
8inherit pypi python_hatchling
9
10RDEPENDS:${PN} += "\
11 ${PYTHON_PN}-certifi \
12 ${PYTHON_PN}-cryptography \
13 ${PYTHON_PN}-email \
14 ${PYTHON_PN}-idna \
15 ${PYTHON_PN}-json \
16 ${PYTHON_PN}-netclient \
17 ${PYTHON_PN}-pyopenssl \
18 ${PYTHON_PN}-threading \
19 ${PYTHON_PN}-logging \
20"
21
22CVE_PRODUCT = "urllib3"
23
24BBCLASSEXTEND = "native nativesdk"