svn commit: r404626 - in head/lang/python33: . files

Bernard Spil brnrd at FreeBSD.org
Mon Dec 28 12:42:42 UTC 2015


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


More information about the svn-ports-head mailing list