The current settings in py-setuptools{27,32,33,34}/Makefile for PYTHON_VERSION are wrong (X.Y instead of pythonX.Y), but sort of work by chance rather than design. If it weren't for some unintended luck from the way _PYTHON_VERSION is set and the .MAKEFLAGS line in bsd.python.mk that forcibly sets PYTHON_VERSION=python${_PYTHON_VERSION}, these ports would fail with something like: Makefile error: bad value for PYTHON_VERSION: 3.3. Legal values are: python2.7 (default) python3.1 python3.2 python3.3 python3.4
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python Over to maintainer(s).
Responsible Changed From-To: freebsd-python->sunpoet I'll take it.
Author: sunpoet Date: Sat Apr 26 19:31:10 2014 New Revision: 352367 URL: http://svnweb.freebsd.org/changeset/ports/352367 QAT: https://qat.redports.org/buildarchive/r352367/ Log: - Fix PYTHON_VERSION PR: ports/188491 Submitted by: John Hein <john.hein@microsemi.com> Modified: head/devel/py-setuptools27/Makefile head/devel/py-setuptools32/Makefile head/devel/py-setuptools33/Makefile head/devel/py-setuptools34/Makefile Modified: head/devel/py-setuptools27/Makefile ============================================================================== --- head/devel/py-setuptools27/Makefile Sat Apr 26 18:43:44 2014 (r352366) +++ head/devel/py-setuptools27/Makefile Sat Apr 26 19:31:10 2014 (r352367) @@ -3,7 +3,7 @@ PKGNAMESUFFIX= ${PYTHON_SUFFIX} -PYTHON_VERSION= 2.7 +PYTHON_VERSION= python2.7 MASTERDIR= ${.CURDIR}/../py-setuptools Modified: head/devel/py-setuptools32/Makefile ============================================================================== --- head/devel/py-setuptools32/Makefile Sat Apr 26 18:43:44 2014 (r352366) +++ head/devel/py-setuptools32/Makefile Sat Apr 26 19:31:10 2014 (r352367) @@ -3,7 +3,7 @@ PKGNAMESUFFIX= ${PYTHON_SUFFIX} -PYTHON_VERSION= 3.2 +PYTHON_VERSION= python3.2 MASTERDIR= ${.CURDIR}/../py-setuptools Modified: head/devel/py-setuptools33/Makefile ============================================================================== --- head/devel/py-setuptools33/Makefile Sat Apr 26 18:43:44 2014 (r352366) +++ head/devel/py-setuptools33/Makefile Sat Apr 26 19:31:10 2014 (r352367) @@ -3,7 +3,7 @@ PKGNAMESUFFIX= ${PYTHON_SUFFIX} -PYTHON_VERSION= 3.3 +PYTHON_VERSION= python3.3 MASTERDIR= ${.CURDIR}/../py-setuptools Modified: head/devel/py-setuptools34/Makefile ============================================================================== --- head/devel/py-setuptools34/Makefile Sat Apr 26 18:43:44 2014 (r352366) +++ head/devel/py-setuptools34/Makefile Sat Apr 26 19:31:10 2014 (r352367) @@ -3,7 +3,7 @@ PKGNAMESUFFIX= ${PYTHON_SUFFIX} -PYTHON_VERSION= 3.4 +PYTHON_VERSION= python3.4 MASTERDIR= ${.CURDIR}/../py-setuptools _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!