svn commit: r534338 - in head/devel: . py-curio

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Fri May 8 08:47:03 UTC 2020


Author: sunpoet
Date: Fri May  8 08:47:02 2020
New Revision: 534338
URL: https://svnweb.freebsd.org/changeset/ports/534338

Log:
  Add py-curio 1.2
  
  Curio is a coroutine-based library for concurrent Python systems programming. It
  provides standard programming abstractions such as as tasks, sockets, files,
  locks, and queues. It works on Unix and Windows. You'll find it to be familiar,
  small, fast, and fun.
  
  WWW: https://github.com/dabeaz/curio

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May  8 08:46:55 2020	(r534337)
+++ head/devel/Makefile	Fri May  8 08:47:02 2020	(r534338)
@@ -4289,6 +4289,7 @@
     SUBDIR += py-crcmod
     SUBDIR += py-ctags
     SUBDIR += py-cuisine
+    SUBDIR += py-curio
     SUBDIR += py-cursive
     SUBDIR += py-curtsies
     SUBDIR += py-cxx

Added: head/devel/py-curio/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-curio/Makefile	Fri May  8 08:47:02 2020	(r534338)
@@ -0,0 +1,21 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	curio
+PORTVERSION=	1.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-curio/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-curio/distinfo	Fri May  8 08:47:02 2020	(r534338)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588777609
+SHA256 (curio-1.2.tar.gz) = 90f320fafb3f5b791f25ffafa7b561cc980376de173afd575a2114380de7939b
+SIZE (curio-1.2.tar.gz) = 228413

Added: head/devel/py-curio/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-curio/pkg-descr	Fri May  8 08:47:02 2020	(r534338)
@@ -0,0 +1,6 @@
+Curio is a coroutine-based library for concurrent Python systems programming. It
+provides standard programming abstractions such as as tasks, sockets, files,
+locks, and queues. It works on Unix and Windows. You'll find it to be familiar,
+small, fast, and fun.
+
+WWW: https://github.com/dabeaz/curio


More information about the svn-ports-head mailing list