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 Apr  9 14:47:59 UTC 2025

Modified Files:
        pkgsrc/lang/py311-html-docs: Makefile distinfo
        pkgsrc/lang/python311: Makefile dist.mk distinfo

Log Message:
python311 py311-html-docs: updated to 3.11.12

Python 3.11.12 final

Security

gh-131809: Update bundled libexpat to 2.7.1
gh-131261: Upgrade to libexpat 2.7.0
gh-105704: When using urllib.parse.urlsplit() and urllib.parse.urlparse() host parsing would not reject domain names containing square brackets ([ and ]). Square brackets are only valid for IPv6 and 
IPvFuture hosts according to RFC 3986 Section 3.2.2.
gh-121284: Fix bug in the folding of rfc2047 encoded-words when flattening an email message using a modern email policy. Previously when an encoded-word was too long for a line, it would be decoded, 
split across lines, and re-encoded. But commas and other special characters in the original text could be left unencoded and unquoted. This could theoretically be used to spoof header lines using a 
carefully constructed encoded-word if the resulting rendered email was transmitted or re-parsed.
gh-80222: Fix bug in the folding of quoted strings when flattening an email message using a modern email policy. Previously when a quoted string was folded so that it spanned more than one line, the 
surrounding quotes and internal escapes would be omitted. This could theoretically be used to spoof header lines using a carefully constructed quoted string if the resulting rendered email was 
transmitted or re-parsed.
gh-119511: Fix a potential denial of service in the imaplib module. When connecting to a malicious server, it could cause an arbitrary amount of memory to be allocated. On many systems this is 
harmless as unused virtual memory is only a mapping, but if this hit a virtual address size limit it could lead to a MemoryError or other process crash. On unusual systems or builds where all 
allocated memory is touched and backed by actual ram or storage it could’ve consumed resources doing so until similarly crashing.

Library

gh-127257: In ssl, system call failures that OpenSSL reports using ERR_LIB_SYS are now raised as OSError.

Documentation

gh-121277: Writers of CPython’s documentation can now use next as the version for the versionchanged, versionadded, deprecated directives.

C API

gh-106883: Disable GC during the _PyThread_CurrentFrames() and _PyThread_CurrentExceptions() calls to avoid the interpreter to deadlock.


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/py311-html-docs/Makefile \
    pkgsrc/lang/py311-html-docs/distinfo
cvs rdiff -u -r1.39 -r1.40 pkgsrc/lang/python311/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/python311/dist.mk
cvs rdiff -u -r1.20 -r1.21 pkgsrc/lang/python311/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/py311-html-docs/Makefile
diff -u pkgsrc/lang/py311-html-docs/Makefile:1.12 pkgsrc/lang/py311-html-docs/Makefile:1.13
--- pkgsrc/lang/py311-html-docs/Makefile:1.12   Thu Dec  5 07:51:12 2024
+++ pkgsrc/lang/py311-html-docs/Makefile        Wed Apr  9 14:47:58 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2024/12/05 07:51:12 adam Exp $
+# $NetBSD: Makefile,v 1.13 2025/04/09 14:47:58 adam Exp $
 
-VERS=          3.11.11
+VERS=          3.11.12
 DISTNAME=      python-${VERS}-docs-html
 PKGNAME=       py311-html-docs-${VERS}
 CATEGORIES=    lang python
Index: pkgsrc/lang/py311-html-docs/distinfo
diff -u pkgsrc/lang/py311-html-docs/distinfo:1.12 pkgsrc/lang/py311-html-docs/distinfo:1.13
--- pkgsrc/lang/py311-html-docs/distinfo:1.12   Thu Dec  5 07:51:12 2024
+++ pkgsrc/lang/py311-html-docs/distinfo        Wed Apr  9 14:47:58 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.12 2024/12/05 07:51:12 adam Exp $
+$NetBSD: distinfo,v 1.13 2025/04/09 14:47:58 adam Exp $
 
-BLAKE2s (python-3.11.11-docs-html.tar.bz2) = 0abf1f01914ae7f026fe100f664e64e09c28c88a379f7cdaafea734a7198f8f2
-SHA512 (python-3.11.11-docs-html.tar.bz2) = 34f355c999a93d60226f269b51bb3499e248b316dc80413a42089a29bfbaacdc830647f68e4c0758a729424a61486564a843524905d5f0fbfdf914f346c3c474
-Size (python-3.11.11-docs-html.tar.bz2) = 7983082 bytes
+BLAKE2s (python-3.11.12-docs-html.tar.bz2) = e4d371d7585f92d971e70953e16f330f8742ccf3b1d3a9977236c44c79fa53a4
+SHA512 (python-3.11.12-docs-html.tar.bz2) = 62b17a25ca10ebbd00943169d32e1ba94fb6f0515a60600408a2de441b43770efe3238a6ba97db844400e298083f021312c2f88752481e61c6825acc1ca31283
+Size (python-3.11.12-docs-html.tar.bz2) = 7994774 bytes

Index: pkgsrc/lang/python311/Makefile
diff -u pkgsrc/lang/python311/Makefile:1.39 pkgsrc/lang/python311/Makefile:1.40
--- pkgsrc/lang/python311/Makefile:1.39 Mon Mar 31 13:30:25 2025
+++ pkgsrc/lang/python311/Makefile      Wed Apr  9 14:47:58 2025
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.39 2025/03/31 13:30:25 jakllsch Exp $
+# $NetBSD: Makefile,v 1.40 2025/04/09 14:47:58 adam Exp $
 
-PKGREVISION=   2
 .include "dist.mk"
 
 PKGNAME=       python311-${PY_DISTVERSION}

Index: pkgsrc/lang/python311/dist.mk
diff -u pkgsrc/lang/python311/dist.mk:1.12 pkgsrc/lang/python311/dist.mk:1.13
--- pkgsrc/lang/python311/dist.mk:1.12  Thu Dec  5 07:51:12 2024
+++ pkgsrc/lang/python311/dist.mk       Wed Apr  9 14:47:58 2025
@@ -1,6 +1,6 @@
-# $NetBSD: dist.mk,v 1.12 2024/12/05 07:51:12 adam Exp $
+# $NetBSD: dist.mk,v 1.13 2025/04/09 14:47:58 adam Exp $
 
-PY_DISTVERSION=        3.11.11
+PY_DISTVERSION=        3.11.12
 DISTNAME=      Python-${PY_DISTVERSION}
 EXTRACT_SUFX=  .tar.xz
 DISTINFO_FILE= ${.CURDIR}/../../lang/python311/distinfo

Index: pkgsrc/lang/python311/distinfo
diff -u pkgsrc/lang/python311/distinfo:1.20 pkgsrc/lang/python311/distinfo:1.21
--- pkgsrc/lang/python311/distinfo:1.20 Thu Dec  5 07:51:12 2024
+++ pkgsrc/lang/python311/distinfo      Wed Apr  9 14:47:58 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.20 2024/12/05 07:51:12 adam Exp $
+$NetBSD: distinfo,v 1.21 2025/04/09 14:47:58 adam Exp $
 
-BLAKE2s (Python-3.11.11.tar.xz) = 56e657d2eba57bf42c43074db646b04c678346f44518638143250165f2afed6c
-SHA512 (Python-3.11.11.tar.xz) = 3ff90f15f725fa8d06686158aaddb887a247b03ca4dc1fdfd81a8efb53373db3e8673bd0b3de30bb7669f3f07d9854e9d8a2dbcd49b18d15b8172787a53a0a9e
-Size (Python-3.11.11.tar.xz) = 20085792 bytes
+BLAKE2s (Python-3.11.12.tar.xz) = 9967e07525dbbb2b65146c5ee0174c7bf36e7a27e280f492d3c31f54e212bca2
+SHA512 (Python-3.11.12.tar.xz) = 5c95900de73cd187f5d7a89a05314ef85f4d680308d0d5fff5e6ada81f8ecf030018bef0f1a819d007e8b6d01b52e50395572c2d1a56d2c164492e13a69a9926
+Size (Python-3.11.12.tar.xz) = 20112232 bytes
 SHA1 (patch-Include_pymacro.h) = 271a891892dca1a3aaa3bedcae626a68a36cae0b
 SHA1 (patch-Lib_ctypes_util.py) = 3dec1b6b7a36e46cbfa0dfcd71c5e7fac9f60764
 SHA1 (patch-Lib_distutils_unixccompiler.py) = 8a91e8f4f86517a62408c3a10ed5eb50c4091fbf



Home | Main Index | Thread Index | Old Index