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 May 18 08:07:32 UTC 2022

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

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

Python 3.9.13

Core and Builtins

gh-92311: Fixed a bug where setting frame.f_lineno to jump over a list comprehension could misbehave or crash.
gh-92112: Fix crash triggered by an evil custom mro() on a metaclass.
gh-92036: Fix a crash in subinterpreters related to the garbage collector. When a subinterpreter is deleted, untrack all objects tracked by its GC. To prevent a crash in deallocator functions 
expecting objects to be tracked by the GC, leak a strong reference to these objects on purpose, so they are never deleted and their deallocator functions are not called. Patch by Victor Stinner.
gh-91421: Fix a potential integer overflow in _Py_DecodeUTF8Ex.
bpo-46775: Some Windows system error codes(>= 10000) are now mapped into the correct errno and may now raise a subclass of OSError. Patch by Dong-hee Na.
bpo-46962: Classes and functions that unconditionally declared their docstrings ignoring the --without-doc-strings compilation flag no longer do so.

The classes affected are pickle.PickleBuffer, testcapi.RecursingInfinitelyError, and types.GenericAlias.

The functions affected are 24 methods in ctypes.

Patch by Oleg Iarygin.
bpo-36819: Fix crashes in built-in encoders with error handlers that return position less or equal than the starting position of non-encodable characters.

Library

gh-91581: utcfromtimestamp() no longer attempts to resolve fold in the pure Python implementation, since the fold is never 1 in UTC. In addition to being slightly faster in the common case, this also 
prevents some errors when the timestamp is close to datetime.min. Patch by Paul Ganssle.
gh-92530: Fix an issue that occurred after interrupting threading.Condition.notify().
gh-92049: Forbid pickling constants re._constants.SUCCESS etc. Previously, pickling did not fail, but the result could not be unpickled.
bpo-47029: Always close the read end of the pipe used by multiprocessing.Queue after the last write of buffered data to the write end of the pipe to avoid BrokenPipeError at garbage collection and at 
multiprocessing.Queue.close() calls. Patch by Géry Ogam.
gh-91910: Add missing f prefix to f-strings in error messages from the multiprocessing and asyncio modules.
gh-91810: ElementTree method write() and function tostring() now use the text file’s encoding (“UTF-8” if not available) instead of locale encoding in XML declaration when encoding="unicode" is 
specified.
gh-91832: Add required attribute to argparse.Action repr output.
gh-91734: Fix OSS audio support on Solaris.
gh-91700: Compilation of regular expression containing a conditional expression (?(group)...) now raises an appropriate re.error if the group number refers to not defined group. Previously an 
internal RuntimeError was raised.
gh-91676: Fix unittest.IsolatedAsyncioTestCase to shutdown the per test event loop executor before returning from its run method so that a not yet stopped or garbage collected executor state does not 
persist beyond the test.
gh-90568: Parsing \N escapes of Unicode Named Character Sequences in a regular expression raises now re.error instead of TypeError.
gh-91595: Fix the comparison of character and integer inside Tools.gdb.libpython.write_repr(). Patch by Yu Liu.
gh-90622: Worker processes for concurrent.futures.ProcessPoolExecutor are no longer spawned on demand (a feature added in 3.9) when the multiprocessing context start method is "fork" as that can lead 
to deadlocks in the child processes due to a fork happening while threads are running.
gh-91575: Update case-insensitive matching in the re module to the latest Unicode version.
gh-91581: Remove an unhandled error case in the C implementation of calls to datetime.fromtimestamp with no time zone (i.e. getting a local time from an epoch timestamp). This should have no 
user-facing effect other than giving a possibly more accurate error message when called with timestamps that fall on 10000-01-01 in the local time. Patch by Paul Ganssle.
bpo-34480: Fix a bug where _markupbase raised an UnboundLocalError when an invalid keyword was found in marked section. Patch by Marek Suscak.
bpo-27929: Fix asyncio.loop.sock_connect() to only resolve names for socket.AF_INET or socket.AF_INET6 families. Resolution may not make sense for other families, like socket.AF_BLUETOOTH and 
socket.AF_UNIX.
bpo-43323: Fix errors in the email module if the charset itself contains undecodable/unencodable characters.
bpo-46787: Fix concurrent.futures.ProcessPoolExecutor exception memory leak
bpo-46415: Fix ipaddress.ip_{address,interface,network} raising TypeError instead of ValueError if given invalid tuple as address parameter.
bpo-44911: IsolatedAsyncioTestCase will no longer throw an exception while cancelling leaked tasks. Patch by Bar Harel.
bpo-44493: Add missing terminated NUL in sockaddr_un’s length

This was potentially observable when using non-abstract AF_UNIX datagram sockets to processes written in another programming language.
bpo-42627: Fix incorrect parsing of Windows registry proxy settings
bpo-36073: Raise ProgrammingError instead of segfaulting on recursive usage of cursors in sqlite3 converters. Patch by Sergey Fedoseev.

Documentation

gh-91888: Add a new gh role to the documentation to link to GitHub issues.
gh-91783: Document security issues concerning the use of the function shutil.unpack_archive()
gh-91547: Remove “Undocumented modules” page.
bpo-44347: Clarify the meaning of dirs_exist_ok, a kwarg of shutil.copytree().
bpo-38668: Update the introduction to documentation for os.path to remove warnings that became irrelevant after the implementations of PEP 383 and PEP 529.
bpo-47138: Pin Jinja to a version compatible with Sphinx version 2.4.4.
bpo-46962: All docstrings in code snippets are now wrapped into PyDoc_STR() to follow the guideline of PEP 7’s Documentation Strings paragraph. Patch by Oleg Iarygin.
bpo-26792: Improve the docstrings of runpy.run_module() and runpy.run_path(). Original patch by Andrew Brezovsky.
bpo-45790: Adjust inaccurate phrasing in Defining Extension Types: Tutorial about the ob_base field and the macros used to access its contents.
bpo-42340: Document that in some circumstances KeyboardInterrupt may cause the code to enter an inconsistent state. Provided a sample workaround to avoid it if needed.
bpo-41233: Link the errnos referenced in Doc/library/exceptions.rst to their respective section in Doc/library/errno.rst, and vice versa. Previously this was only done for EINTR and InterruptedError. 
Patch by Yan “yyyyyyyan” Orestes.
bpo-38056: Overhaul the Error Handlers documentation in codecs.
bpo-13553: Document tkinter.Tk args.

Tests

gh-91607: Fix test_concurrent_futures to test the correct multiprocessing start method context in several cases where the test logic mixed this up.
bpo-47205: Skip test for sched_getaffinity() and sched_setaffinity() error case on FreeBSD.
bpo-29890: Add tests for ipaddress.IPv4Interface and ipaddress.IPv6Interface construction with tuple arguments. Original patch and tests by louisom.

Build

bpo-47103: Windows PGInstrument builds now copy a required DLL into the output directory, making it easier to run the profile stage of a PGO build.

Windows

bpo-47194: Update zlib to v1.2.12 to resolve CVE-2018-25032.
bpo-46785: Fix race condition between os.stat() and unlinking a file on Windows, by using errors codes returned by FindFirstFileW() when appropriate in win32_xstat_impl.
bpo-40859: Update Windows build to use xz-5.2.5

Tools/Demos

gh-91583: Fix regression in the code generated by Argument Clinic for functions with the defining_class parameter.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/py39-html-docs/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/py39-html-docs/PLIST
cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/py39-html-docs/distinfo
cvs rdiff -u -r1.13 -r1.14 pkgsrc/lang/python39/dist.mk
cvs rdiff -u -r1.28 -r1.29 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.13 pkgsrc/lang/py39-html-docs/Makefile:1.14
--- pkgsrc/lang/py39-html-docs/Makefile:1.13    Fri Mar 25 17:54:37 2022
+++ pkgsrc/lang/py39-html-docs/Makefile Wed May 18 08:07:32 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2022/03/25 17:54:37 adam Exp $
+# $NetBSD: Makefile,v 1.14 2022/05/18 08:07:32 adam Exp $
 
-VERS=          3.9.12
+VERS=          3.9.13
 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.4 pkgsrc/lang/py39-html-docs/PLIST:1.5
--- pkgsrc/lang/py39-html-docs/PLIST:1.4        Sat Jan 15 16:21:26 2022
+++ pkgsrc/lang/py39-html-docs/PLIST    Wed May 18 08:07:32 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2022/01/15 16:21:26 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2022/05/18 08:07:32 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
@@ -401,7 +401,6 @@ share/doc/python3.9/_sources/library/tty
 share/doc/python3.9/_sources/library/turtle.rst.txt
 share/doc/python3.9/_sources/library/types.rst.txt
 share/doc/python3.9/_sources/library/typing.rst.txt
-share/doc/python3.9/_sources/library/undoc.rst.txt
 share/doc/python3.9/_sources/library/unicodedata.rst.txt
 share/doc/python3.9/_sources/library/unittest.mock-examples.rst.txt
 share/doc/python3.9/_sources/library/unittest.mock.rst.txt
@@ -946,7 +945,6 @@ share/doc/python3.9/library/tty.html
 share/doc/python3.9/library/turtle.html
 share/doc/python3.9/library/types.html
 share/doc/python3.9/library/typing.html
-share/doc/python3.9/library/undoc.html
 share/doc/python3.9/library/unicodedata.html
 share/doc/python3.9/library/unittest.html
 share/doc/python3.9/library/unittest.mock-examples.html

Index: pkgsrc/lang/py39-html-docs/distinfo
diff -u pkgsrc/lang/py39-html-docs/distinfo:1.15 pkgsrc/lang/py39-html-docs/distinfo:1.16
--- pkgsrc/lang/py39-html-docs/distinfo:1.15    Fri Mar 25 17:54:37 2022
+++ pkgsrc/lang/py39-html-docs/distinfo Wed May 18 08:07:32 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.15 2022/03/25 17:54:37 adam Exp $
+$NetBSD: distinfo,v 1.16 2022/05/18 08:07:32 adam Exp $
 
-BLAKE2s (python-3.9.12-docs-html.tar.bz2) = 0544e7e7463a9dee532eec37a16bf3f697edb56a8d6ea9446b30fdd573066fca
-SHA512 (python-3.9.12-docs-html.tar.bz2) = f8b05a5d8cdff47d3cfcf323c23744597e1868e878f29d983be42ea02e1239c1f387f607dc9991beb3acf110a89a03dedcd4b3309a825a0fa00b9709061a5b23
-Size (python-3.9.12-docs-html.tar.bz2) = 6954359 bytes
+BLAKE2s (python-3.9.13-docs-html.tar.bz2) = 95540b7210690eac44e65b062b657c1b88228742bfd2c7ca6075cf24b4c7cf74
+SHA512 (python-3.9.13-docs-html.tar.bz2) = 0454124bbec13c547e1b212e9f7c1a4b61055ad7c3095c0003731cd52c0f181c616d26e2972f52a15b0d25c5108de52d0a54564c5c806badda00828f47b4c39b
+Size (python-3.9.13-docs-html.tar.bz2) = 6979296 bytes

Index: pkgsrc/lang/python39/dist.mk
diff -u pkgsrc/lang/python39/dist.mk:1.13 pkgsrc/lang/python39/dist.mk:1.14
--- pkgsrc/lang/python39/dist.mk:1.13   Fri Mar 25 17:54:37 2022
+++ pkgsrc/lang/python39/dist.mk        Wed May 18 08:07:32 2022
@@ -1,6 +1,6 @@
-# $NetBSD: dist.mk,v 1.13 2022/03/25 17:54:37 adam Exp $
+# $NetBSD: dist.mk,v 1.14 2022/05/18 08:07:32 adam Exp $
 
-PY_DISTVERSION=        3.9.12
+PY_DISTVERSION=        3.9.13
 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.28 pkgsrc/lang/python39/distinfo:1.29
--- pkgsrc/lang/python39/distinfo:1.28  Fri Apr 22 14:25:34 2022
+++ pkgsrc/lang/python39/distinfo       Wed May 18 08:07:32 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.28 2022/04/22 14:25:34 sjmulder Exp $
+$NetBSD: distinfo,v 1.29 2022/05/18 08:07:32 adam Exp $
 
-BLAKE2s (Python-3.9.12.tar.xz) = 501eaf0162b3030762c2a7e20ed83294a91afbf8b491fb560c2d5517ee9ec5a8
-SHA512 (Python-3.9.12.tar.xz) = 081981901e14149748fd35228db0b3b1d96fef227ae7404f07b8bad0fda4b02649bf31c348c94aefdaf3327565d78f9489437c2c02f647b15d41376a27a23e97
-Size (Python-3.9.12.tar.xz) = 19740524 bytes
+BLAKE2s (Python-3.9.13.tar.xz) = e7774bfb171b74d6ba80e11c3c49a166832ff2fe466b37e885a250cd2a62ecf4
+SHA512 (Python-3.9.13.tar.xz) = e9664e7f908092df11236b22465d217531d6f0378e88d889108d19fe77f28f46ffb629b8733f84b41409e255367321893a2b1bd64518930d9d8cae5d1b774d23
+Size (Python-3.9.13.tar.xz) = 19754368 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