- change USE_PYTHON to yes since it's now supports python3 (except the tests), according to changelogs Packing list for python3 is broken, but this will be fixed globally later.
21 lines
438 B
Makefile
21 lines
438 B
Makefile
# Created by: Alexander Botero-Lowry <alex@foxybanana.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= simplejson
|
|
PORTVERSION= 3.0.3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= Simple, fast, extensible JSON encoder/decoder
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
regression-test: build
|
|
@(cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test)
|
|
|
|
.include <bsd.port.mk>
|