From owner-svn-ports-head@FreeBSD.ORG  Thu May  7 01:21:20 2015
Return-Path: <owner-svn-ports-head@FreeBSD.ORG>
Delivered-To: svn-ports-head@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id 21B05341;
 Thu,  7 May 2015 01:21:20 +0000 (UTC)
Received: from svn.freebsd.org (svn.freebsd.org
 [IPv6:2001:1900:2254:2068::e6a:0])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id EAFEF1B06;
 Thu,  7 May 2015 01:21:19 +0000 (UTC)
Received: from svn.freebsd.org ([127.0.1.70])
 by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t471LJHC066532;
 Thu, 7 May 2015 01:21:19 GMT (envelope-from wen@FreeBSD.org)
Received: (from wen@localhost)
 by svn.freebsd.org (8.14.9/8.14.9/Submit) id t471LIA5066527;
 Thu, 7 May 2015 01:21:18 GMT (envelope-from wen@FreeBSD.org)
Message-Id: <201505070121.t471LIA5066527@svn.freebsd.org>
X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org
 using -f
From: Wen Heping <wen@FreeBSD.org>
Date: Thu, 7 May 2015 01:21:18 +0000 (UTC)
To: ports-committers@freebsd.org, svn-ports-all@freebsd.org,
 svn-ports-head@freebsd.org
Subject: svn commit: r385589 - in head/databases: . py-psycogreen
X-SVN-Group: ports-head
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-BeenThere: svn-ports-head@freebsd.org
X-Mailman-Version: 2.1.20
Precedence: list
List-Id: SVN commit messages for the ports tree for head
 <svn-ports-head.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/svn-ports-head>,
 <mailto:svn-ports-head-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-ports-head/>
List-Post: <mailto:svn-ports-head@freebsd.org>
List-Help: <mailto:svn-ports-head-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-ports-head>,
 <mailto:svn-ports-head-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 07 May 2015 01:21:20 -0000

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