diff --git a/databases/py-psycopg2/Makefile b/databases/py-psycopg2/Makefile index 3acc0c4b9b39..11bd2aa50f6e 100644 --- a/databases/py-psycopg2/Makefile +++ b/databases/py-psycopg2/Makefile @@ -1,48 +1,47 @@ # New ports collection makefile for: py-psycopg2 # Date created: 1 August 2006 # Whom: Martin Wilke # # $FreeBSD$ # PORTNAME= psycopg2 -PORTVERSION= 2.4.4 +PORTVERSION= 2.4.5 CATEGORIES= databases python MASTER_SITES= http://initd.org/psycopg/tarballs/PSYCOPG-2-4/ \ - ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= miwi + CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= miwi@FreeBSD.org COMMENT= The high performance Python adapter for PostgreSQL USE_PGSQL= yes # Python3 ready USE_PYTHON= yes USE_PYDISTUTILS= yes DOCSDIR= ${PREFIX}/share/doc/py-psycopg2 EXAMPLESDIR= ${PREFIX}/share/examples/py-psycopg2 EXAMPLES= binary.py copy_from.py copy_to.py cursor.py dialtone.py \ dict.py dt.py encoding.py fetch.py lastrowid.py lobject.py \ mogrify.py myfirstrecipe.py notify.py simple.py somehackers.jpg \ threads.py typecast.py tz.py usercast.py whereareyou.jpg DOCS= AUTHORS ChangeLog INSTALL README NEWS PKG-INFO post-install: .if !defined(NOPORTEXAMPLES) @${MKDIR} ${EXAMPLESDIR} .for f in ${EXAMPLES} @${INSTALL_DATA} ${WRKSRC}/examples/${f} ${EXAMPLESDIR} .endfor .endif .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} .endfor .endif .include diff --git a/databases/py-psycopg2/distinfo b/databases/py-psycopg2/distinfo index 671494468017..efc56cc0c110 100644 --- a/databases/py-psycopg2/distinfo +++ b/databases/py-psycopg2/distinfo @@ -1,2 +1,2 @@ -SHA256 (psycopg2-2.4.4.tar.gz) = a219c0ec05c65dcfddc64fd39bdc4844e1d581ace74d6d82d6c2209348ae7da4 -SIZE (psycopg2-2.4.4.tar.gz) = 691109 +SHA256 (psycopg2-2.4.5.tar.gz) = 48b702a7ca479e1bc2c1a7b81875a07d474298132605993e2cb979f5e08277d7 +SIZE (psycopg2-2.4.5.tar.gz) = 719343 diff --git a/databases/py-psycopg2/pkg-descr b/databases/py-psycopg2/pkg-descr index fb20d644c372..75a4c558baa7 100644 --- a/databases/py-psycopg2/pkg-descr +++ b/databases/py-psycopg2/pkg-descr @@ -1,14 +1,14 @@ 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: http://initd.org/psycopg