openbsd-ports/devel/py-nose/Makefile
martynas 469bf73956 - bugfix update to py-nose-0.10.3
- fix regression tests, prodded by wcmaier@
ok wcmaier@
2008-07-09 17:46:51 +00:00

44 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.6 2008/07/09 17:46:51 martynas Exp $
COMMENT= discovery-based unittest extension
VERSION= 0.10.3
DISTNAME= nose-${VERSION}
PKGNAME= py-${DISTNAME}
CATEGORIES= devel
HOMEPAGE= http://somethingaboutorange.com/mrl/projects/nose/
MAINTAINER= Martynas Venckus <martynas@openbsd.org>
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://somethingaboutorange.com/mrl/projects/nose/
MODULES= lang/python
REGRESS_DEPENDS= ::devel/py-nose \
::devel/py-twisted/core
SUBST_VARS= VERSION
MODPY_SETUPTOOLS= Yes
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-nose
${INSTALL_DATA} ${WRKSRC}/README.txt ${PREFIX}/share/doc/py-nose/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-nose
cd ${WRKSRC}/examples && \
find . -type d -exec ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-nose/{} \; && \
find . ! -type d -exec ${INSTALL_DATA} {} ${PREFIX}/share/examples/py-nose/{} \;
do-regress:
cd ${WRKSRC}/functional_tests && nosetests
cd ${WRKSRC}/unit_tests && nosetests
.include <bsd.port.mk>