34 lines
760 B
Makefile
34 lines
760 B
Makefile
# $OpenBSD: Makefile,v 1.22 2013/03/11 11:44:48 espie Exp $
|
|
|
|
COMMENT= pythonic, object-oriented web development framework
|
|
|
|
MODPY_EGG_VERSION= 3.2.2
|
|
DISTNAME= CherryPy-${MODPY_EGG_VERSION}
|
|
PKGNAME= py-${DISTNAME}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.cherrypy.org/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= http://download.cherrypy.org/cherrypy/${MODPY_EGG_VERSION}/
|
|
|
|
MODULES= lang/python
|
|
|
|
TEST_DEPENDS = devel/py-nose \
|
|
www/py-routes
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
# test_antistampede requires higher file descriptor limit
|
|
# test_cache_control requires higher SECONDS variable
|
|
# test_states requires signal handling fixed
|
|
TEST_IS_INTERACTIVE =Yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${LOCALBASE}/bin/nosetests -s -v \
|
|
lib/cherrypy/test
|
|
|
|
.include <bsd.port.mk>
|