1792f33f5c
- Update to 3.4.3 - Add LICENSE_FILE - Sort USE_PYTHON - Update regression-test to canonical test command usage - Update WWW: (Google Code -> Github) Changes: https://github.com/python/asyncio/blob/master/ChangeLog Based on: PR: 156773 Submitted by: Vitaly Magerya <vmagerya gmail com>
22 lines
491 B
Makefile
22 lines
491 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= asyncio
|
|
PORTVERSION= 3.4.3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Reference implementation of PEP 3156 (Asynchronous IO)
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= python:3.3+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|