diff options
author | Wen Heping <wen@FreeBSD.org> | 2015-05-07 01:21:18 +0000 |
---|---|---|
committer | Wen Heping <wen@FreeBSD.org> | 2015-05-07 01:21:18 +0000 |
commit | 928c4f6829a93a02fbcd56dc857f95a07e039372 (patch) | |
tree | 7bbf897d6d5535a563f4457d7b69075db3ab95ad | |
parent | 1fca747938646f38843013d5f559c517e0bd7a67 (diff) | |
download | ports-928c4f6829a93a02fbcd56dc857f95a07e039372.tar.gz ports-928c4f6829a93a02fbcd56dc857f95a07e039372.zip |
Notes
-rw-r--r-- | databases/Makefile | 1 | ||||
-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 |
4 files changed, 23 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index e6a0386c99bd..9871925242b9 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -742,6 +742,7 @@ SUBDIR += py-postgresql SUBDIR += py-psycopg SUBDIR += py-psycopg2 + SUBDIR += py-psycogreen SUBDIR += py-pyPgSQL SUBDIR += py-pyhs SUBDIR += py-pylibmc 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 |