From 35cf980166feffabdcca0c7046e2dc242a199249 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 24 Jul 2020 19:33:07 +0300 Subject: python3-urllib3: Upgrade 1.25.9 -> 1.25.10 Upgrade to release 1.25.10: * Added support for ``SSLKEYLOGFILE`` environment variable for logging TLS session keys with use with programs like Wireshark for decrypting captured web traffic * Fixed loading of SecureTransport libraries on macOS Big Sur due to the new dynamic linker cache * Collapse chunked request bodies data and framing into one call to ``send()`` to reduce the number of TCP packets by 2-4x * Don't insert ``None`` into ``ConnectionPool`` if the pool was empty when requesting a connection * Avoid ``hasattr`` call in ``BrotliDecoder.decompress()`` Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../python/python3-urllib3_1.25.10.bb | 23 ++++++++++++++++++++++ .../python/python3-urllib3_1.25.9.bb | 23 ---------------------- 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb delete mode 100644 meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb new file mode 100644 index 0000000000..db985a2ff4 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.10.bb @@ -0,0 +1,23 @@ +SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more" +HOMEPAGE = "https://github.com/shazow/urllib3" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e" + +SRC_URI[md5sum] = "94e3d4d472a14e788d4bd1a903fd102b" +SRC_URI[sha256sum] = "91056c15fa70756691db97756772bb1eb9678fa585d9184f24534b100dc60f4a" + +inherit pypi setuptools3 + +RDEPENDS_${PN} += "\ + ${PYTHON_PN}-certifi \ + ${PYTHON_PN}-cryptography \ + ${PYTHON_PN}-email \ + ${PYTHON_PN}-idna \ + ${PYTHON_PN}-netclient \ + ${PYTHON_PN}-pyopenssl \ + ${PYTHON_PN}-threading \ +" + +CVE_PRODUCT = "urllib3" + +BBCLASSEXTEND = "native nativesdk" diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb deleted file mode 100644 index 8cbc1f9f9d..0000000000 --- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.9.bb +++ /dev/null @@ -1,23 +0,0 @@ -SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more" -HOMEPAGE = "https://github.com/shazow/urllib3" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e" - -SRC_URI[md5sum] = "dbf9b868b90880b24b1ac278094e912e" -SRC_URI[sha256sum] = "3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527" - -inherit pypi setuptools3 - -RDEPENDS_${PN} += "\ - ${PYTHON_PN}-certifi \ - ${PYTHON_PN}-cryptography \ - ${PYTHON_PN}-email \ - ${PYTHON_PN}-idna \ - ${PYTHON_PN}-netclient \ - ${PYTHON_PN}-pyopenssl \ - ${PYTHON_PN}-threading \ -" - -CVE_PRODUCT = "urllib3" - -BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg