Index: head/databases/py-psycopg2/Makefile =================================================================== --- head/databases/py-psycopg2/Makefile (revision 439305) +++ head/databases/py-psycopg2/Makefile (revision 439306) @@ -1,35 +1,36 @@ # Created by: Martin Wilke # $FreeBSD$ PORTNAME= psycopg2 -PORTVERSION= 2.6.2 +PORTVERSION= 2.7.1 CATEGORIES= databases python -MASTER_SITES= http://initd.org/psycopg/tarballs/PSYCOPG-${PORTVERSION:R:S|.|-|}/ \ - CHEESESHOP +MASTER_SITES= CHEESESHOP \ + http://initd.org/psycopg/tarballs/PSYCOPG-${PORTVERSION:R:S|.|-|}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= High performance Python adapter for PostgreSQL LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/doc/COPYING.LESSER OPTIONS_DEFINE= DOCS EXAMPLES USE_PYTHON= autoplist concurrent distutils USES?= pgsql python PORTDOCS= AUTHORS INSTALL NEWS PKG-INFO README.rst PORTEXAMPLES= * post-install: ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/ .include Index: head/databases/py-psycopg2/distinfo =================================================================== --- head/databases/py-psycopg2/distinfo (revision 439305) +++ head/databases/py-psycopg2/distinfo (revision 439306) @@ -1,3 +1,3 @@ -TIMESTAMP = 1477046087 -SHA256 (psycopg2-2.6.2.tar.gz) = 70490e12ed9c5c818ecd85d185d363335cc8a8cbf7212e3c185431c79ff8c05c -SIZE (psycopg2-2.6.2.tar.gz) = 376348 +TIMESTAMP = 1492961252 +SHA256 (psycopg2-2.7.1.tar.gz) = 86c9355f5374b008c8479bc00023b295c07d508f7c3b91dbd2e74f8925b1d9c6 +SIZE (psycopg2-2.7.1.tar.gz) = 421034 Index: head/databases/py-psycopg2/pkg-descr =================================================================== --- head/databases/py-psycopg2/pkg-descr (revision 439305) +++ head/databases/py-psycopg2/pkg-descr (revision 439306) @@ -1,14 +1,15 @@ psycopg2 is a PostgreSQL database adapter for the Python programming language. It was written from scratch with the aim of being small, fast and stable. It supports the full Python DBAPI-2.0 and is thread safe. psycopg2 is different from the other database adapter because it was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a conspicuous number of concurrent INSERTs or UPDATEs. Every open Python connection keeps a pool of real (UNIX or TCP/IP) connections to the database. Every time a new cursor is created, a new connection does not need to be opened; instead one of the unused connections from the pool is used. That makes psycopg very fast in typical client-server applications that create a servicing thread every time a client request arrives. WWW: http://initd.org/psycopg/ +WWW: https://github.com/psycopg/psycopg2