diff options
author | Wen Heping <wen@FreeBSD.org> | 2015-05-07 09:21:18 +0800 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2015-05-07 09:21:18 +0800 |
commit | 928c4f6829a93a02fbcd56dc857f95a07e039372 (patch) | |
tree | 7bbf897d6d5535a563f4457d7b69075db3ab95ad /databases/py-psycogreen | |
parent | 1fca747938646f38843013d5f559c517e0bd7a67 (diff) | |
download | freebsd-ports-gnome-928c4f6829a93a02fbcd56dc857f95a07e039372.tar.gz freebsd-ports-gnome-928c4f6829a93a02fbcd56dc857f95a07e039372.tar.zst freebsd-ports-gnome-928c4f6829a93a02fbcd56dc857f95a07e039372.zip |
The psycogreen package enables psycopg2 to work with coroutine libraries,
using asynchronous calls internally but offering a blocking interface so
that regular code can run unmodified.
WWW: https://bitbucket.org/dvarrazzo/psycogreen
PR: 199067
Submitted by: loic.blot@unix-experience.fr
Diffstat (limited to 'databases/py-psycogreen')
-rw-r--r-- | databases/py-psycogreen/Makefile | 15 | ||||
-rw-r--r-- | databases/py-psycogreen/distinfo | 2 | ||||
-rw-r--r-- | databases/py-psycogreen/pkg-descr | 5 |
3 files changed, 22 insertions, 0 deletions
diff --git a/databases/py-psycogreen/Makefile b/databases/py-psycogreen/Makefile new file mode 100644 index 000000000000..abc243969d62 --- /dev/null +++ b/databases/py-psycogreen/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= psycogreen +PORTVERSION= 1.0 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loic.blot@unix-experience.fr +COMMENT= Python library to enable psycopg2 to work with coroutine libraries + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> diff --git a/databases/py-psycogreen/distinfo b/databases/py-psycogreen/distinfo new file mode 100644 index 000000000000..067d489fc6c8 --- /dev/null +++ b/databases/py-psycogreen/distinfo @@ -0,0 +1,2 @@ +SHA256 (psycogreen-1.0.tar.gz) = 9acfa6cb5373bcf1eaf27c904d98d59c9f3bb0065cbb005f83ccc45055ace9a1 +SIZE (psycogreen-1.0.tar.gz) = 5052 diff --git a/databases/py-psycogreen/pkg-descr b/databases/py-psycogreen/pkg-descr new file mode 100644 index 000000000000..86092c675d8f --- /dev/null +++ b/databases/py-psycogreen/pkg-descr @@ -0,0 +1,5 @@ +The psycogreen package enables psycopg2 to work with coroutine libraries, +using asynchronous calls internally but offering a blocking interface so +that regular code can run unmodified. + +WWW: https://bitbucket.org/dvarrazzo/psycogreen |