Date: Mon, 2 Jul 2018 14:28:50 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473743 - in head/databases: . py-pgdbconn Message-ID: <201807021428.w62ESoMi053933@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Jul 2 14:28:50 2018 New Revision: 473743 URL: https://svnweb.freebsd.org/changeset/ports/473743 Log: Add databases/py-pgdbconn, Object-oriented layer over Psycopg2 to connect and interact with Postgres databases. Sponsored by: Absolight Added: head/databases/py-pgdbconn/ head/databases/py-pgdbconn/Makefile (contents, props changed) head/databases/py-pgdbconn/distinfo (contents, props changed) head/databases/py-pgdbconn/pkg-descr (contents, props changed) Modified: head/databases/Makefile (contents, props changed) Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Mon Jul 2 14:17:52 2018 (r473742) +++ head/databases/Makefile Mon Jul 2 14:28:50 2018 (r473743) @@ -815,6 +815,7 @@ SUBDIR += py-pg8000 SUBDIR += py-pg_pqueue SUBDIR += py-pgcli + SUBDIR += py-pgdbconn SUBDIR += py-pglite SUBDIR += py-pgspecial SUBDIR += py-pgxnclient Added: head/databases/py-pgdbconn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pgdbconn/Makefile Mon Jul 2 14:28:50 2018 (r473743) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= pgdbconn +PORTVERSION= 0.8.0 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Object-oriented layer to connect and interact with PostgreSQL databases + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.5:databases/py-psycopg2@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/databases/py-pgdbconn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pgdbconn/distinfo Mon Jul 2 14:28:50 2018 (r473743) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530540909 +SHA256 (pgdbconn-0.8.0.tar.gz) = 1552f86523940f7cb36719de827574a0744728f8647a0649a758a2974b093ef8 +SIZE (pgdbconn-0.8.0.tar.gz) = 11866 Added: head/databases/py-pgdbconn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-pgdbconn/pkg-descr Mon Jul 2 14:28:50 2018 (r473743) @@ -0,0 +1,6 @@ +PgDbConn is an offshoot from the Perseas project (started as Pyrseas) to +isolate and generalize the Postgres database connection code so that it can be +used in other Perseas products, such as a web application to update Postgres +tables. + +WWW: https://pypi.org/project/pgdbconn/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807021428.w62ESoMi053933>