From owner-svn-ports-all@freebsd.org Sun Aug 26 18:42:39 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88EC2107E5F2; Sun, 26 Aug 2018 18:42:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5D588C3FB; Sun, 26 Aug 2018 18:42:38 +0000 (UTC) (envelope-from sunpoet@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7424B12C82; Sun, 26 Aug 2018 18:42:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7QIgcTp016555; Sun, 26 Aug 2018 18:42:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7QIgcaY016554; Sun, 26 Aug 2018 18:42:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201808261842.w7QIgcaY016554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 26 Aug 2018 18:42:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478157 - head/lang/python37 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/lang/python37 X-SVN-Commit-Revision: 478157 X-SVN-Commit-Repository: ports 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.27 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: Sun, 26 Aug 2018 18:42:39 -0000 Author: sunpoet Date: Sun Aug 26 18:42:37 2018 New Revision: 478157 URL: https://svnweb.freebsd.org/changeset/ports/478157 Log: Remove THREADS option - Bump PORTREVISION for package change Support for building --without-threads has been removed. The threading module is now always available. PR: 230605 Submitted by: Roland Smith Reference: https://docs.python.org/3/whatsnew/3.7.html Modified: head/lang/python37/Makefile Modified: head/lang/python37/Makefile ============================================================================== --- head/lang/python37/Makefile Sun Aug 26 18:42:33 2018 (r478156) +++ head/lang/python37/Makefile Sun Aug 26 18:42:37 2018 (r478157) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME= python -PORTREVISION= 2 PORTVERSION= ${PYTHON_PORTVERSION} +PORTREVISION= 3 CATEGORIES= lang python ipv6 MASTER_SITES= PYTHON/ftp/python/${PORTVERSION} PKGNAMESUFFIX= ${PYTHON_SUFFIX} @@ -48,8 +48,8 @@ PLIST_SUB= ABI=${ABIFLAGS} \ XYZDOT=${PORTVERSION} \ OSMAJOR=${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} # For plat-freebsd* in pkg-plist. https://bugs.python.org/issue19554 -OPTIONS_DEFINE= DEBUG IPV6 LIBFFI NLS PYMALLOC THREADS -OPTIONS_DEFAULT= LIBFFI PYMALLOC THREADS +OPTIONS_DEFINE= DEBUG IPV6 LIBFFI NLS PYMALLOC +OPTIONS_DEFAULT= LIBFFI PYMALLOC OPTIONS_RADIO= HASH OPTIONS_RADIO_HASH= FNV SIPHASH OPTIONS_SUB= yes @@ -80,9 +80,6 @@ NLS_LIBS= -L${LOCALBASE}/lib -lintl NLS_CONFIGURE_ENV_OFF= ac_cv_lib_intl_textdomain=no ac_cv_header_libintl_h=no PYMALLOC_CONFIGURE_WITH= pymalloc - -THREADS_CONFIGURE_WITH= threads -THREADS_LDFLAGS= -lpthread .include "${.CURDIR}/Makefile.version" .include