forked from Lainports/freebsd-ports
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) MFH: 2017Q3
21 lines
348 B
Makefile
21 lines
348 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= configparser
|
|
PORTVERSION= 3.5.0
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= robak@FreeBSD.org
|
|
COMMENT= INI style configuration file parser
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|