Any missed ports, feel free to bump. Any ports that need setuptools at runtime can have the devel/py-setuptools manually added back to RUN_DEPENDS, but understand that this practice is deprecated; see CHANGES for details.
27 lines
583 B
Makefile
27 lines
583 B
Makefile
PORTNAME= pathlib2
|
|
PORTVERSION= 2.3.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Object-oriented filesystem paths
|
|
WWW= https://pypi.org/project/pathlib2/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@(cd ${WRKSRC} && \
|
|
${PYTHON_CMD} test_pathlib2.py && \
|
|
${PYTHON_CMD} test_pathlib2_with_py2_unicode_literals.py)
|
|
|
|
.include <bsd.port.mk>
|