svn commit: r493779 - in head/www: . py-starlette
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Feb 24 17:56:01 UTC 2019
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 <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= starlette
+PORTVERSION= 0.11.2
+CATEGORIES= www python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list