From owner-svn-ports-all@freebsd.org Sat Jul 15 09:44:26 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82C26DBE8B4; Sat, 15 Jul 2017 09:44:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 42F416AFBE; Sat, 15 Jul 2017 09:44:26 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6F9iPv2075036; Sat, 15 Jul 2017 09:44:25 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6F9iPkx075034; Sat, 15 Jul 2017 09:44:25 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201707150944.v6F9iPkx075034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sat, 15 Jul 2017 09:44:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r445862 - branches/2017Q3/devel/py-configparser X-SVN-Group: ports-branches X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: branches/2017Q3/devel/py-configparser X-SVN-Commit-Revision: 445862 X-SVN-Commit-Repository: ports 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.23 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: Sat, 15 Jul 2017 09:44:26 -0000 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 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