From owner-svn-ports-branches@freebsd.org Wed Aug 5 13:48:26 2015 Return-Path: Delivered-To: svn-ports-branches@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 B9A7C9B4D77; Wed, 5 Aug 2015 13:48:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A9CDDDCF; Wed, 5 Aug 2015 13:48:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t75DmQZw042942; Wed, 5 Aug 2015 13:48:26 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t75DmPYG042938; Wed, 5 Aug 2015 13:48:25 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201508051348.t75DmPYG042938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 5 Aug 2015 13:48:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393590 - in branches/2015Q3/lang: python27 python32 python33 python34 X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Aug 2015 13:48:26 -0000 Author: koobs Date: Wed Aug 5 13:48:24 2015 New Revision: 393590 URL: https://svnweb.freebsd.org/changeset/ports/393590 Log: MFH: r393217 lang/python{27,32,33,34}: Mark MAKE_JOBS_UNSAFE Parser/pgen code intermittently and non-deterministically fails at build time causing errors including, among others: * Parser/pgen.o: file not recognized: File truncated * pgenmain.c:(.text+0x244): undefined reference to `_Py_pgen' This is apparently due to incorrect uses of recursive make [1] which was fixed in the upstream Python 'default' (3.5) branch [2]. This change marks all Python port versions as MAKE_JOBS_UNSANFE until the the original changeset [1] and the resulting regression in cross-builds [3], whos fix is still pending, can be backported. [1] https://bugs.python.org/issue22359 [2] https://hg.python.org/cpython/rev/c2a53aa27cad [3] https://bugs.python.org/issue22625 PR: 200622 Approved by: portmgr (feld) Modified: branches/2015Q3/lang/python27/Makefile branches/2015Q3/lang/python32/Makefile branches/2015Q3/lang/python33/Makefile branches/2015Q3/lang/python34/Makefile Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/lang/python27/Makefile ============================================================================== --- branches/2015Q3/lang/python27/Makefile Wed Aug 5 13:47:41 2015 (r393589) +++ branches/2015Q3/lang/python27/Makefile Wed Aug 5 13:48:24 2015 (r393590) @@ -28,6 +28,7 @@ CONFIGURE_ENV+= ac_cv_opt_olimit_ok=no INSTALL_TARGET= altinstall # Don't want cloberring of unprefixed files MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in +MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974 PLIST_SUB= ABI=${ABIFLAGS} \ PORTVERSION=${PORTVERSION} \ Modified: branches/2015Q3/lang/python32/Makefile ============================================================================== --- branches/2015Q3/lang/python32/Makefile Wed Aug 5 13:47:41 2015 (r393589) +++ branches/2015Q3/lang/python32/Makefile Wed Aug 5 13:48:24 2015 (r393590) @@ -28,6 +28,7 @@ CONFIGURE_ENV+= OPT="" # Null out INSTALL_TARGET= altinstall # Don't want cloberring of unprefixed files MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in +MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974 PLIST_SUB= ABI=${ABIFLAGS} \ OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554 Modified: branches/2015Q3/lang/python33/Makefile ============================================================================== --- branches/2015Q3/lang/python33/Makefile Wed Aug 5 13:47:41 2015 (r393589) +++ branches/2015Q3/lang/python33/Makefile Wed Aug 5 13:48:24 2015 (r393590) @@ -28,6 +28,7 @@ CONFIGURE_ENV+= OPT="" # Null out INSTALL_TARGET= altinstall # Don't want cloberring of unprefixed files MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in +MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974 PLIST_SUB= ABI=${ABIFLAGS} \ OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554 Modified: branches/2015Q3/lang/python34/Makefile ============================================================================== --- branches/2015Q3/lang/python34/Makefile Wed Aug 5 13:47:41 2015 (r393589) +++ branches/2015Q3/lang/python34/Makefile Wed Aug 5 13:48:24 2015 (r393590) @@ -30,6 +30,7 @@ CONFIGURE_ENV+= OPT="" DISABLED_EXTENSI INSTALL_TARGET= altinstall # Don't want cloberring of unprefixed files MAKE_ARGS+= INSTALL_SHARED="${INSTALL_LIB}" # Strip shared library MAKE_ARGS+= LIBPC="${PREFIX}/libdata/pkgconfig" # Until pathfix gets support for files other than Makefile.in +MAKE_JOBS_UNSAFE= yes # Parser/pgen build bug. See Issue: 200622, 201974 PLIST_SUB= ABI=${ABIFLAGS} \ OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. http://bugs.python.org/issue19554