From owner-svn-ports-all@FreeBSD.ORG Tue May 6 17:43:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8E61EC6A; Tue, 6 May 2014 17:43:11 +0000 (UTC) Received: from svn.freebsd.org (svn.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 7B648E53; Tue, 6 May 2014 17:43:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s46HhBYI038658; Tue, 6 May 2014 17:43:11 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s46HhBGF038657; Tue, 6 May 2014 17:43:11 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201405061743.s46HhBGF038657@svn.freebsd.org> From: Antoine Brodin Date: Tue, 6 May 2014 17:43:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353115 - head/Mk X-SVN-Group: ports-head 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.18 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: Tue, 06 May 2014 17:43:11 -0000 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) && ( \