Needed for upcoming ipython update. Input from benoit@, sthen@ and shadchin@. OK sthen@ and shadchin@. Thanks.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2015/11/08 17:17:37 edd Exp $
|
|
|
|
COMMENT = test utilities working with files and commands
|
|
|
|
MODPY_EGG_VERSION = 0.2
|
|
DISTNAME = ${MODPY_EGG_VERSION}
|
|
PKGNAME = py-testpath-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/jupyter/testpath
|
|
|
|
GH_ACCOUNT = jupyter
|
|
GH_PROJECT = testpath
|
|
GH_TAGNAME = ${MODPY_EGG_VERSION}
|
|
|
|
BUILD_DEPENDS = textproc/py-sphinx
|
|
TEST_DEPENDS += ${RUN_DEPENDS} \
|
|
devel/py-nose
|
|
RUN_DEPENDS += devel/py-pathlib
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/python
|
|
USE_GMAKE = Yes
|
|
|
|
WRKSRC = ${WRKDIR}/testpath-${MODPY_EGG_VERSION}
|
|
|
|
# Does not use any setup.py based build system
|
|
do-build:
|
|
${MODPY_BIN} -m compileall ${WRKBUILD}/testpath/
|
|
cd ${WRKBUILD}/doc && env PYTHONPATH=.. ${GMAKE} html
|
|
|
|
PREFIX_SITE = ${PREFIX}/lib/python${MODPY_VERSION}/site-packages
|
|
DOCDIR = ${PREFIX}/share/doc/py-testpath
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX_SITE}
|
|
cp -r ${WRKBUILD}/testpath ${PREFIX_SITE}
|
|
cp -r ${WRKBUILD}/doc/_build/html ${DOCDIR}
|
|
rm ${DOCDIR}/.buildinfo
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${DOCDIR}
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${LOCALBASE}/bin/nosetests tests
|
|
|
|
.include <bsd.port.mk>
|