Date: Sat, 23 Apr 2016 19:46:19 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413906 - in head/databases: . py-psycopg2cffi Message-ID: <201604231946.u3NJkJiL095607@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Sat Apr 23 19:46:18 2016 New Revision: 413906 URL: https://svnweb.freebsd.org/changeset/ports/413906 Log: databases/py-psycopg2cffi: create port psycopg2cffi is an implementation of the psycopg2 module using cffi, the C Foreign Function Interface for Python. psycopg2 is a PostgreSQL database adapter for the Python programming language. WWW: https://github.com/chtd/psycopg2cffi PR: 208686 Submitted by: Joseph Mingrone <jrm@ftfl.ca> Added: head/databases/py-psycopg2cffi/ head/databases/py-psycopg2cffi/Makefile (contents, props changed) head/databases/py-psycopg2cffi/distinfo (contents, props changed) head/databases/py-psycopg2cffi/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sat Apr 23 19:10:21 2016 (r413905) +++ head/databases/Makefile Sat Apr 23 19:46:18 2016 (r413906) @@ -759,6 +759,7 @@ SUBDIR += py-psycogreen SUBDIR += py-psycopg SUBDIR += py-psycopg2 + SUBDIR += py-psycopg2cffi SUBDIR += py-pyPgSQL SUBDIR += py-pyhs SUBDIR += py-pylibmc Added: head/databases/py-psycopg2cffi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycopg2cffi/Makefile Sat Apr 23 19:46:18 2016 (r413906) @@ -0,0 +1,23 @@ +# Created by: Joseph Mingrone <jrm@ftfl.ca> +# $FreeBSD$ + +PORTNAME= psycopg2cffi +PORTVERSION= 2.7.4 +CATEGORIES= databases python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jrm@ftfl.ca +COMMENT= Implementation of the psycopg2 module using cffi + +LICENSE= LGPL3+ + +BUILD_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/_cffi_backend.so:devel/py-cffi +RUN_DEPENDS= ${PYTHONPREFIX_SITELIBDIR}/_cffi_backend.so:devel/py-cffi + +NO_ARCH= yes + +USE_PYTHON= autoplist distutils +USES= pgsql python + +.include <bsd.port.mk> Added: head/databases/py-psycopg2cffi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycopg2cffi/distinfo Sat Apr 23 19:46:18 2016 (r413906) @@ -0,0 +1,2 @@ +SHA256 (psycopg2cffi-2.7.4.tar.gz) = ade6927a58c8deeaddcde0dea57c2c0e822b3a3ec703cebb63b4c0fcf98d2ed1 +SIZE (psycopg2cffi-2.7.4.tar.gz) = 62017 Added: head/databases/py-psycopg2cffi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/py-psycopg2cffi/pkg-descr Sat Apr 23 19:46:18 2016 (r413906) @@ -0,0 +1,5 @@ +psycopg2cffi is an implementation of the psycopg2 module using cffi, the C +Foreign Function Interface for Python. psycopg2 is a PostgreSQL database +adapter for the Python programming language. + +WWW: https://github.com/chtd/psycopg2cffi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604231946.u3NJkJiL095607>