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>
23 lines
528 B
Makefile
23 lines
528 B
Makefile
# 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>
|