You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
62 lines
2.4 KiB
Tcl
62 lines
2.4 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup python 1.0
|
|
|
|
name py-tornado
|
|
version 6.1
|
|
revision 0
|
|
categories-append www
|
|
platforms darwin
|
|
license Apache-2
|
|
|
|
python.versions 27 35 36 37 38 39
|
|
|
|
maintainers {stromnov @stromnov} openmaintainer
|
|
|
|
description Scalable, non-blocking web server and related tools
|
|
|
|
long_description \
|
|
Tornado is an open source version of the scalable, non-blocking web server \
|
|
and tools that power FriendFeed. The FriendFeed application is written \
|
|
using a web framework that looks a bit like web.py or Google's webapp, \
|
|
but with additional tools and optimizations to take advantage of the \
|
|
underlying non-blocking infrastructure.
|
|
|
|
homepage https://www.tornadoweb.org/
|
|
|
|
checksums rmd160 a42c2d7c44cd3e2f3eb4249bcf6f13ac9e133894 \
|
|
sha256 33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791 \
|
|
size 497359
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools
|
|
|
|
conflicts py${python.version}-tornado5
|
|
|
|
if {${python.version} eq 27} {
|
|
version 5.1.1
|
|
revision 0
|
|
distname ${python.rootname}-${version}
|
|
checksums rmd160 c5352ef0fe39e4877cab97f2ec7258d455158317 \
|
|
sha256 4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409 \
|
|
size 516819
|
|
|
|
depends_lib-append port:py${python.version}-backports_abc \
|
|
port:py${python.version}-certifi \
|
|
port:py${python.version}-futures \
|
|
port:py${python.version}-monotonic \
|
|
port:py${python.version}-singledispatch
|
|
} elseif {${python.version} eq 35} {
|
|
version 6.0.4
|
|
revision 0
|
|
distname ${python.rootname}-${version}
|
|
checksums rmd160 92b5c98162990a3b62e40bc77e98bd21ff7bff26 \
|
|
sha256 0fe2d45ba43b00a41cd73f8be321a44936dc1aba233dee979f17a042b83eb6dc \
|
|
size 496204
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|