openbsd-ports/www/py-werkzeug/Makefile
djm 70d4c66974 Import of Werkzeug-0.4.1
> Werkzeug started as a simple collection of various utilities for WSGI
> applications and has become one of the most advanced WSGI utility
> modules. It includes a powerful debugger, full featured request and
> response objects, HTTP utilities to handle entity tags, cache control
> headers, HTTP dates, cookie handling, file uploads, a powerful URL
> routing system and a bunch of community contributed addon modules.
>
> Werkzeug is unicode aware and doesn't enforce a specific template
> engine, database adapter or anything else. It doesn't even enforce
> a specific way of handling requests and leaves all that up to the
> developer.
>
> Werkzeug is most useful for end user applications which should work
> on as many server environments as possible (such as blogs, wikis,
> bulletin boards, etc.).

feedback & ok wcmaier@
2009-01-18 20:10:31 +00:00

35 lines
695 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2009/01/18 20:10:31 djm Exp $
COMMENT= WSGI utility collection
MODPY_EGG_VERSION= 0.4.1
DISTNAME= Werkzeug-${MODPY_EGG_VERSION}
PKGNAME= py-${DISTNAME:L}
CATEGORIES= www devel
HOMEPAGE= http://werkzeug.pocoo.org/
MASTER_SITES= http://pypi.python.org/packages/source/W/Werkzeug/
MAINTAINER= Damien Miller <djm@openbsd.org>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MODULES= lang/python
MODPY_SETUPTOOLS= Yes
PKG_ARCH= *
REGRESS_DEPENDS= ::devel/py-py
post-install:
mv ${PREFIX}/docs ${PREFIX}/share/doc/py-werkzeug
do-regress:
cd ${WRKSRC} && py.test
.include <bsd.port.mk>