svn commit: r468215 - in head/devel: . py-async_generator

William Grzybowski wg at FreeBSD.org
Tue Apr 24 14:25:08 UTC 2018


Author: wg
Date: Tue Apr 24 14:25:06 2018
New Revision: 468215
URL: https://svnweb.freebsd.org/changeset/ports/468215

Log:
  devel/py-async_generator: tiny library to add async generators to Python 3.5
  
  WWW: https://pypi.org/project/async_generator

Added:
  head/devel/py-async_generator/
  head/devel/py-async_generator/Makefile   (contents, props changed)
  head/devel/py-async_generator/distinfo   (contents, props changed)
  head/devel/py-async_generator/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Apr 24 14:16:46 2018	(r468214)
+++ head/devel/Makefile	Tue Apr 24 14:25:06 2018	(r468215)
@@ -4293,6 +4293,7 @@
     SUBDIR += py-astor
     SUBDIR += py-astroid
     SUBDIR += py-asttokens
+    SUBDIR += py-async_generator
     SUBDIR += py-async_timeout
     SUBDIR += py-asyncio
     SUBDIR += py-atomiclong

Added: head/devel/py-async_generator/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-async_generator/Makefile	Tue Apr 24 14:25:06 2018	(r468215)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	async_generator
+PORTVERSION=	1.5
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	wg at FreeBSD.org
+COMMENT=	Tiny library to add async generators to Python 3.5
+
+LICENSE=	MIT
+
+USES=		python:3.5+ zip
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-async_generator/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-async_generator/distinfo	Tue Apr 24 14:25:06 2018	(r468215)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1524581661
+SHA256 (async_generator-1.5.zip) = 392b776f4a158cc3b7ba5127d88d73eee10fa420e36d7099431c6b04fc0032cf
+SIZE (async_generator-1.5.zip) = 25021

Added: head/devel/py-async_generator/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-async_generator/pkg-descr	Tue Apr 24 14:25:06 2018	(r468215)
@@ -0,0 +1,3 @@
+This is a tiny library to add async generators†to Python 3.5.
+
+WWW: https://pypi.org/project/async_generator


More information about the svn-ports-head mailing list