From owner-svn-ports-all@FreeBSD.ORG Sun Jun 1 15:28:45 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C4EDE26D; Sun, 1 Jun 2014 15:28:45 +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 A74892573; Sun, 1 Jun 2014 15:28:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s51FSjRn025165; Sun, 1 Jun 2014 15:28:45 GMT (envelope-from rene@svn.freebsd.org) Received: (from rene@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s51FSiMr025159; Sun, 1 Jun 2014 15:28:44 GMT (envelope-from rene@svn.freebsd.org) Message-Id: <201406011528.s51FSiMr025159@svn.freebsd.org> From: Rene Ladan Date: Sun, 1 Jun 2014 15:28:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356138 - in head: devel/py-futures irc/znc security/py-backports.ssl_match_hostname sysutils/dvdvideo textproc/codespell 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:28:46 -0000 Author: rene Date: Sun Jun 1 15:28:44 2014 New Revision: 356138 URL: http://svnweb.freebsd.org/changeset/ports/356138 QAT: https://qat.redports.org/buildarchive/r356138/ Log: Update consumers of lang/python31 or higher to use Python version 3.X and consumers of lang/python31 or lower to use Python 2.X This is in preparation of removing lang/python31 which expired on 2014-06-01 While here apply some fixes for textproc/codespell: - USE_XZ -> USES=tar:xz - remove unneeded USE_PYTHON_RUN line Approved by: python (mva) Modified: head/devel/py-futures/Makefile head/irc/znc/Makefile head/security/py-backports.ssl_match_hostname/Makefile head/sysutils/dvdvideo/Makefile head/textproc/codespell/Makefile Modified: head/devel/py-futures/Makefile ============================================================================== --- head/devel/py-futures/Makefile Sun Jun 1 15:28:29 2014 (r356137) +++ head/devel/py-futures/Makefile Sun Jun 1 15:28:44 2014 (r356138) @@ -12,7 +12,7 @@ COMMENT= Backport of the concurrent.futu LICENSE= BSD2CLAUSE -USE_PYTHON= -3.1 +USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes Modified: head/irc/znc/Makefile ============================================================================== --- head/irc/znc/Makefile Sun Jun 1 15:28:29 2014 (r356137) +++ head/irc/znc/Makefile Sun Jun 1 15:28:44 2014 (r356138) @@ -59,7 +59,7 @@ CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR .endif .if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= 3.1- +USE_PYTHON= 2 USE_PERL5+= build .endif Modified: head/security/py-backports.ssl_match_hostname/Makefile ============================================================================== --- head/security/py-backports.ssl_match_hostname/Makefile Sun Jun 1 15:28:29 2014 (r356137) +++ head/security/py-backports.ssl_match_hostname/Makefile Sun Jun 1 15:28:44 2014 (r356138) @@ -10,7 +10,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= gblach@FreeBSD.org COMMENT= Backport of ssl.match_hostname() function -USE_PYTHON= -3.1 +USE_PYTHON= 2 USE_PYDISTUTILS= yes PYDISTUTILS_AUTOPLIST= yes Modified: head/sysutils/dvdvideo/Makefile ============================================================================== --- head/sysutils/dvdvideo/Makefile Sun Jun 1 15:28:29 2014 (r356137) +++ head/sysutils/dvdvideo/Makefile Sun Jun 1 15:28:44 2014 (r356138) @@ -15,7 +15,7 @@ COMMENT= Video DVD backup tool LICENSE= GPLv3 -USE_PYTHON= 3.1+ +USE_PYTHON= 3 USE_PYDISTUTILS= yes PYDISTUTILS_EGGINFO= python_dvdvideo-0.${PORTVERSION}-py${PYTHON_VER}.egg-info Modified: head/textproc/codespell/Makefile ============================================================================== --- head/textproc/codespell/Makefile Sun Jun 1 15:28:29 2014 (r356137) +++ head/textproc/codespell/Makefile Sun Jun 1 15:28:44 2014 (r356138) @@ -13,9 +13,8 @@ COMMENT= Source code spelling checker LICENSE= GPLv2 -USE_PYTHON= 3.1+ -USE_PYTHON_RUN= yes -USE_XZ= yes +USE_PYTHON= 3 +USES= tar:xz OPTIONS_DEFINE= DOCS EXAMPLES