- Add missing depends

- Allow concurrent installation

PR:		219429
Submitted by:	john@saltant.com
This commit is contained in:
Dmitry Marakasov 2017-05-24 16:47:23 +00:00
parent 292470b9d6
commit 16e0f976f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=441609
2 changed files with 8 additions and 1 deletions

View file

@ -3,6 +3,7 @@
PORTNAME= pydocstyle
PORTVERSION= 2.0.0
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -13,8 +14,11 @@ COMMENT= Python docstring style checker
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE-MIT
RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}snowballstemmer>0:textproc/py-snowballstemmer \
${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six
USES?= python zip
USE_PYTHON= autoplist distutils
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -3,6 +3,9 @@
MASTERDIR= ${.CURDIR}/../py-pydocstyle
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}snowballstemmer>0:textproc/py3-snowballstemmer \
${PYTHON_PKGNAMEPREFIX}six>0:devel/py3-six
USES= python:3 zip
.include "${MASTERDIR}/Makefile"