Commit graph

7 commits

Author SHA1 Message Date
Martin Wilke
67a8a87cdc - Remove unnecessary dependencies
Submitted by:	Josh Paetzel via irc
2007-12-22 23:11:40 +00:00
Gabor Kovesdan
42542fb076 - Remove the DESTDIR modifications from individual ports as we have a new,
fully chrooted DESTDIR, which does not need such any more.

Sponsored by:	Google Summer of Code 2007
Approved by:	portmgr (pav)
2007-08-04 11:41:30 +00:00
Martin Wilke
1995c66e00 - Update to 2.0.6
- Respect NOPORTEXAMPLES
- Drop FreeBSD 4.X gruft
2007-07-02 15:23:00 +00:00
Martin Wilke
e6bdf477c5 - Fix build with gcc 4.X
PR:		108063
Submitted by:	trasz <trasz@pin.if.uz.zgora.pl>
2007-01-18 00:43:18 +00:00
Martin Wilke
18fd48bc97 - Add backup MASTER_SITES 2006-11-22 20:23:52 +00:00
Martin Wilke
887f3f38c3 - Update to 2.0.5.1
- Changlog here: http://initd.org/pub/software/psycopg/ChangeLog
2006-09-02 13:48:02 +00:00
Martin Wilke
c242443a38 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/projects/psycopg2

Approved by:	krion (mentor)
2006-08-10 19:35:17 +00:00