Ticket #38895: Portfile.2

File Portfile.2, 1.3 KB (added by jkrage@…, 10 years ago)

Portfile for py-http-parser 0.8.3

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$
3
4PortSystem          1.0
5PortGroup           python 1.0
6
7name                py-http-parser
8version             0.8.3
9
10categories          python www
11license             MIT
12platforms           darwin
13maintainers         nomaintainer
14description         http request/response parser
15long_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
20homepage            http://github.com/benoitc/http-parser
21master_sites        https://pypi.python.org/packages/source/h/http-parser
22distname            http-parser-${version}
23checksums           md5 751967e2785c829dffebdc9a511e0eec \
24                    sha1 de2509e6b62d6beb191e0953d3b098ffac27fedd \
25                    rmd160 5953b6a238917e14b1bf6c1e4f995fbac03463b5
26
27python.versions     26 27 31 32 33
28
29if {$subport != $name} {
30    depends_build       port:py${python.version}-setuptools
31}
32
33livecheck.type      regex
34livecheck.url       http://pypi.python.org/pypi/http-parser
35livecheck.regex     {http-parser ([0-9]+\.[0-9]+(?:\.[0-9]+)?)}