From owner-svn-ports-head@freebsd.org Thu Sep 12 02:36:28 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1FE06E7B12; Thu, 12 Sep 2019 02:36:28 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46TNF802HMz3CDy; Thu, 12 Sep 2019 02:36:28 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BB63618198; Thu, 12 Sep 2019 02:36:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8C2aRTk034737; Thu, 12 Sep 2019 02:36:27 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8C2aQHX034733; Thu, 12 Sep 2019 02:36:26 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201909120236.x8C2aQHX034733@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 12 Sep 2019 02:36:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r511850 - in head/www: . py-asgiref X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: in head/www: . py-asgiref X-SVN-Commit-Revision: 511850 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Sep 2019 02:36:28 -0000 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 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/