From owner-svn-ports-all@FreeBSD.ORG Sun Jun 1 15:29:44 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 04F8B429; Sun, 1 Jun 2014 15:29:44 +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 CC96E2581; Sun, 1 Jun 2014 15:29:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s51FTh4Z025351; Sun, 1 Jun 2014 15:29:43 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s51FThRG025350; Sun, 1 Jun 2014 15:29:43 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201406011529.s51FThRG025350@svn.freebsd.org> From: Rene Ladan Date: Sun, 1 Jun 2014 15:29:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356139 - 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: Sun, 01 Jun 2014 15:29:44 -0000 Author: rene Date: Sun Jun 1 15:29:43 2014 New Revision: 356139 URL: http://svnweb.freebsd.org/changeset/ports/356139 QAT: https://qat.redports.org/buildarchive/r356139/ Log: Remove support for Python 3.1 from bsd.python.mk, it expired on 2014-06-01 Approved by: python (mva) Modified: head/Mk/bsd.python.mk Modified: head/Mk/bsd.python.mk ============================================================================== --- head/Mk/bsd.python.mk Sun Jun 1 15:28:44 2014 (r356138) +++ head/Mk/bsd.python.mk Sun Jun 1 15:29:43 2014 (r356139) @@ -14,7 +14,7 @@ Python_Include_MAINTAINER= python@FreeBS # 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@FreeBS # 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"