From owner-svn-ports-head@freebsd.org Mon Dec 28 12:42:42 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4AEDFA52F2B; Mon, 28 Dec 2015 12:42:42 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D55817C8; Mon, 28 Dec 2015 12:42:42 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBSCgfjp090095; Mon, 28 Dec 2015 12:42:41 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBSCgf96090093; Mon, 28 Dec 2015 12:42:41 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201512281242.tBSCgf96090093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Mon, 28 Dec 2015 12:42:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404626 - in head/lang/python33: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Dec 2015 12:42:42 -0000 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