From owner-cvs-ports@FreeBSD.ORG Fri Dec 18 19:22:03 2009 Return-Path: Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B496106568D; Fri, 18 Dec 2009 19:22:03 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EF7118FC1A; Fri, 18 Dec 2009 19:22:02 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nBIJM2Hu038052; Fri, 18 Dec 2009 19:22:02 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nBIJM2I3038051; Fri, 18 Dec 2009 19:22:02 GMT (envelope-from pav) Message-Id: <200912181922.nBIJM2I3038051@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 18 Dec 2009 19:22:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/databases Makefile ports/databases/py-postgresql Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Dec 2009 19:22:03 -0000 pav 2009-12-18 19:22:02 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/py-postgresql Makefile distinfo pkg-descr pkg-plist Log: Pure Python All code, at first, is written in pure Python so that py-postgresql will work anywhere that you can install Python 3. Optimizations in C are made where needed, but are always optional. Prepared Statements Using the PG-API interface, protocol-level prepared statements may be created and used multiple times. db.prepare(sql)(*args) COPY Support Use the convenient COPY interface to directly copy data from one connection to another. No intermediate files or tricks are necessary. Arrays and Composite Typescw Arrays and composites are fully supported. Queries requesting them will returns objects that provide access to the elements within. "pg_python" Quick Console Get a Python console with a connection to PostgreSQL for quick tests and simple scripts. WWW: http://python.projects.postgresql.org/ PR: ports/137782 Submitted by: Volodymyr Kostyrko Revision Changes Path 1.818 +1 -0 ports/databases/Makefile 1.1 +27 -0 ports/databases/py-postgresql/Makefile (new) 1.1 +3 -0 ports/databases/py-postgresql/distinfo (new) 1.1 +22 -0 ports/databases/py-postgresql/pkg-descr (new) 1.1 +258 -0 ports/databases/py-postgresql/pkg-plist (new)