svn commit: r312264 - in head/devel: . py-bluelet
Martin Wilke
miwi at FreeBSD.org
Fri Feb 15 02:49:07 UTC 2013
Author: miwi
Date: Fri Feb 15 02:49:05 2013
New Revision: 312264
URL: http://svnweb.freebsd.org/changeset/ports/312264
Log:
Bluelet is a simple, pure-Python solution for writing intelligible asynchronous
socket applications.
WWW: https://github.com/sampsyo/bluelet
PR: ports/176108
Submitted by: Mark Felder <feld at feld.me>
Added:
head/devel/py-bluelet/
head/devel/py-bluelet/Makefile (contents, props changed)
head/devel/py-bluelet/distinfo (contents, props changed)
head/devel/py-bluelet/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Fri Feb 15 02:47:46 2013 (r312263)
+++ head/devel/Makefile Fri Feb 15 02:49:05 2013 (r312264)
@@ -3387,6 +3387,7 @@
SUBDIR += py-bison
SUBDIR += py-bitarray
SUBDIR += py-bitstring
+ SUBDIR += py-bluelet
SUBDIR += py-boto
SUBDIR += py-botocore
SUBDIR += py-cclib
Added: head/devel/py-bluelet/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-bluelet/Makefile Fri Feb 15 02:49:05 2013 (r312264)
@@ -0,0 +1,22 @@
+# Created by: Mark Felder <feld at feld.me>
+# $FreeBSD$
+
+PORTNAME= bluelet
+PORTVERSION= 0.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= feld at feld.me
+COMMENT= Pure-Python asynchronous I/O using coroutines
+
+LICENSE= MIT
+
+USE_PYTHON= yes
+USE_PYDISTUTILS= yes
+
+PLIST_FILES= %%PYTHON_SITELIBDIR%%/bluelet.py \
+ %%PYTHON_SITELIBDIR%%/bluelet.pyc \
+ %%PYTHON_SITELIBDIR%%/bluelet.pyo
+
+.include <bsd.port.mk>
Added: head/devel/py-bluelet/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-bluelet/distinfo Fri Feb 15 02:49:05 2013 (r312264)
@@ -0,0 +1,2 @@
+SHA256 (bluelet-0.1.tar.gz) = 7fe0d3034d648f19a60304d710b68a7b9ed710f0b3c6c5f7fa0c8fe3d935912b
+SIZE (bluelet-0.1.tar.gz) = 9328
Added: head/devel/py-bluelet/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-bluelet/pkg-descr Fri Feb 15 02:49:05 2013 (r312264)
@@ -0,0 +1,4 @@
+Bluelet is a simple, pure-Python solution for writing intelligible asynchronous
+socket applications.
+
+WWW: https://github.com/sampsyo/bluelet
More information about the svn-ports-head
mailing list