43 lines
872 B
Makefile
43 lines
872 B
Makefile
# $OpenBSD: Makefile,v 1.18 2021/02/20 22:27:29 sthen Exp $
|
|
|
|
COMMENT = test utilities working with files and commands
|
|
|
|
MODPY_EGG_VERSION = 0.4.2
|
|
DISTNAME = testpath-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 2
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/jupyter/testpath
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
BUILD_DEPENDS = textproc/py-sphinx,python3>=1.5
|
|
|
|
.if !${FLAVOR:Mpython3}
|
|
RUN_DEPENDS = devel/py-pathlib
|
|
.endif
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/doc && PYTHONPATH=${WRKSRC} \
|
|
${LOCALBASE}/bin/sphinx-build -N . _build/html
|
|
|
|
DOCDIR = ${PREFIX}/share/doc/${MODPY_PY_PREFIX}testpath
|
|
post-install:
|
|
cp -r ${WRKBUILD}/doc/_build/html ${DOCDIR}
|
|
rm ${DOCDIR}/.buildinfo
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${DOCDIR}
|
|
|
|
.include <bsd.port.mk>
|