Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 May 2020 08:47:02 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r534338 - in head/devel: . py-curio
Message-ID:  <202005080847.0488l2XP032311@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	curio
+PORTVERSION=	1.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005080847.0488l2XP032311>