pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Mar 20 15:41:01 UTC 2024

Modified Files:
        pkgsrc/lang/py39-html-docs: Makefile PLIST distinfo
        pkgsrc/lang/python39: Makefile dist.mk distinfo

Log Message:
python39 py39-html-docs: updated to 3.9.19

Python 3.9.19

Security

gh-115398: Allow controlling Expat >=2.6.0 reparse deferral (CVE-2023-52425) by adding five new methods:

xml.etree.ElementTree.XMLParser.flush()
xml.etree.ElementTree.XMLPullParser.flush()
xml.parsers.expat.xmlparser.GetReparseDeferralEnabled()
xml.parsers.expat.xmlparser.SetReparseDeferralEnabled()
xml.sax.expatreader.ExpatParser.flush()
gh-115399: Update bundled libexpat to 2.6.0
gh-113659: Skip .pth files with names starting with a dot or hidden file attribute.

Core and Builtins

gh-102388: Fix a bug where iso2022_jp_3 and iso2022_jp_2004 codecs read out of bounds

Library

gh-115197: urllib.request no longer resolves the hostname before checking it against the system’s proxy bypass list on macOS and Windows.
gh-115133: Fix tests for XMLPullParser with Expat 2.6.0.
gh-81194: Fix a crash in socket.if_indextoname() with specific value (UINT_MAX). Fix an integer overflow in socket.if_indextoname() on 64-bit non-Windows platforms.
gh-109858: Protect zipfile from “quoted-overlap” zipbomb. It now raises BadZipFile when try to read an entry that overlaps with other entry or central directory.
gh-107077: Seems that in some conditions, OpenSSL will return SSL_ERROR_SYSCALL instead of SSL_ERROR_SSL when a certification verification has failed, but the error parameters will still contain 
ERR_LIB_SSL and SSL_R_CERTIFICATE_VERIFY_FAILED. We are now detecting this situation and raising the appropiate ssl.SSLCertVerificationError. Patch by Pablo Galindo
gh-91133: Fix a bug in tempfile.TemporaryDirectory cleanup, which now no longer dereferences symlinks when working around file system permission errors.

Documentation

gh-115399: Document CVE-2023-52425 of Expat <2.6.0 under “XML vulnerabilities”.

Windows

gh-111239: Update Windows builds to use zlib v1.3.1.
gh-109991: Windows builds now use OpenSSL 1.1.1w. Note that OpenSSL 1.1 has reached its end of life and no future fixes will be made, and this version of Python is no longer receiving maintenance 
fixes and will not be updated to OpenSSL 3.0.

Tools/Demos

gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.11 and multissltests to use 1.1.1w and 3.0.11.


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 pkgsrc/lang/py39-html-docs/Makefile
cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/py39-html-docs/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/py39-html-docs/distinfo
cvs rdiff -u -r1.35 -r1.36 pkgsrc/lang/python39/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/lang/python39/dist.mk
cvs rdiff -u -r1.39 -r1.40 pkgsrc/lang/python39/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/py39-html-docs/Makefile
diff -u pkgsrc/lang/py39-html-docs/Makefile:1.19 pkgsrc/lang/py39-html-docs/Makefile:1.20
--- pkgsrc/lang/py39-html-docs/Makefile:1.19    Fri Aug 25 08:26:13 2023
+++ pkgsrc/lang/py39-html-docs/Makefile Wed Mar 20 15:41:01 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2023/08/25 08:26:13 adam Exp $
+# $NetBSD: Makefile,v 1.20 2024/03/20 15:41:01 adam Exp $
 
-VERS=          3.9.18
+VERS=          3.9.19
 DISTNAME=      python-${VERS}-docs-html
 PKGNAME=       py39-html-docs-${VERS}
 CATEGORIES=    lang python

Index: pkgsrc/lang/py39-html-docs/PLIST
diff -u pkgsrc/lang/py39-html-docs/PLIST:1.6 pkgsrc/lang/py39-html-docs/PLIST:1.7
--- pkgsrc/lang/py39-html-docs/PLIST:1.6        Wed Jun  7 13:25:53 2023
+++ pkgsrc/lang/py39-html-docs/PLIST    Wed Mar 20 15:41:01 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2023/06/07 13:25:53 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2024/03/20 15:41:01 adam Exp $
 share/doc/python3.9/.buildinfo
 share/doc/python3.9/_downloads/6b45dc135219d1404be49d606589a11d/tzinfo_examples.py
 share/doc/python3.9/_images/hashlib-blake2-tree.png
@@ -496,6 +496,7 @@ share/doc/python3.9/_sources/whatsnew/3.
 share/doc/python3.9/_sources/whatsnew/changelog.rst.txt
 share/doc/python3.9/_sources/whatsnew/index.rst.txt
 share/doc/python3.9/_static/basic.css
+share/doc/python3.9/_static/caret-down.svg
 share/doc/python3.9/_static/changelog_search.js
 share/doc/python3.9/_static/classic.css
 share/doc/python3.9/_static/copybutton.js
@@ -513,11 +514,9 @@ share/doc/python3.9/_static/plus.png
 share/doc/python3.9/_static/py.png
 share/doc/python3.9/_static/py.svg
 share/doc/python3.9/_static/pydoctheme.css
-share/doc/python3.9/_static/pydoctheme_dark.css
 share/doc/python3.9/_static/pygments.css
 share/doc/python3.9/_static/searchtools.js
 share/doc/python3.9/_static/sidebar.js
-share/doc/python3.9/_static/themetoggle.js
 share/doc/python3.9/_static/underscore-1.3.1.js
 share/doc/python3.9/_static/underscore.js
 share/doc/python3.9/about.html

Index: pkgsrc/lang/py39-html-docs/distinfo
diff -u pkgsrc/lang/py39-html-docs/distinfo:1.21 pkgsrc/lang/py39-html-docs/distinfo:1.22
--- pkgsrc/lang/py39-html-docs/distinfo:1.21    Fri Aug 25 08:26:13 2023
+++ pkgsrc/lang/py39-html-docs/distinfo Wed Mar 20 15:41:01 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2023/08/25 08:26:13 adam Exp $
+$NetBSD: distinfo,v 1.22 2024/03/20 15:41:01 adam Exp $
 
-BLAKE2s (python-3.9.18-docs-html.tar.bz2) = 18210cea27873678c947c0ffea8e33b77c32618b961c667730e2c452f43f6298
-SHA512 (python-3.9.18-docs-html.tar.bz2) = d123266c72db81703c386dc0d436243a36996c39cde382939cebea31ff7a0c049470daa27efc34a3a0d55310bc6fe489ba01572ca961f67ba7a098038f2cb5af
-Size (python-3.9.18-docs-html.tar.bz2) = 7023072 bytes
+BLAKE2s (python-3.9.19-docs-html.tar.bz2) = 85908303141fc909c345709cfb4c77d5b62d2c75930c4bcdd6189ec6ed383d2f
+SHA512 (python-3.9.19-docs-html.tar.bz2) = 5812613745d169caba35b234aeed77edcc1cd26d95a1cd32b0692bb7e27dc2acd9b94a45f349485856b9e4388b73f7b05d07b8626960f7127ba110f7094c5a48
+Size (python-3.9.19-docs-html.tar.bz2) = 6983522 bytes

Index: pkgsrc/lang/python39/Makefile
diff -u pkgsrc/lang/python39/Makefile:1.35 pkgsrc/lang/python39/Makefile:1.36
--- pkgsrc/lang/python39/Makefile:1.35  Tue Jan 23 06:51:44 2024
+++ pkgsrc/lang/python39/Makefile       Wed Mar 20 15:41:01 2024
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.35 2024/01/23 06:51:44 adam Exp $
+# $NetBSD: Makefile,v 1.36 2024/03/20 15:41:01 adam Exp $
 
 .include "dist.mk"
 
 PKGNAME=       python39-${PY_DISTVERSION}
-PKGREVISION=   4
 CATEGORIES=    lang python
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/lang/python39/dist.mk
diff -u pkgsrc/lang/python39/dist.mk:1.19 pkgsrc/lang/python39/dist.mk:1.20
--- pkgsrc/lang/python39/dist.mk:1.19   Fri Aug 25 08:26:13 2023
+++ pkgsrc/lang/python39/dist.mk        Wed Mar 20 15:41:01 2024
@@ -1,6 +1,6 @@
-# $NetBSD: dist.mk,v 1.19 2023/08/25 08:26:13 adam Exp $
+# $NetBSD: dist.mk,v 1.20 2024/03/20 15:41:01 adam Exp $
 
-PY_DISTVERSION=        3.9.18
+PY_DISTVERSION=        3.9.19
 DISTNAME=      Python-${PY_DISTVERSION}
 EXTRACT_SUFX=  .tar.xz
 DISTINFO_FILE= ${.CURDIR}/../../lang/python39/distinfo

Index: pkgsrc/lang/python39/distinfo
diff -u pkgsrc/lang/python39/distinfo:1.39 pkgsrc/lang/python39/distinfo:1.40
--- pkgsrc/lang/python39/distinfo:1.39  Tue Jan 23 06:51:44 2024
+++ pkgsrc/lang/python39/distinfo       Wed Mar 20 15:41:01 2024
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.39 2024/01/23 06:51:44 adam Exp $
+$NetBSD: distinfo,v 1.40 2024/03/20 15:41:01 adam Exp $
 
-BLAKE2s (Python-3.9.18.tar.xz) = 429256eb52e94427ae86302633ce8b01ba42d37c44c59e89fa0ae09b721da63f
-SHA512 (Python-3.9.18.tar.xz) = aab155aca757d298394eddb91ff9a8f239665bd46feb495c6b6f735bbcb7489c05c858cc4cd08f1575c24f293b33492d763e9a140d92f0b2b0cc81a165a677c7
-Size (Python-3.9.18.tar.xz) = 19673928 bytes
+BLAKE2s (Python-3.9.19.tar.xz) = 36b5e8e8ac4081264e20f6f8d7b017226c0a2bf93b454a49b6a811bb33b3b6c0
+SHA512 (Python-3.9.19.tar.xz) = 5577830c734e63a70bbc62cd33d263b9aa87c4381b49cb694c3559067c4c682a55506b65ec5514a8e0a5abf6294dc728e909385d449ae1c388e62f83cea9bb89
+Size (Python-3.9.19.tar.xz) = 19682840 bytes
 SHA1 (patch-Lib_ctypes_util.py) = 032cc99ebad93ddddfd89073c60424a952e3faa3
 SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf
 SHA1 (patch-Lib_distutils_unixccompiler.py) = 2e65a8dd5dd3fe25957206c062106fa7a6fc4e69



Home | Main Index | Thread Index | Old Index