Commits
reneeotten authored and Perry E. Metzger committed ac9b9e38334
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-flup |
7 7 | license BSD |
8 - | version 1.0.3.dev-20110405 |
8 + | version 1.0.3 |
9 + | epoch 1 |
10 + | revision 0 |
9 11 | categories-append www |
10 12 | platforms darwin |
11 13 | maintainers nomaintainer |
12 14 | supported_archs noarch |
13 15 | |
14 16 | description Flup is a random collection of WSGI servers and \ |
15 17 | middleware. |
16 18 | long_description Flup offer three sets of WSGI servers/gateways, which \ |
17 19 | speak AJP 1.3, FastCGI, and SCGI. Each server comes in \ |
18 20 | two flavors: a threaded version, and a forking version. |
19 21 | |
20 - | homepage https://www.saddi.com/software/flup |
22 + | homepage https://www.saddi.com/software/flup/ |
21 23 | master_sites pypi:f/flup/ |
22 24 | distname flup-${version} |
23 - | checksums md5 a005b072d144fc0e44b0fa4c5a9ba029 \ |
24 - | sha1 d1be86226a46ef031bf813497aa5520e3792b8e2 \ |
25 - | rmd160 25f58df998a7e98810e32da02c5ea4ccaeb25e40 |
25 + | checksums rmd160 bae32e4ff56870bb83b8a073540055a59ef7a266 \ |
26 + | sha256 5eb09f26eb0751f8380d8ac43d1dfb20e1d42eca0fa45ea9289fa532a79cd159 \ |
27 + | size 52277 |
26 28 | |
27 29 | python.versions 27 |
28 30 | |
29 31 | if {${name} ne ${subport}} { |
30 32 | depends_build-append \ |
31 33 | port:py${python.version}-setuptools |
32 34 | |
33 - | post-destroot { |
34 - | set docdir ${prefix}/share/doc/${subport} |
35 - | xinstall -d ${destroot}${docdir} |
36 - | xinstall -m 644 -W ${worksrcpath} \ |
37 - | ChangeLog \ |
38 - | PKG-INFO \ |
39 - | ${destroot}${docdir} |
40 - | } |
35 + | livecheck.type none |
41 36 | } |