diff options
author | rene <rene@FreeBSD.org> | 2014-06-01 23:29:43 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-06-01 23:29:43 +0800 |
commit | 4c96b3938f726e6b37b7954f020d8807637c3ced (patch) | |
tree | 51e4269fa6d06d1450270ad3637225185295750e /Mk | |
parent | ca215904fde4c9071afc8a5e460173b1ef1d6c90 (diff) | |
download | freebsd-ports-gnome-4c96b3938f726e6b37b7954f020d8807637c3ced.tar.gz freebsd-ports-gnome-4c96b3938f726e6b37b7954f020d8807637c3ced.tar.zst freebsd-ports-gnome-4c96b3938f726e6b37b7954f020d8807637c3ced.zip |
Remove support for Python 3.1 from bsd.python.mk, it expired on 2014-06-01
Approved by: python (mva)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.python.mk | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Mk/bsd.python.mk b/Mk/bsd.python.mk index 2578b2985298..ebd998cf27f2 100644 --- a/Mk/bsd.python.mk +++ b/Mk/bsd.python.mk @@ -14,7 +14,7 @@ Python_Include_MAINTAINER= python@FreeBSD.org # language. It's automatically included when USE_PYTHON is defined in # the ports' makefile. If your port requires only some set of Python # versions, you can define USE_PYTHON as [min]-[max] or min+ or -max -# or as an explicit version or as a meta port version (eg. 3.1-3.2 +# or as an explicit version or as a meta port version (eg. 3.2-3.3 # for [min]-[max], 2.7+ or -3.2 for min+ and -max, 2.7 for an # explicit version or 3 for a meta port version). # @@ -194,7 +194,7 @@ Python_Include_MAINTAINER= python@FreeBSD.org # default: ${LOCALBASE}/bin/easy_install-${PYTHON_VER} _PYTHON_PORTBRANCH= 2.7 -_PYTHON_ALLBRANCHES= 2.7 3.4 3.3 3.2 3.1 # preferred first +_PYTHON_ALLBRANCHES= 2.7 3.4 3.3 3.2 # preferred first # Determine version number of Python to use .include "${PORTSDIR}/Mk/bsd.default-versions.mk" @@ -366,14 +366,6 @@ PYTHON_VER= 3.2 PYTHON_ABIVER!= ${PYTHON_CMD}-config --abiflags .endif -# Python-3.1 -.elif ${PYTHON_VERSION} == "python3.1" -PYTHON_PORTVERSION?= 3.1.5 -PYTHON_PORTSDIR= ${PORTSDIR}/lang/python31 -PYTHON_REL= 315 -PYTHON_SUFFIX= 31 -PYTHON_VER= 3.1 - # Python-2.7 .elif ${PYTHON_VERSION} == "python2.7" PYTHON_PORTVERSION?= 2.7.6 @@ -397,7 +389,6 @@ check-makevars:: @${ECHO} "Makefile error: bad value for PYTHON_VERSION: ${PYTHON_VERSION}." @${ECHO} "Legal values are:" @${ECHO} " python2.7 (default)" - @${ECHO} " python3.1" @${ECHO} " python3.2" @${ECHO} " python3.3" @${ECHO} " python3.4" |