Received: by mail.netbsd.org (Postfix, from userid 605) id B788284D7F; Thu, 27 Feb 2020 14:33:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3DB4684D79 for ; Thu, 27 Feb 2020 14:33:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id E1axRWPtHwkN for ; Thu, 27 Feb 2020 14:33:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7094284D67 for ; Thu, 27 Feb 2020 14:33:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6DF82FBF4; Thu, 27 Feb 2020 14:33:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1582813982125140" MIME-Version: 1.0 Date: Thu, 27 Feb 2020 14:33:02 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200227143302.6DF82FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1582813982125140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Thu Feb 27 14:33:02 UTC 2020 Modified Files: pkgsrc/lang/py38-html-docs: Makefile PLIST distinfo pkgsrc/lang/python38: Makefile PLIST dist.mk distinfo Log Message: python38: updated to 3.8.2 Python 3.8.2 final Core and Builtins bpo-39382: Fix a use-after-free in the single inheritance path of issubclass(), when the __bases__ of an object has a single reference, and so does its first item. Patch by Yonatan Goldschmidt. bpo-39427: Document all possibilities for the -X options in the command line help section. Patch by Pablo Galindo. Library bpo-39649: Remove obsolete check for __args__ in bdb.Bdb.format_stack_entry. bpo-39681: Fix a regression where the C pickle module wouldn’t allow unpickling from a file-like object that doesn’t expose a readinto() method. bpo-39546: Fix a regression in ArgumentParser where allow_abbrev=False was ignored for long options that used a prefix character other than “-“. bpo-39432: Implement PEP-489 algorithm for non-ascii “PyInit_…” symbol names in distutils to make it export the correct init symbol also on Windows. Documentation bpo-17422: The language reference now specifies restrictions on class namespaces. Adapted from a patch by Ethan Furman. bpo-39572: Updated documentation of total flag of TypeDict. bpo-39654: In pyclbr doc, update ‘class’ to ‘module’ where appropriate and add readmodule comment. Patch by Hakan Çelik. IDLE bpo-39663: Add tests for pyparse find_good_parse_start(). To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/py38-html-docs/Makefile \ pkgsrc/lang/py38-html-docs/PLIST pkgsrc/lang/py38-html-docs/distinfo cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/python38/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/python38/PLIST \ pkgsrc/lang/python38/dist.mk cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/python38/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1582813982125140 Content-Disposition: inline Content-Length: 5913 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/py38-html-docs/Makefile diff -u pkgsrc/lang/py38-html-docs/Makefile:1.2 pkgsrc/lang/py38-html-docs/Makefile:1.3 --- pkgsrc/lang/py38-html-docs/Makefile:1.2 Sat Dec 28 22:40:35 2019 +++ pkgsrc/lang/py38-html-docs/Makefile Thu Feb 27 14:33:02 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.2 2019/12/28 22:40:35 adam Exp $ +# $NetBSD: Makefile,v 1.3 2020/02/27 14:33:02 adam Exp $ -VERS= 3.8.1 +VERS= 3.8.2 DISTNAME= python-${VERS}-docs-html PKGNAME= py38-html-docs-${VERS} CATEGORIES= lang python Index: pkgsrc/lang/py38-html-docs/PLIST diff -u pkgsrc/lang/py38-html-docs/PLIST:1.2 pkgsrc/lang/py38-html-docs/PLIST:1.3 --- pkgsrc/lang/py38-html-docs/PLIST:1.2 Sat Dec 28 22:40:35 2019 +++ pkgsrc/lang/py38-html-docs/PLIST Thu Feb 27 14:33:02 2020 @@ -1,6 +1,6 @@ -@comment $NetBSD: PLIST,v 1.2 2019/12/28 22:40:35 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2020/02/27 14:33:02 adam Exp $ share/doc/python3.8/.buildinfo -share/doc/python3.8/_downloads/d8bc32206d9a467c549e165dcdbea6e5/tzinfo_examples.py +share/doc/python3.8/_downloads/16482684b64298fd86bb24f3512047e2/tzinfo_examples.py share/doc/python3.8/_images/hashlib-blake2-tree.png share/doc/python3.8/_images/logging_flow.png share/doc/python3.8/_images/pathlib-inheritance.png Index: pkgsrc/lang/py38-html-docs/distinfo diff -u pkgsrc/lang/py38-html-docs/distinfo:1.2 pkgsrc/lang/py38-html-docs/distinfo:1.3 --- pkgsrc/lang/py38-html-docs/distinfo:1.2 Sat Dec 28 22:40:35 2019 +++ pkgsrc/lang/py38-html-docs/distinfo Thu Feb 27 14:33:02 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/12/28 22:40:35 adam Exp $ +$NetBSD: distinfo,v 1.3 2020/02/27 14:33:02 adam Exp $ -SHA1 (python-3.8.1-docs-html.tar.bz2) = f220833687d08b88a48524360c081f8d46cb611c -RMD160 (python-3.8.1-docs-html.tar.bz2) = f4c9d32c21328e973643d5cc365d82980c9c57c1 -SHA512 (python-3.8.1-docs-html.tar.bz2) = 5cfcdce2fc12824d512e59689b070541f461404ff74aa5ab980576af95449c18c9340687a405af6ea48f7f1826f85a26cd86dfbe07acdb984687bc0fdb5a8edd -Size (python-3.8.1-docs-html.tar.bz2) = 6527362 bytes +SHA1 (python-3.8.2-docs-html.tar.bz2) = b1826df3628997aea36c690df713fae25d4530f6 +RMD160 (python-3.8.2-docs-html.tar.bz2) = f2ffd7e47197f11749459cdb216f96e2281762e4 +SHA512 (python-3.8.2-docs-html.tar.bz2) = 1453770abba67b147a9a8911de3f31972beeea3b7249b1009944635e30e8b4143f1ceaee447dc9f14d85bd09bc67671b922e3e931b8e1279b46ab10ab5c91091 +Size (python-3.8.2-docs-html.tar.bz2) = 6536475 bytes Index: pkgsrc/lang/python38/Makefile diff -u pkgsrc/lang/python38/Makefile:1.5 pkgsrc/lang/python38/Makefile:1.6 --- pkgsrc/lang/python38/Makefile:1.5 Sat Jan 25 10:45:12 2020 +++ pkgsrc/lang/python38/Makefile Thu Feb 27 14:33:02 2020 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.5 2020/01/25 10:45:12 jperkin Exp $ +# $NetBSD: Makefile,v 1.6 2020/02/27 14:33:02 adam Exp $ .include "dist.mk" PKGNAME= python38-${PY_DISTVERSION} -PKGREVISION= 2 CATEGORIES= lang python MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/lang/python38/PLIST diff -u pkgsrc/lang/python38/PLIST:1.2 pkgsrc/lang/python38/PLIST:1.3 --- pkgsrc/lang/python38/PLIST:1.2 Sat Dec 28 22:36:13 2019 +++ pkgsrc/lang/python38/PLIST Thu Feb 27 14:33:02 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/12/28 22:36:13 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2020/02/27 14:33:02 adam Exp $ bin/2to3-${PY_VER_SUFFIX} bin/pydoc${PY_VER_SUFFIX} bin/python${PY_VER_SUFFIX} @@ -4144,6 +4144,9 @@ lib/python${PY_VER_SUFFIX}/test/test_imp lib/python${PY_VER_SUFFIX}/test/test_importlib/source/test_source_encoding.py lib/python${PY_VER_SUFFIX}/test/test_importlib/source/test_source_encoding.pyc lib/python${PY_VER_SUFFIX}/test/test_importlib/source/test_source_encoding.pyo +lib/python${PY_VER_SUFFIX}/test/test_importlib/stubs.py +lib/python${PY_VER_SUFFIX}/test/test_importlib/stubs.pyc +lib/python${PY_VER_SUFFIX}/test/test_importlib/stubs.pyo lib/python${PY_VER_SUFFIX}/test/test_importlib/test_abc.py lib/python${PY_VER_SUFFIX}/test/test_importlib/test_abc.pyc lib/python${PY_VER_SUFFIX}/test/test_importlib/test_abc.pyo Index: pkgsrc/lang/python38/dist.mk diff -u pkgsrc/lang/python38/dist.mk:1.2 pkgsrc/lang/python38/dist.mk:1.3 --- pkgsrc/lang/python38/dist.mk:1.2 Sat Dec 28 22:36:13 2019 +++ pkgsrc/lang/python38/dist.mk Thu Feb 27 14:33:02 2020 @@ -1,6 +1,6 @@ -# $NetBSD: dist.mk,v 1.2 2019/12/28 22:36:13 adam Exp $ +# $NetBSD: dist.mk,v 1.3 2020/02/27 14:33:02 adam Exp $ -PY_DISTVERSION= 3.8.1 +PY_DISTVERSION= 3.8.2 DISTNAME= Python-${PY_DISTVERSION} EXTRACT_SUFX= .tar.xz DISTINFO_FILE= ${.CURDIR}/../../lang/python38/distinfo Index: pkgsrc/lang/python38/distinfo diff -u pkgsrc/lang/python38/distinfo:1.4 pkgsrc/lang/python38/distinfo:1.5 --- pkgsrc/lang/python38/distinfo:1.4 Mon Jan 6 22:54:51 2020 +++ pkgsrc/lang/python38/distinfo Thu Feb 27 14:33:02 2020 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.4 2020/01/06 22:54:51 leot Exp $ +$NetBSD: distinfo,v 1.5 2020/02/27 14:33:02 adam Exp $ -SHA1 (Python-3.8.1.tar.xz) = a48fd28a037c0bcd7b7fc4d914c023f584e910ed -RMD160 (Python-3.8.1.tar.xz) = 057623eae4d7b82eb037176f8e80c87a30bd3586 -SHA512 (Python-3.8.1.tar.xz) = d41381848cc1ec8009643b71875f395a9ac2c8e12a5b1efef33caf8a9e99a337c790d4354695c85352d11b62092ae372b5af62f78724363fcbf3504ff9a6ddca -Size (Python-3.8.1.tar.xz) = 17828408 bytes +SHA1 (Python-3.8.2.tar.xz) = 5ae54baf26628a7ed74206650a31192e6d5c6f93 +RMD160 (Python-3.8.2.tar.xz) = 8a03650894857d2b7be679613646ad1fff22d98e +SHA512 (Python-3.8.2.tar.xz) = ca37ad0e7c5845f5f228566aa8ff654a8f428c7d4a5aaabff29baebb0ca3219b31ba8bb2607f89e37cf3fc564f023b8407e53a4f2c47bd99122c1cc222613e37 +Size (Python-3.8.2.tar.xz) = 17869888 bytes SHA1 (patch-Lib_ctypes_util.py) = 032cc99ebad93ddddfd89073c60424a952e3faa3 SHA1 (patch-Lib_distutils_command_install.py) = 6fc6f5d918b7581fc62cd0fe55857ee932c3a341 SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf --_----------=_1582813982125140--