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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | name py-http-parser |
---|
8 | version 0.8.3 |
---|
9 | |
---|
10 | categories python www |
---|
11 | license MIT |
---|
12 | platforms darwin |
---|
13 | maintainers nomaintainer |
---|
14 | description http request/response parser |
---|
15 | long_description HTTP request/response parser for Python compatible \ |
---|
16 | with Python 2.x (>=2.6), Python 3 and Pypy. If \ |
---|
17 | possible a C parser based on http-parser from Ryan \ |
---|
18 | Dahl will be used. |
---|
19 | |
---|
20 | homepage http://github.com/benoitc/http-parser |
---|
21 | master_sites https://pypi.python.org/packages/source/h/http-parser |
---|
22 | distname http-parser-${version} |
---|
23 | checksums md5 751967e2785c829dffebdc9a511e0eec \ |
---|
24 | sha1 de2509e6b62d6beb191e0953d3b098ffac27fedd \ |
---|
25 | rmd160 5953b6a238917e14b1bf6c1e4f995fbac03463b5 |
---|
26 | |
---|
27 | python.versions 26 27 31 32 33 |
---|
28 | |
---|
29 | if {$subport != $name} { |
---|
30 | depends_build port:py${python.version}-setuptools |
---|
31 | } |
---|
32 | |
---|
33 | livecheck.type regex |
---|
34 | livecheck.url http://pypi.python.org/pypi/http-parser |
---|
35 | livecheck.regex {http-parser ([0-9]+\.[0-9]+(?:\.[0-9]+)?)} |
---|