From owner-svn-ports-all@FreeBSD.ORG Mon Jun 10 08:20:16 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 994C840B; Mon, 10 Jun 2013 08:20:16 +0000 (UTC) (envelope-from rm@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8B8911226; Mon, 10 Jun 2013 08:20:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A8KGpI086478; Mon, 10 Jun 2013 08:20:16 GMT (envelope-from rm@svn.freebsd.org) Received: (from rm@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5A8KF0D086467; Mon, 10 Jun 2013 08:20:15 GMT (envelope-from rm@svn.freebsd.org) Message-Id: <201306100820.r5A8KF0D086467@svn.freebsd.org> From: Ruslan Makhmatkhanov Date: Mon, 10 Jun 2013 08:20:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320442 - in head/lang: python27 python27/files python32 python32/files python33 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-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 08:20:16 -0000 Author: rm Date: Mon Jun 10 08:20:15 2013 New Revision: 320442 URL: http://svnweb.freebsd.org/changeset/ports/320442 Log: Add patch that resolves the issue, found after r250991 in src HEAD. Investigation and the patch are from Marcel Moolenaar. I also added upstream bug-report, based on Marcel's info: http://bugs.python.org/issue18178 There also was relevant discussion on current@: http://lists.freebsd.org/pipermail/freebsd-current/2013-June/ Please see there for details of the issue. Submitted by: marcel (python@ ML) Reported by: many Added: head/lang/python27/files/patch-Modules-_ctypes-libffi_fficonfig.py.in (contents, props changed) head/lang/python32/files/patch-Modules-_ctypes-libffi_fficonfig.py.in (contents, props changed) head/lang/python33/files/patch-Modules-_ctypes-libffi_fficonfig.py.in (contents, props changed) Modified: head/lang/python27/Makefile head/lang/python32/Makefile (contents, props changed) head/lang/python33/Makefile Modified: head/lang/python27/Makefile ============================================================================== --- head/lang/python27/Makefile Mon Jun 10 08:03:20 2013 (r320441) +++ head/lang/python27/Makefile Mon Jun 10 08:20:15 2013 (r320442) @@ -3,6 +3,7 @@ PORTNAME= python27 PORTVERSION= 2.7.5 +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} Added: head/lang/python27/files/patch-Modules-_ctypes-libffi_fficonfig.py.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python27/files/patch-Modules-_ctypes-libffi_fficonfig.py.in Mon Jun 10 08:20:15 2013 (r320442) @@ -0,0 +1,10 @@ +--- ./Modules/_ctypes/libffi/fficonfig.py.in.orig 2013-05-12 07:32:49.000000000 +0400 ++++ ./Modules/_ctypes/libffi/fficonfig.py.in 2013-06-05 10:36:24.000000000 +0400 +@@ -1,7 +1,6 @@ + ffi_sources = """ + src/prep_cif.c + src/closures.c +-src/dlmalloc.c + """.split() + + ffi_platforms = { Modified: head/lang/python32/Makefile ============================================================================== --- head/lang/python32/Makefile Mon Jun 10 08:03:20 2013 (r320441) +++ head/lang/python32/Makefile Mon Jun 10 08:20:15 2013 (r320442) @@ -2,6 +2,7 @@ PORTNAME= python32 PORTVERSION= 3.2.5 +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} Added: head/lang/python32/files/patch-Modules-_ctypes-libffi_fficonfig.py.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python32/files/patch-Modules-_ctypes-libffi_fficonfig.py.in Mon Jun 10 08:20:15 2013 (r320442) @@ -0,0 +1,10 @@ +--- ./Modules/_ctypes/libffi/fficonfig.py.in.orig 2013-05-12 07:32:49.000000000 +0400 ++++ ./Modules/_ctypes/libffi/fficonfig.py.in 2013-06-05 10:36:24.000000000 +0400 +@@ -1,7 +1,6 @@ + ffi_sources = """ + src/prep_cif.c + src/closures.c +-src/dlmalloc.c + """.split() + + ffi_platforms = { Modified: head/lang/python33/Makefile ============================================================================== --- head/lang/python33/Makefile Mon Jun 10 08:03:20 2013 (r320441) +++ head/lang/python33/Makefile Mon Jun 10 08:20:15 2013 (r320442) @@ -2,6 +2,7 @@ PORTNAME= python33 PORTVERSION= 3.3.2 +PORTREVISION= 1 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} Added: head/lang/python33/files/patch-Modules-_ctypes-libffi_fficonfig.py.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/python33/files/patch-Modules-_ctypes-libffi_fficonfig.py.in Mon Jun 10 08:20:15 2013 (r320442) @@ -0,0 +1,10 @@ +--- ./Modules/_ctypes/libffi/fficonfig.py.in.orig 2013-05-12 07:32:49.000000000 +0400 ++++ ./Modules/_ctypes/libffi/fficonfig.py.in 2013-06-05 10:36:24.000000000 +0400 +@@ -1,7 +1,6 @@ + ffi_sources = """ + src/prep_cif.c + src/closures.c +-src/dlmalloc.c + """.split() + + ffi_platforms = {