Date: Sat, 15 Jul 2017 09:44:25 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445862 - branches/2017Q3/devel/py-configparser Message-ID: <201707150944.v6F9iPkx075034@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sat Jul 15 09:44:25 2017 New Revision: 445862 URL: https://svnweb.freebsd.org/changeset/ports/445862 Log: MFH: r445861 devel/py-configparser: Allow Python 3.x builds The upstream changelog for 3.5.0 specifies: a complete rewrite of the backport; now single codebase working on Python 2.6 - 3.5. To use on Python 3 import from backports import configparser instead of the built-in version Previous versions were limited to supporting Python 2.x Update USES=python and pkg-descr accordingly While I'm here, enable NO_ARCH Reported by: net/turses update (r445859) Approved by: portmgr (blanket) Approved by: ports-secteam (blanket) Modified: branches/2017Q3/devel/py-configparser/Makefile branches/2017Q3/devel/py-configparser/pkg-descr (contents, props changed) Directory Properties: branches/2017Q3/ (props changed) Modified: branches/2017Q3/devel/py-configparser/Makefile ============================================================================== --- branches/2017Q3/devel/py-configparser/Makefile Sat Jul 15 09:38:06 2017 (r445861) +++ branches/2017Q3/devel/py-configparser/Makefile Sat Jul 15 09:44:25 2017 (r445862) @@ -2,6 +2,7 @@ PORTNAME= configparser PORTVERSION= 3.5.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP @@ -12,7 +13,9 @@ COMMENT= INI style configuration file parser LICENSE= MIT -USES= python:2 +USES= python USE_PYTHON= distutils autoplist + +NO_ARCH= yes .include <bsd.port.mk> Modified: branches/2017Q3/devel/py-configparser/pkg-descr ============================================================================== --- branches/2017Q3/devel/py-configparser/pkg-descr Sat Jul 15 09:38:06 2017 (r445861) +++ branches/2017Q3/devel/py-configparser/pkg-descr Sat Jul 15 09:44:25 2017 (r445862) @@ -1,6 +1,5 @@ -The ancient ConfigParser module available in the standard -library 2.x has seen a major update in Python 3.2. This -is a backport of those changes so that they can be used -directly in Python 2.6 - 2.7 +The ancient ConfigParser module available in the standard library 2.x has +seen a major update in Python 3.2. This is a backport of those changes so +that they can be used directly in Python 2.6 - 3.5. WWW: https://pypi.python.org/pypi/configparser
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707150944.v6F9iPkx075034>