diff --git a/www/py-uvicorn/Makefile b/www/py-uvicorn/Makefile index a24a306cc966..8e9bf5e66f72 100644 --- a/www/py-uvicorn/Makefile +++ b/www/py-uvicorn/Makefile @@ -1,42 +1,42 @@ PORTNAME= uvicorn -PORTVERSION= 0.20.0 -PORTREVISION= 2 +PORTVERSION= 0.21.1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightning-fast ASGI server -WWW= https://www.uvicorn.org/ +WWW= https://www.uvicorn.org/ \ + https://github.com/encode/uvicorn LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hatchling>=0:devel/py-hatchling@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=7.0:devel/py-click@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}h11>=0.8:net/py-h11@${PY_FLAVOR} USES= cpe python:3.7+ USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes CPE_VENDOR= encode OPTIONS_DEFINE= STANDARD STANDARD_DESC= Standard extra requirements STANDARD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}httptools>=0.5.0:www/py-httptools@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-dotenv>=0.13:www/py-python-dotenv@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}uvloop>=0.14.0:devel/py-uvloop@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}watchfiles>=0.13:devel/py-watchfiles@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}websockets>=10.4:devel/py-websockets@${PY_FLAVOR} .include .if ${PYTHON_REL} < 30800 RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} .endif .include diff --git a/www/py-uvicorn/distinfo b/www/py-uvicorn/distinfo index cc8a1074f052..0f7d208d259e 100644 --- a/www/py-uvicorn/distinfo +++ b/www/py-uvicorn/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1669058013 -SHA256 (uvicorn-0.20.0.tar.gz) = a4e12017b940247f836bc90b72e725d7dfd0c8ed1c51eb365f5ba30d9f5127d8 -SIZE (uvicorn-0.20.0.tar.gz) = 36809 +TIMESTAMP = 1679498856 +SHA256 (uvicorn-0.21.1.tar.gz) = 0fac9cb342ba099e0d582966005f3fdba5b0290579fed4a6266dc702ca7bb032 +SIZE (uvicorn-0.21.1.tar.gz) = 37176 diff --git a/www/py-uvicorn/pkg-descr b/www/py-uvicorn/pkg-descr index 07b336519a60..d385bc2fbb76 100644 --- a/www/py-uvicorn/pkg-descr +++ b/www/py-uvicorn/pkg-descr @@ -1,12 +1,10 @@ Uvicorn is a lightning-fast ASGI server implementation, using uvloop and httptools. Until recently Python has lacked a minimal low-level server/application interface for asyncio frameworks. The ASGI specification fills this gap, and means we're now able to start building a common set of tooling usable across all asyncio frameworks. Uvicorn currently supports HTTP/1.1 and WebSockets. Support for HTTP/2 is planned. - -See also: https://github.com/encode/uvicorn