Date: Thu, 7 May 2015 01:21:18 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385589 - in head/databases: . py-psycogreen Message-ID: <201505070121.t471LIA5066527@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Thu May 7 01:21:18 2015 New Revision: 385589 URL: https://svnweb.freebsd.org/changeset/ports/385589 Log: 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 Added: head/databases/py-psycogreen/ head/databases/py-psycogreen/Makefile (contents, props changed) head/databases/py-psycogreen/distinfo (contents, props changed) head/databases/py-psycogreen/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Thu May 7 01:15:02 2015 (r385588) +++ head/databases/Makefile Thu May 7 01:21:18 2015 (r385589) @@ -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 Added: head/databases/py-psycogreen/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycogreen/Makefile Thu May 7 01:21:18 2015 (r385589) @@ -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> Added: head/databases/py-psycogreen/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycogreen/distinfo Thu May 7 01:21:18 2015 (r385589) @@ -0,0 +1,2 @@ +SHA256 (psycogreen-1.0.tar.gz) = 9acfa6cb5373bcf1eaf27c904d98d59c9f3bb0065cbb005f83ccc45055ace9a1 +SIZE (psycogreen-1.0.tar.gz) = 5052 Added: head/databases/py-psycogreen/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycogreen/pkg-descr Thu May 7 01:21:18 2015 (r385589) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505070121.t471LIA5066527>