Date: Fri, 14 Oct 2016 19:50:00 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423986 - in head: . Mk Mk/Uses Message-ID: <201610141950.u9EJo0QT049361@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Fri Oct 14 19:50:00 2016 New Revision: 423986 URL: https://svnweb.freebsd.org/changeset/ports/423986 Log: Change the default version of python3 from 3.4 to 3.5 Thanks to Ruslan Makhmatkhanov for doing all the fixes PR: 204519 With hat: portmgr Modified: head/Mk/Uses/python.mk head/Mk/bsd.default-versions.mk head/UPDATING Modified: head/Mk/Uses/python.mk ============================================================================== --- head/Mk/Uses/python.mk Fri Oct 14 19:42:48 2016 (r423985) +++ head/Mk/Uses/python.mk Fri Oct 14 19:50:00 2016 (r423986) @@ -222,7 +222,7 @@ _INCLUDE_USES_PYTHON_MK= yes # What Python version and what Python interpreters are currently supported? # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. -_PYTHON_VERSIONS= 2.7 3.4 3.5 3.3 # preferred first +_PYTHON_VERSIONS= 2.7 3.5 3.4 3.3 # preferred first _PYTHON_PORTBRANCH= 2.7 # ${_PYTHON_VERSIONS:[1]} _PYTHON_BASECMD= ${LOCALBASE}/bin/python _PYTHON_RELPORTDIR= lang/python Modified: head/Mk/bsd.default-versions.mk ============================================================================== --- head/Mk/bsd.default-versions.mk Fri Oct 14 19:42:48 2016 (r423985) +++ head/Mk/bsd.default-versions.mk Fri Oct 14 19:50:00 2016 (r423986) @@ -66,7 +66,7 @@ PYTHON_DEFAULT?= 2.7 # Possible values: 2.7 PYTHON2_DEFAULT?= 2.7 # Possible values: 3.3, 3.4, 3.5 -PYTHON3_DEFAULT?= 3.4 +PYTHON3_DEFAULT?= 3.5 # Possible values: 2.0, 2.1, 2.2, 2.3 RUBY_DEFAULT?= 2.2 # Possible values: base, openssl, openssl-devel, libressl, libressl-devel Modified: head/UPDATING ============================================================================== --- head/UPDATING Fri Oct 14 19:42:48 2016 (r423985) +++ head/UPDATING Fri Oct 14 19:50:00 2016 (r423986) @@ -5,6 +5,20 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20161014: + AFFECTS: users of lang/python3 + AUTHOR: antoine@FreeBSD.org + + The default version of python3 has changed from 3.4 to 3.5. + If you wish to stick with older version, add "python3=3.4" to your + DEFAULT_VERSIONS variable in /etc/make.conf. To upgrade: + + If using portupgrade: + # portupgrade -o lang/python35 lang/python34 + + If using portmaster: + # portmaster -o lang/python35 lang/python34 + 20161011: AFFECTS: Users of net-im/ejabberd AUTHOR: ashish@FreeBSD.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610141950.u9EJo0QT049361>