d3bcffec27
packages use for their test suites. It includes a flexible test runner, and supports both doctest and unittest. ok ajacoutot@
37 lines
786 B
Makefile
37 lines
786 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/06/01 21:11:11 eric Exp $
|
|
|
|
COMMENT= testing frameworks from Zope 3
|
|
|
|
MODPY_EGG_VERSION= 3.7.4
|
|
|
|
DISTNAME= zope.testing-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-zopetesting-${MODPY_EGG_VERSION}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://pypi.python.org/pypi/zope.testing
|
|
|
|
MAINTAINER= Eric Faurot <eric@openbsd.org>
|
|
|
|
# Zope Public License
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
MASTER_SITES= http://pypi.python.org/packages/source/z/zope.testing/
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
RUN_DEPENDS= :py-zopeinterface-*:devel/py-zopeinterface
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
do-regress:
|
|
cd ${WRKSRC} && \
|
|
${MODPY_BIN} bootstrap.py && \
|
|
./bin/buildout && \
|
|
./bin/test
|
|
|
|
.include <bsd.port.mk>
|