Date: Tue, 6 May 2014 17:43:11 +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: r353115 - head/Mk Message-ID: <201405061743.s46HhBGF038657@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Tue May 6 17:43:11 2014 New Revision: 353115 URL: http://svnweb.freebsd.org/changeset/ports/353115 QAT: https://qat.redports.org/buildarchive/r353115/ Log: When a port needs a python version in a specific range that current python doesn't satisfy, prefer PYTHON2_DEFAULT or PYTHON3_DEFAULT over other versions. Previously, python34 was choosen despite python33 being the default python3. Silence from: python With hat: portmgr Modified: head/Mk/bsd.python.mk Modified: head/Mk/bsd.python.mk ============================================================================== --- head/Mk/bsd.python.mk Tue May 6 17:34:10 2014 (r353114) +++ head/Mk/bsd.python.mk Tue May 6 17:43:11 2014 (r353115) @@ -289,7 +289,7 @@ IGNORE= needs Python ${_PYTHON_VERSIO But you specified ${_PYTHON_VERSION} .else .undef _PYTHON_VERSION -.for ver in ${_PYTHON_ALLBRANCHES} +.for ver in ${PYTHON2_DEFAULT} ${PYTHON3_DEFAULT} ${_PYTHON_ALLBRANCHES} __VER= ${ver} .if !defined(_PYTHON_VERSION) && \ !(!empty(_PYTHON_VERSION_MINIMUM) && ( \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405061743.s46HhBGF038657>