Commits
Renee Otten authored 8a3e6b89512
3 3 | PortSystem 1.0 |
4 4 | PortGroup python 1.0 |
5 5 | |
6 6 | name py-tornado |
7 7 | version 6.0.3 |
8 8 | revision 0 |
9 9 | categories-append www |
10 10 | platforms darwin |
11 11 | license Apache-2 |
12 12 | |
13 - | python.versions 27 34 35 36 37 38 |
13 + | python.versions 27 35 36 37 38 |
14 14 | |
15 15 | maintainers {stromnov @stromnov} openmaintainer |
16 16 | |
17 17 | description Scalable, non-blocking web server and related tools |
18 18 | |
19 19 | long_description \ |
20 20 | Tornado is an open source version of the scalable, non-blocking web server \ |
21 21 | and tools that power FriendFeed. The FriendFeed application is written \ |
22 22 | using a web framework that looks a bit like web.py or Google's webapp, \ |
23 23 | but with additional tools and optimizations to take advantage of the \ |
24 24 | underlying non-blocking infrastructure. |
25 25 | |
26 - | homepage http://www.tornadoweb.org/ |
26 + | homepage https://www.tornadoweb.org/ |
27 27 | master_sites pypi:[string index ${python.rootname} 0]/${python.rootname} |
28 28 | |
29 29 | distname ${python.rootname}-${version} |
30 30 | |
31 31 | checksums rmd160 ada4b4de7daef1b2d37400c0b5d5846533e216fa \ |
32 32 | sha256 c845db36ba616912074c5b1ee897f8e0124df269468f25e4fe21fe72f6edd7a9 \ |
33 33 | size 482444 |
34 34 | |
35 35 | if {${name} ne ${subport}} { |
36 36 | depends_build-append \ |
37 37 | port:py${python.version}-setuptools |
38 38 | |
39 39 | conflicts py${python.version}-tornado5 |
40 40 | |
41 - | if {${python.version} < 35} { |
41 + | if {${python.version} eq 27} { |
42 42 | version 5.1.1 |
43 43 | revision 0 |
44 44 | distname ${python.rootname}-${version} |
45 45 | checksums rmd160 c5352ef0fe39e4877cab97f2ec7258d455158317 \ |
46 46 | sha256 4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409 \ |
47 47 | size 516819 |
48 48 | |
49 - | if {${python.version} == 27} { |
50 - | depends_lib-append port:py${python.version}-monotonic \ |
51 - | port:py${python.version}-futures |
49 + | depends_lib-append port:py${python.version}-backports_abc \ |
50 + | port:py${python.version}-certifi \ |
51 + | port:py${python.version}-futures \ |
52 + | port:py${python.version}-monotonic \ |
53 + | port:py${python.version}-singledispatch |
52 54 | } |
53 55 | |
54 - | if {${python.version} < 34} { |
55 - | depends_lib-append port:py${python.version}-singledispatch \ |
56 - | port:py${python.version}-certifi |
57 - | } |
58 - | |
59 - | if {${python.version} < 35} { |
60 - | depends_lib-append port:py${python.version}-backports_abc |
61 - | } |
62 - | } |
63 56 | livecheck.type none |
64 57 | } |