Ticket #20186: Portfile

File Portfile, 2.8 KB (added by singingwolfboy@…, 15 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id: Portfile 47857 2009-03-08 19:21:42Z akitada@macports.org $
3
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                py26-werkzeug
8version             0.5
9categories-append   www devel
10maintainers         openmaintainer akitada
11description         The Swiss Army knife of Python web development.
12long_description    \
13    Werkzeug \
14    ======== \
15    \
16    Werkzeug started as simple collection of various utilities for WSGI \
17    applications and has become one of the most advanced WSGI utility \
18    modules.  It includes a powerful debugger, full featured request and \
19    response objects, HTTP utilities to handle entity tags, cache control \
20    headers, HTTP dates, cookie handling, file uploads, a powerful URL \
21    routing system and a bunch of community contributed addon modules. \
22    \
23    Werkzeug is unicode aware and doesn't enforce a specific template \
24    engine, database adapter or anything else.  It doesn't even enforce \
25    a specific way of handling requests and leaves all that up to the \
26    developer. It's most useful for end user applications which should work \
27    on as many server environments as possible (such as blogs, wikis, \
28    bulletin boards, etc.). \
29    \
30    Details and example applications are available on the \
31    `Werkzeug website <http://werkzeug.pocoo.org/>`_. \
32    \
33    \
34    Features \
35    -------- \
36    \
37    -   unicode awareness \
38    -   request and response objects \
39    -   various utility functions for dealing with HTTP headers such as \
40        `Accept` and `Cache-Control` headers. \
41    -   thread local objects with proper cleanup at request end \
42    -   an interactive debugger \
43    -   wrapper around wsgiref that works around some of the limitations \
44        and bugs, adds threading and fork support for test environments \
45        and adds an automatic reloader. \
46    -   a flexible URL routing system with REST support. \
47    -   fully WSGI compatible \
48    \
49    \
50    Development Version \
51    ------------------- \
52    \
53    The `Werkzeug tip <http://dev.pocoo.org/hg/werkzeug-main/archive/tip.zip#egg=Werkzeug-dev>`_ \
54    is installable via `easy_install` with ``easy_install Werkzeug==dev``.
55
56platforms           darwin
57
58homepage            http://werkzeug.pocoo.org/
59master_sites        http://pypi.python.org/packages/source/W/Werkzeug/
60distname            Werkzeug-${version}
61
62checksums           md5     d980e9c332a16db3538798aa303b1af5 \
63                    sha1    cd76645f44f0416d8bc019875422207c30452637 \
64                    rmd160  39475c313ff411e21538108830ec196ec8b88247
65
66depends_lib         port:py26-setuptools
67
68livecheck.check     regex
69livecheck.url       http://pypi.python.org/pypi/Werkzeug/
70livecheck.regex     Werkzeug (0\.\[0-9\]+\.\[0-9\]+)