From owner-svn-ports-head@freebsd.org Sun Feb 24 17:56:01 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 116501505633; Sun, 24 Feb 2019 17:56:01 +0000 (UTC) (envelope-from sunpoet@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 A631476B97; Sun, 24 Feb 2019 17:56:00 +0000 (UTC) (envelope-from sunpoet@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 A95178C73; Sun, 24 Feb 2019 17:55:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x1OHtwSA038404; Sun, 24 Feb 2019 17:55:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x1OHtvkH038401; Sun, 24 Feb 2019 17:55:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201902241755.x1OHtvkH038401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 24 Feb 2019 17:55:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493779 - in head/www: . py-starlette X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . py-starlette X-SVN-Commit-Revision: 493779 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A631476B97 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] 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: Sun, 24 Feb 2019 17:56:01 -0000 Author: sunpoet Date: Sun Feb 24 17:55:57 2019 New Revision: 493779 URL: https://svnweb.freebsd.org/changeset/ports/493779 Log: Add py-starlette 0.11.2 Starlette is a lightweight ASGI framework/toolkit, which is ideal for building high performance asyncio services. It is production-ready, and gives you the following: - Seriously impressive performance. - WebSocket support. - GraphQL support. - In-process background tasks. - Startup and shutdown events. - Test client built on requests. - CORS, GZip, Static Files, Streaming responses. - Session and Cookie support. - 100% test coverage. - 100% type annotated codebase. - Zero hard dependencies. WWW: https://github.com/encode/starlette Added: head/www/py-starlette/ head/www/py-starlette/Makefile (contents, props changed) head/www/py-starlette/distinfo (contents, props changed) head/www/py-starlette/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sun Feb 24 17:55:51 2019 (r493778) +++ head/www/Makefile Sun Feb 24 17:55:57 2019 (r493779) @@ -1862,6 +1862,7 @@ SUBDIR += py-splinter SUBDIR += py-spyne SUBDIR += py-sseclient + SUBDIR += py-starlette SUBDIR += py-surl SUBDIR += py-swapper SUBDIR += py-textile Added: head/www/py-starlette/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-starlette/Makefile Sun Feb 24 17:55:57 2019 (r493779) @@ -0,0 +1,32 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= starlette +PORTVERSION= 0.11.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Lightweight ASGI framework/toolkit + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiofiles>=0:devel/py-aiofiles@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}asyncpg>=0:databases/py-asyncpg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}graphene>=0:devel/py-graphene@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}itsdangerous>=0:security/py-itsdangerous@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-multipart>=0:www/py-python-multipart@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}sqlalchemy12>=0:databases/py-sqlalchemy12@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ujson>=0:devel/py-ujson@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/www/py-starlette/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-starlette/distinfo Sun Feb 24 17:55:57 2019 (r493779) @@ -0,0 +1,3 @@ +TIMESTAMP = 1551019701 +SHA256 (starlette-0.11.2.tar.gz) = 5154988d67d01f65813e17c61b8c73defe8b98c3daae525cdd8488f854b744dd +SIZE (starlette-0.11.2.tar.gz) = 43775 Added: head/www/py-starlette/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-starlette/pkg-descr Sun Feb 24 17:55:57 2019 (r493779) @@ -0,0 +1,17 @@ +Starlette is a lightweight ASGI framework/toolkit, which is ideal for building +high performance asyncio services. + +It is production-ready, and gives you the following: +- Seriously impressive performance. +- WebSocket support. +- GraphQL support. +- In-process background tasks. +- Startup and shutdown events. +- Test client built on requests. +- CORS, GZip, Static Files, Streaming responses. +- Session and Cookie support. +- 100% test coverage. +- 100% type annotated codebase. +- Zero hard dependencies. + +WWW: https://github.com/encode/starlette