Date: Mon, 28 Dec 2015 12:42:41 +0000 (UTC) From: Bernard Spil <brnrd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404626 - in head/lang/python33: . files Message-ID: <201512281242.tBSCgf96090093@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brnrd Date: Mon Dec 28 12:42:40 2015 New Revision: 404626 URL: https://svnweb.freebsd.org/changeset/ports/404626 Log: lang/python33: Fix typo in No-SSLv3 patch - Fix typo that was introduced with the No-SSLv3 patch [1] [1] http://svnweb.freebsd.org/changeset/ports/404347 Reported by: antoine via pkg-fallout Reviewed by: koobs (mentor, python), antoine (python) Approved by: koobs (mentor, python), antoine (python) Differential Revision: https://reviews.freebsd.org/D4721 Modified: head/lang/python33/Makefile head/lang/python33/files/patch-PR195511 Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Mon Dec 28 12:33:06 2015 (r404625) +++ head/lang/python33/Makefile Mon Dec 28 12:42:40 2015 (r404626) @@ -2,7 +2,7 @@ PORTNAME= python33 PORTVERSION= 3.3.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} DISTNAME= Python-${PORTVERSION} Modified: head/lang/python33/files/patch-PR195511 ============================================================================== --- head/lang/python33/files/patch-PR195511 Mon Dec 28 12:33:06 2015 (r404625) +++ head/lang/python33/files/patch-PR195511 Mon Dec 28 12:42:40 2015 (r404626) @@ -100,7 +100,7 @@ +except ImportError: + _SSLv3_IF_EXISTS = None +else: -+ _PROTOCOL_NAMES[PROTOCOL_SSLv2] = "SSLv3" ++ _PROTOCOL_NAMES[PROTOCOL_SSLv3] = "SSLv3" from socket import getnameinfo as _getnameinfo from socket import error as socket_error
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512281242.tBSCgf96090093>