devel/py-pathlib2: add missing dependency

Add dependency upon sysutils/py-scandir, because it required for
python < 3.5. Bump PORTREVISION.

PR:		217238
Submitted by:	antoine
Reported by:	Andrew
Approved by:	portmgr (blanket approval)
MFH:		2017Q1
This commit is contained in:
Ruslan Makhmatkhanov 2017-02-24 20:54:40 +00:00
parent 1a01113216
commit 2c81169cb0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=434748

View File

@ -3,6 +3,7 @@
PORTNAME= pathlib2
PORTVERSION= 2.2.1
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -19,9 +20,15 @@ USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} < 3500
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}scandir>=0:sysutils/py-scandir
.endif
do-test:
@(cd ${WRKSRC} && \
${PYTHON_CMD} test_pathlib2.py && \
${PYTHON_CMD} test_pathlib2_with_py2_unicode_literals.py)
.include <bsd.port.mk>
.include <bsd.port.post.mk>