Date: Thu, 12 Sep 2019 02:36:26 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511850 - in head/www: . py-asgiref Message-ID: <201909120236.x8C2aQHX034733@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Thu Sep 12 02:36:26 2019 New Revision: 511850 URL: https://svnweb.freebsd.org/changeset/ports/511850 Log: ASGI is a standard for Python asynchronous web apps and servers to communicate with each other, and positioned as an asynchronous successor to WSGI. WWW: https://github.com/django/asgiref/ Added: head/www/py-asgiref/ head/www/py-asgiref/Makefile (contents, props changed) head/www/py-asgiref/distinfo (contents, props changed) head/www/py-asgiref/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Sep 12 02:31:30 2019 (r511849) +++ head/www/Makefile Thu Sep 12 02:36:26 2019 (r511850) @@ -1445,6 +1445,7 @@ SUBDIR += py-amf SUBDIR += py-apachelog SUBDIR += py-arxiv + SUBDIR += py-asgiref SUBDIR += py-autobahn SUBDIR += py-aws-requests-auth SUBDIR += py-azure-common Added: head/www/py-asgiref/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-asgiref/Makefile Thu Sep 12 02:36:26 2019 (r511850) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= asgiref +PORTVERSION= 3.2.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= wen@FreeBSD.org +COMMENT= ASGI specs, helper code, and adapters + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=4.3.0:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest-asyncio>=0.10.0:devel/py-pytest-asyncio@${PY_FLAVOR} + +USES= python:3.5+ +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +do-test: + (cd ${WRKSRC} && pytest) + +.include <bsd.port.mk> Added: head/www/py-asgiref/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-asgiref/distinfo Thu Sep 12 02:36:26 2019 (r511850) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568247840 +SHA256 (asgiref-3.2.2.tar.gz) = f62b1c88ebf5fe95db202a372982970edcf375c1513d7e70717df0750f5c2b98 +SIZE (asgiref-3.2.2.tar.gz) = 16370 Added: head/www/py-asgiref/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-asgiref/pkg-descr Thu Sep 12 02:36:26 2019 (r511850) @@ -0,0 +1,5 @@ +ASGI is a standard for Python asynchronous web apps and servers to +communicate with each other, and positioned as an asynchronous +successor to WSGI. + +WWW: https://github.com/django/asgiref/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909120236.x8C2aQHX034733>