Ticket #38895: Portfile

File Portfile, 1.2 KB (added by jkrage@…, 11 years ago)

Portfile for py-http-parser

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.1
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
20python.versions     26 27 31 32 33
21
22homepage            http://github.com/benoitc/http-parser
23master_sites        http://pypi.python.org/packages/source/h/http-parser
24distname            http-parser-${version}
25checksums           md5 6cc089365e3ae758e5f5cda0f2f8f788 \
26                    sha1 537a2fdeb2d03cf3a2dfa51f0c24e03acda27c7a \
27                    rmd160 75f003ed80ae48ac3168495f2ca97b5a5d629b98
28
29livecheck.type      regex
30livecheck.url       http://pypi.python.org/pypi/http-parser
31livecheck.regex     {http-parser ([0-9]+\.[0-9]+(?:\.[0-9]+)?)}