python36 py36-html-docs: updated to 3.6.12
Python 3.6.12 final Security bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (CVE-2020-15523). bpo-41004: CVE-2020-14422: The __hash__() methods of ipaddress.IPv4Interface and ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and 128 respectively. This resulted in always causing hash collisions. The fix uses hash() to generate hash values for the tuple of (address, mask length, network address). bpo-39603: Prevent http header injection by rejecting control characters in http.client.putrequest(…). Library bpo-41288: Unpickling invalid NEWOBJ_EX opcode with the C implementation raises now UnpicklingError instead of crashing. bpo-39017: Avoid infinite loop when reading specially crafted TAR files using the tarfile module (CVE-2019-20907).
This commit is contained in:
parent
d1fdc3eccb
commit
591c1cf496
5 changed files with 16 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
||||||
# $NetBSD: Makefile,v 1.12 2020/06/30 05:59:40 adam Exp $
|
# $NetBSD: Makefile,v 1.13 2020/08/19 07:07:46 adam Exp $
|
||||||
|
|
||||||
VERS= 3.6.11
|
VERS= 3.6.12
|
||||||
DISTNAME= python-${VERS}-docs-html
|
DISTNAME= python-${VERS}-docs-html
|
||||||
PKGNAME= py36-html-docs-${VERS}
|
PKGNAME= py36-html-docs-${VERS}
|
||||||
CATEGORIES= lang python
|
CATEGORIES= lang python
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
$NetBSD: distinfo,v 1.11 2020/06/30 05:59:40 adam Exp $
|
$NetBSD: distinfo,v 1.12 2020/08/19 07:07:46 adam Exp $
|
||||||
|
|
||||||
SHA1 (python-3.6.11-docs-html.tar.bz2) = e284002008807bcf495d2ebf4334fa140eaa9ff8
|
SHA1 (python-3.6.12-docs-html.tar.bz2) = f53ff5c52fe856e11801eff49d763ad969c16a9a
|
||||||
RMD160 (python-3.6.11-docs-html.tar.bz2) = 6af5ea87e9e365a7f8947e855122fac78c3a912d
|
RMD160 (python-3.6.12-docs-html.tar.bz2) = 1d23dd2d1886f50acbf1069d40a9191831ab8a75
|
||||||
SHA512 (python-3.6.11-docs-html.tar.bz2) = e98745e0f27c466f93d1d0a8883d9285c56c7b7a27915bc2fcc71f44cb10feebcaa5d3e07b8fce478cf64f11b0863182a1df25307ee383bcf0db0b6cd518035d
|
SHA512 (python-3.6.12-docs-html.tar.bz2) = da28da84f5e8f889f328fafb4d17beb6cfc52c5703bcf5080cfbaea552f414d6f0a682aaacb2f04fa32e9453a1bdaae8ff108c38a4486170bd0edf1efacafdf7
|
||||||
Size (python-3.6.11-docs-html.tar.bz2) = 6012332 bytes
|
Size (python-3.6.12-docs-html.tar.bz2) = 6013089 bytes
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@comment $NetBSD: PLIST,v 1.15 2019/07/03 20:10:41 adam Exp $
|
@comment $NetBSD: PLIST,v 1.16 2020/08/19 07:07:46 adam Exp $
|
||||||
bin/2to3-${PY_VER_SUFFIX}
|
bin/2to3-${PY_VER_SUFFIX}
|
||||||
bin/pydoc${PY_VER_SUFFIX}
|
bin/pydoc${PY_VER_SUFFIX}
|
||||||
bin/python${PY_VER_SUFFIX}
|
bin/python${PY_VER_SUFFIX}
|
||||||
|
@ -2995,6 +2995,7 @@ lib/python${PY_VER_SUFFIX}/test/randv3.pck
|
||||||
lib/python${PY_VER_SUFFIX}/test/re_tests.py
|
lib/python${PY_VER_SUFFIX}/test/re_tests.py
|
||||||
lib/python${PY_VER_SUFFIX}/test/re_tests.pyc
|
lib/python${PY_VER_SUFFIX}/test/re_tests.pyc
|
||||||
lib/python${PY_VER_SUFFIX}/test/re_tests.pyo
|
lib/python${PY_VER_SUFFIX}/test/re_tests.pyo
|
||||||
|
lib/python${PY_VER_SUFFIX}/test/recursion.tar
|
||||||
lib/python${PY_VER_SUFFIX}/test/regrtest.py
|
lib/python${PY_VER_SUFFIX}/test/regrtest.py
|
||||||
lib/python${PY_VER_SUFFIX}/test/regrtest.pyc
|
lib/python${PY_VER_SUFFIX}/test/regrtest.pyc
|
||||||
lib/python${PY_VER_SUFFIX}/test/regrtest.pyo
|
lib/python${PY_VER_SUFFIX}/test/regrtest.pyo
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# $NetBSD: dist.mk,v 1.12 2020/06/30 05:59:40 adam Exp $
|
# $NetBSD: dist.mk,v 1.13 2020/08/19 07:07:46 adam Exp $
|
||||||
|
|
||||||
PY_DISTVERSION= 3.6.11
|
PY_DISTVERSION= 3.6.12
|
||||||
DISTNAME= Python-${PY_DISTVERSION}
|
DISTNAME= Python-${PY_DISTVERSION}
|
||||||
EXTRACT_SUFX= .tar.xz
|
EXTRACT_SUFX= .tar.xz
|
||||||
DISTINFO_FILE= ${.CURDIR}/../../lang/python36/distinfo
|
DISTINFO_FILE= ${.CURDIR}/../../lang/python36/distinfo
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
$NetBSD: distinfo,v 1.32 2020/08/15 12:35:57 schmonz Exp $
|
$NetBSD: distinfo,v 1.33 2020/08/19 07:07:46 adam Exp $
|
||||||
|
|
||||||
SHA1 (Python-3.6.11.tar.xz) = 0840e6b726446fccaef483dad84cce8fdc683077
|
SHA1 (Python-3.6.12.tar.xz) = e6a28b1ab47f079a659e24a40e4c416f52828682
|
||||||
RMD160 (Python-3.6.11.tar.xz) = d1577bbfb4fb6b9c47389383e2b5ff9abb7db9e3
|
RMD160 (Python-3.6.12.tar.xz) = ae27e8221f07520aa97ed706c7f50cce7d63b182
|
||||||
SHA512 (Python-3.6.11.tar.xz) = c76969a6602e095641ba5fd0999a47cf0187eb26559ba9a6e80fe401b8928f6cd9eabd963f615f7c667e48f56603f2508d2b5692c83ea8da1e21292131fb11d6
|
SHA512 (Python-3.6.12.tar.xz) = 1462801f3f6626a853097d34ccdca9838c4c5bd81ecc3abc751003f5f2f8d36eecdaa4130ef4218de351c5586093c11669639a34492668fbc5a2a4a241f4a070
|
||||||
Size (Python-3.6.11.tar.xz) = 17213036 bytes
|
Size (Python-3.6.12.tar.xz) = 17202980 bytes
|
||||||
SHA1 (patch-Lib_ctypes_util.py) = 3b7aecb2879cce70c76bd4bc60f2ec577a5bed61
|
SHA1 (patch-Lib_ctypes_util.py) = 3b7aecb2879cce70c76bd4bc60f2ec577a5bed61
|
||||||
SHA1 (patch-Lib_distutils_command_install.py) = 29204f34296f36ab2b21c745f915ba73caf2b71c
|
SHA1 (patch-Lib_distutils_command_install.py) = 29204f34296f36ab2b21c745f915ba73caf2b71c
|
||||||
SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf
|
SHA1 (patch-Lib_distutils_sysconfig.py) = 6822eafb4dfded86d7f7353831816aeb8119e6cf
|
||||||
|
|
Loading…
Reference in a new issue