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
This commit is contained in:
Steve Wills 2014-04-13 01:33:45 +00:00
parent 59d55aedab
commit 1a62e763a5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=351168
4 changed files with 27 additions and 0 deletions

View File

@ -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

View File

@ -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 <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (configparser-3.3.0r2.tar.gz) = 6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2
SIZE (configparser-3.3.0r2.tar.gz) = 32885

View File

@ -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