1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python24 1.0 |
---|
5 | |
---|
6 | name py-werkzeug |
---|
7 | version 0.4.1 |
---|
8 | categories-append devel |
---|
9 | depends_lib-append port:py-setuptools |
---|
10 | platforms darwin |
---|
11 | maintainers arthurkoziel.com:arthur openmaintainer |
---|
12 | |
---|
13 | homepage http://werkzeug.pocoo.org/ |
---|
14 | description The Swiss Army knife of Python web development |
---|
15 | long_description Werkzeug started as simple collection of various \ |
---|
16 | utilities for WSGI applications and has become one of the most advanced \ |
---|
17 | WSGI utility modules. It includes a powerful debugger, full featured \ |
---|
18 | request and response objects, HTTP utilities to handle entity tags, \ |
---|
19 | cache control headers, HTTP dates, cookie handling, file uploads, a \ |
---|
20 | powerful URL routing system and a bunch of community contributed addon \ |
---|
21 | modules.\ |
---|
22 | \ |
---|
23 | Werkzeug is unicode aware and doesn't enforce a specific template engine, \ |
---|
24 | database adapter or anything else. It doesn't even enforce a specific way \ |
---|
25 | of handling requests and leaves all that up to the developer. It's most \ |
---|
26 | useful for end user applications which should work on as many server \ |
---|
27 | environments as possible (such as blogs, wikis, bulletin boards, etc.). |
---|
28 | |
---|
29 | master_sites http://pypi.python.org/packages/source/W/Werkzeug/ |
---|
30 | distname Werkzeug-${version} |
---|
31 | checksums md5 9bc096feb9fc43ea9f6c558b9c330c3e \ |
---|
32 | sha1 a0c9c4f203b8afd2c6ec0ca1e0b9c88acc92454b \ |
---|
33 | rmd160 c5489f3d45681996cc55d3b7badf28564038fb70 |
---|
34 | |
---|
35 | patchfiles patch-setup.py.diff |
---|
36 | post-patch { |
---|
37 | reinplace "s|@@NAME@@|${name}|g" ${worksrcpath}/setup.py |
---|
38 | } |
---|
39 | |
---|
40 | livecheck.check regex |
---|
41 | livecheck.url http://pypi.python.org/pypi/Werkzeug/ |
---|
42 | livecheck.regex Jinja2 (0\.\[0-9\]+\.\[0-9\]+) |
---|