Received: by mail.netbsd.org (Postfix, from userid 605) id 6D19284E01; Wed, 20 Mar 2019 19:27:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA1E184D3A for ; Wed, 20 Mar 2019 19:27:48 +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 aHHZbFmWshmI for ; Wed, 20 Mar 2019 19:27:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DC09C84CDF for ; Wed, 20 Mar 2019 19:27:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D6EEFFB16; Wed, 20 Mar 2019 19:27:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155311006739860" MIME-Version: 1.0 Date: Wed, 20 Mar 2019 19:27:47 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/python35 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190320192747.D6EEFFB16@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. --_----------=_155311006739860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Wed Mar 20 19:27:47 UTC 2019 Modified Files: pkgsrc/lang/python35: Makefile PLIST dist.mk distinfo Log Message: python35: updated to 3.5.7 Python 3.5.7 final Security bpo-36216: Changes urlsplit() to raise ValueError when the URL contains characters that decompose under IDNA encoding (NFKC-normalization) into characters that affect how the URL is parsed. bpo-35121: Don’t send cookies of domain A without Domain attribute to domain B when domain A is a suffix match of domain B while using a cookiejar with http.cookiejar.DefaultCookiePolicy policy. Library bpo-35121: Don’t set cookie for a request when the request path is a prefix match of the cookie’s path attribute but doesn’t end with “/”. Python 3.5.7 release candidate 1 Security bpo-35746: [CVE-2019-5010] Fix a NULL pointer deref in ssl module. The cert parser did not handle CRL distribution points with empty DP or URI correctly. A malicious or buggy certificate can result into segfault. Vulnerability (TALOS-2018-0758). bpo-34791: The xml.sax and xml.dom.domreg no longer use environment variables to override parser implementations when sys.flags.ignore_environment is set by -E or -I arguments. bpo-34623: CVE-2018-14647: The C accelerated _elementtree module now initializes hash randomization salt from _Py_HashSecret instead of libexpat’s default CSPRNG. Library bpo-33329: Fix multiprocessing regression on newer glibcs bpo-33127: The ssl module now compiles with LibreSSL 2.7.1. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/python35/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/lang/python35/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/python35/dist.mk cvs rdiff -u -r1.18 -r1.19 pkgsrc/lang/python35/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155311006739860 Content-Disposition: inline Content-Length: 3264 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python35/Makefile diff -u pkgsrc/lang/python35/Makefile:1.16 pkgsrc/lang/python35/Makefile:1.17 --- pkgsrc/lang/python35/Makefile:1.16 Sat Mar 2 13:23:36 2019 +++ pkgsrc/lang/python35/Makefile Wed Mar 20 19:27:47 2019 @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.16 2019/03/02 13:23:36 adam Exp $ +# $NetBSD: Makefile,v 1.17 2019/03/20 19:27:47 adam Exp $ .include "dist.mk" PKGNAME= python35-${PY_DISTVERSION} -PKGREVISION= 1 CATEGORIES= lang python MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/lang/python35/PLIST diff -u pkgsrc/lang/python35/PLIST:1.8 pkgsrc/lang/python35/PLIST:1.9 --- pkgsrc/lang/python35/PLIST:1.8 Mon Feb 5 17:34:18 2018 +++ pkgsrc/lang/python35/PLIST Wed Mar 20 19:27:47 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2018/02/05 17:34:18 adam Exp $ +@comment $NetBSD: PLIST,v 1.9 2019/03/20 19:27:47 adam Exp $ bin/2to3-${PY_VER_SUFFIX} bin/pydoc${PY_VER_SUFFIX} bin/python${PY_VER_SUFFIX} @@ -2913,6 +2913,7 @@ lib/python${PY_VER_SUFFIX}/test/support/ lib/python${PY_VER_SUFFIX}/test/support/script_helper.py lib/python${PY_VER_SUFFIX}/test/support/script_helper.pyc lib/python${PY_VER_SUFFIX}/test/support/script_helper.pyo +lib/python${PY_VER_SUFFIX}/test/talos-2019-0758.pem lib/python${PY_VER_SUFFIX}/test/test___all__.py lib/python${PY_VER_SUFFIX}/test/test___all__.pyc lib/python${PY_VER_SUFFIX}/test/test___all__.pyo Index: pkgsrc/lang/python35/dist.mk diff -u pkgsrc/lang/python35/dist.mk:1.7 pkgsrc/lang/python35/dist.mk:1.8 --- pkgsrc/lang/python35/dist.mk:1.7 Tue Aug 7 08:44:02 2018 +++ pkgsrc/lang/python35/dist.mk Wed Mar 20 19:27:47 2019 @@ -1,6 +1,6 @@ -# $NetBSD: dist.mk,v 1.7 2018/08/07 08:44:02 adam Exp $ +# $NetBSD: dist.mk,v 1.8 2019/03/20 19:27:47 adam Exp $ -PY_DISTVERSION= 3.5.6 +PY_DISTVERSION= 3.5.7 DISTNAME= Python-${PY_DISTVERSION} EXTRACT_SUFX= .tar.xz DISTINFO_FILE= ${.CURDIR}/../../lang/python35/distinfo Index: pkgsrc/lang/python35/distinfo diff -u pkgsrc/lang/python35/distinfo:1.18 pkgsrc/lang/python35/distinfo:1.19 --- pkgsrc/lang/python35/distinfo:1.18 Sat Mar 2 13:23:36 2019 +++ pkgsrc/lang/python35/distinfo Wed Mar 20 19:27:47 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.18 2019/03/02 13:23:36 adam Exp $ +$NetBSD: distinfo,v 1.19 2019/03/20 19:27:47 adam Exp $ -SHA1 (Python-3.5.6.tar.xz) = 05548da58ec75a7af316c4a4cb8fc667ac6ac8f9 -RMD160 (Python-3.5.6.tar.xz) = 5a02cb3664ad98d1767c79dfdd88a850b866241f -SHA512 (Python-3.5.6.tar.xz) = 1ccf287dbe8594eb577c1197c19d882fbe235c72f4c01cda23258f2add8a93e639b41ebaf556508b867cbe1b4c1fc4e1cf457d70b98cf7a1502013660a7e0ac1 -Size (Python-3.5.6.tar.xz) = 15412832 bytes +SHA1 (Python-3.5.7.tar.xz) = 743044e357e96ed8e49d709b502f1a9b815be763 +RMD160 (Python-3.5.7.tar.xz) = 782c63473dc5a4fb181409dcc2af9595d1aab92c +SHA512 (Python-3.5.7.tar.xz) = 83f57451e1d7082bf19e4e49a0902e9257e381836d9a04154a6b276135fa49e5c96b6869eed9ec4475e06b76556c1ae89f5cca111b762eb8b2dee6f65373e0f4 +Size (Python-3.5.7.tar.xz) = 15324736 bytes SHA1 (patch-Lib_ctypes_util.py) = 23985965e248eaefd84e21f12b070d5f5e6107c2 SHA1 (patch-Lib_distutils_command_install.py) = 9b44f339f65f029b7f17dbc654739a7ae3c12780 SHA1 (patch-Lib_distutils_unixccompiler.py) = 7d0b70a64b79ee6084c41d8fbb01c8e8e4553419 --_----------=_155311006739860--