From owner-svn-ports-all@freebsd.org Mon Jul 2 14:28:51 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97142102B471; Mon, 2 Jul 2018 14:28:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46FF08B4EB; Mon, 2 Jul 2018 14:28:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 23EEE6B11; Mon, 2 Jul 2018 14:28:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w62ESoGs053937; Mon, 2 Jul 2018 14:28:50 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w62ESoMi053933; Mon, 2 Jul 2018 14:28:50 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201807021428.w62ESoMi053933@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 2 Jul 2018 14:28:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r473743 - in head/databases: . py-pgdbconn X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/databases: . py-pgdbconn X-SVN-Commit-Revision: 473743 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jul 2018 14:28:51 -0000 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 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/