Commits
Marius Schamschula authored 952895b4430
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-html5lib |
7 7 | license MIT |
8 8 | version 1.0b10 |
9 + | revision 1 |
9 10 | categories-append textproc devel |
10 11 | platforms darwin |
11 12 | maintainers nomaintainer |
12 13 | supported_archs noarch |
13 14 | |
14 15 | description Library for working with HTML documents |
15 16 | long_description A Python implementation of a HTML parser based on the \ |
16 17 | WHATWG HTML5 specification for maximum compatibility \ |
17 18 | with major desktop web browsers. |
18 19 | |
24 25 | sha256 192337c31b8a5112ca2fe2f408a7bac5ec7a351523d59663953e741c96df31c4 |
25 26 | |
26 27 | python.versions 26 27 33 34 35 36 |
27 28 | |
28 29 | livecheck.type regex |
29 30 | livecheck.url https://github.com/html5lib/html5lib-python/tags/ |
30 31 | livecheck.regex "(\\d+(?:\\.\\d)*\[.a-z0-9\]*).tar.gz" |
31 32 | |
32 33 | if {${name} ne ${subport}} { |
33 34 | depends_build port:py${python.version}-setuptools |
34 - | depends_lib port:py${python.version}-six |
35 + | depends_lib port:py${python.version}-six \ |
36 + | port:py${python.version}-webencodings |
35 37 | |
36 38 | post-destroot { |
37 39 | set docdir ${prefix}/share/doc/${subport} |
38 40 | xinstall -d ${destroot}${docdir} |
39 41 | xinstall -m 644 -W ${worksrcpath} \ |
40 42 | AUTHORS.rst \ |
41 43 | CHANGES.rst \ |
42 44 | CONTRIBUTING.rst \ |
43 45 | LICENSE \ |
44 46 | README.rst \ |