It tests Python 2.7, 3.5 to 3.8 with AppVeyor and TravisCI. Reference: https://github.com/eliben/pycparser/blob/master/appveyor.yml https://github.com/eliben/pycparser/blob/master/.travis.yml
24 lines
461 B
Makefile
24 lines
461 B
Makefile
# Created by: William Grzybowski <wg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pycparser
|
|
PORTVERSION= 2.20
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= C parser in Python
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} tests/all_tests.py
|
|
|
|
.include <bsd.port.mk>
|