Date: Sun, 26 Aug 2018 18:42:38 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478157 - head/lang/python37 Message-ID: <201808261842.w7QIgcaY016554@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <rsmith@xs4all.nl> 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 <bsd.port.options.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808261842.w7QIgcaY016554>