PQueue is a package providing low-level PQ protocol classes for

interacting with a PostgreSQL database. It supports version 3.0
of the protocol--the current primary version of protocol. The
package also provides a basic protocol transaction class. This
class keeps the state of the protocol in an interrupt safe manner,
and validates the integrity of the communication as messages are
received.

In general, you probably will never use this package directly,
unless you are writing a driver.

WWW:	http://python.projects.postgresql.org/

PR:		ports/130252
Submitted by:	Wen Heping <wenheping at gmail.com>
This commit is contained in:
Martin Wilke 2009-01-07 23:04:40 +00:00
parent 3be670582f
commit fdca75fe1c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=225425
5 changed files with 48 additions and 0 deletions

View File

@ -504,6 +504,7 @@
SUBDIR += py-mssql
SUBDIR += py-oops
SUBDIR += py-pg8000
SUBDIR += py-pg_pqueue
SUBDIR += py-psycopg
SUBDIR += py-psycopg2
SUBDIR += py-pyPgSQL

View File

@ -0,0 +1,29 @@
# Ports collection makefile for: py-pg_pqueue
# Date created: 07 Jan 2009
# Whom: Wen Heping <wenheping@gmail.com>
#
# $FreeBSD$
#
PORTNAME= pg_pqueue
PORTVERSION= 1.0.2
CATEGORIES= databases python
MASTER_SITES= http://python.projects.postgresql.org/files/ \
CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= wenheping@gmail.com
COMMENT= PostgreSQL PQ Protocol Modules
USE_PYTHON= 2.4+
USE_PYDISTUTILS= easy_install
PYEASYINSTALL_ARCHDEP= yes
.include <bsd.port.pre.mk>
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/changes.txt ${DOCSDIR}
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (pg_pqueue-1.0.2.tar.gz) = ca88e615a52182165a9a29395dfc5388
SHA256 (pg_pqueue-1.0.2.tar.gz) = 45b94cfa616f3e241a1fc791b6f9b6db5bd848d79d6599cb30064882d3829d0b
SIZE (pg_pqueue-1.0.2.tar.gz) = 16861

View File

@ -0,0 +1,12 @@
PQueue is a package providing low-level PQ protocol classes for
interacting with a PostgreSQL database. It supports version 3.0
of the protocol--the current primary version of protocol. The
package also provides a basic protocol transaction class. This
class keeps the state of the protocol in an interrupt safe manner,
and validates the integrity of the communication as messages are
received.
In general, you probably will never use this package directly,
unless you are writing a driver.
WWW: http://python.projects.postgresql.org/

View File

@ -0,0 +1,3 @@
%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
%%PORTDOCS%%%%DOCSDIR%%/changes.txt
%%PORTDOCS%%@dirrm %%DOCSDIR%%