From owner-svn-ports-head@FreeBSD.ORG Sun Apr 13 01:33:46 2014 Return-Path: Delivered-To: svn-ports-head@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 D9012A23; Sun, 13 Apr 2014 01:33:46 +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 ABC7514A0; Sun, 13 Apr 2014 01:33:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3D1Xkju056471; Sun, 13 Apr 2014 01:33:46 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3D1Xj3w056467; Sun, 13 Apr 2014 01:33:45 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201404130133.s3D1Xj3w056467@svn.freebsd.org> From: Steve Wills Date: Sun, 13 Apr 2014 01:33:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351168 - in head/devel: . py-configparser X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Apr 2014 01:33:46 -0000 Author: swills Date: Sun Apr 13 01:33:45 2014 New Revision: 351168 URL: http://svnweb.freebsd.org/changeset/ports/351168 QAT: https://qat.redports.org/buildarchive/r351168/ Log: 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 WWW: https://pypi.python.org/pypi/configparser PR: ports/188301 Submitted by: ports@robakdesign.com Added: head/devel/py-configparser/ head/devel/py-configparser/Makefile (contents, props changed) head/devel/py-configparser/distinfo (contents, props changed) head/devel/py-configparser/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Apr 13 01:18:14 2014 (r351167) +++ head/devel/Makefile Sun Apr 13 01:33:45 2014 (r351168) @@ -3567,6 +3567,7 @@ SUBDIR += py-colorama SUBDIR += py-conditional SUBDIR += py-configobj + SUBDIR += py-configparser SUBDIR += py-construct SUBDIR += py-country SUBDIR += py-coverage Added: head/devel/py-configparser/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-configparser/Makefile Sun Apr 13 01:33:45 2014 (r351168) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= configparser +PORTVERSION= 3.3.0r2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@robakdesign.com +COMMENT= INI style configuration file parser + +LICENSE= MIT + +USE_PYTHON= 2 +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include Added: head/devel/py-configparser/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-configparser/distinfo Sun Apr 13 01:33:45 2014 (r351168) @@ -0,0 +1,2 @@ +SHA256 (configparser-3.3.0r2.tar.gz) = 6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2 +SIZE (configparser-3.3.0r2.tar.gz) = 32885 Added: head/devel/py-configparser/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-configparser/pkg-descr Sun Apr 13 01:33:45 2014 (r351168) @@ -0,0 +1,6 @@ +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 + +WWW: https://pypi.python.org/pypi/configparser