diff --git a/www/py-tornado/Makefile b/www/py-tornado/Makefile index 6b93f4d30985..61e89c61f424 100644 --- a/www/py-tornado/Makefile +++ b/www/py-tornado/Makefile @@ -1,29 +1,29 @@ # Created by: Guixing Bai PORTNAME= tornado -PORTVERSION= 6.1 +PORTVERSION= 6.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Python Web Server from FriendFeed LICENSE= APACHE20 -USES= cpe python:3.5+ +USES= cpe python:3.7+ USE_PYTHON= autoplist concurrent distutils CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}tornado4 \ ${PYTHON_PKGNAMEPREFIX}tornado5 \ ${PYTHON_PKGNAMEPREFIX}tornado6 CPE_VENDOR= tornadoweb post-install: ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} + do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m tornado.test.runtests .include diff --git a/www/py-tornado/distinfo b/www/py-tornado/distinfo index c46e78809ada..6da60036d0d5 100644 --- a/www/py-tornado/distinfo +++ b/www/py-tornado/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1611403957 -SHA256 (tornado-6.1.tar.gz) = 33c6e81d7bd55b468d2e793517c909b139960b6c790a60b7991b9b6b76fb9791 -SIZE (tornado-6.1.tar.gz) = 497359 +TIMESTAMP = 1657199045 +SHA256 (tornado-6.2.tar.gz) = 9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13 +SIZE (tornado-6.2.tar.gz) = 504849 diff --git a/www/py-tornado/pkg-descr b/www/py-tornado/pkg-descr index a94b970a6618..964fa4b8cd9c 100644 --- a/www/py-tornado/pkg-descr +++ b/www/py-tornado/pkg-descr @@ -1,15 +1,16 @@ 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. The framework is distinct from most mainstream web server frameworks (and certainly most Python frameworks) because it is non-blocking and reasonably fast. Because it is non-blocking and uses epoll or kqueue, it can handle thousands of simultaneous standing connections, which means it is ideal for real-time web services. We built the web server specifically to handle FriendFeed's real-time features - every active user of FriendFeed maintains an open connection to the FriendFeed servers. WWW: https://www.tornadoweb.org/ +WWW: https://github.com/tornadoweb/tornado