aboutsummaryrefslogtreecommitdiff
path: root/databases/py-postgresql
Commit message (Collapse)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - update to 1.1.0Ruslan Makhmatkhanov2012-10-104-76/+24
| | | | | | | | | | | | | | | | | | | | | - trim Makefile header completely (requested by maintainer) - add CHEESESHOP and make it primary MASTER_SITE, because other locations doesn't hold the new release yet - remove one distfile mirror (requested by maintainer) - add LICENSE (BSD) - replace USE_XZ with USE_ZIP, since it was changed upstream - tune PYDISTUTILS_PKGNAME - move python32 plist stuff into separate file changelog: http://pgfoundry.org/pipermail/python-general/2012-October/001003.html PR: 172544 (but I can't see it in GNATS because of hub transition) Submitted by: rm (myself) Approved by: Volodymyr Kostyrko <c.kworr at gmail dot com> (maintainer, by mail) Notes: svn path=/head/; revision=305647
* - Update to 1.0.4 [1]Nicola Vitale2012-07-093-12/+27
| | | | | | | | | | | | - Fix pkg-plist when Python version >= 3.2 (solution approved by maintainer via private email) PR: ports/167569 Submitted by: William Grzybowski <william88 at gmail.com> Approved by: Volodymyr Kostyrko <c.kworr at gmail.com> (maintainer) Notes: svn path=/head/; revision=300693
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Update to 1.0.2Sunpoet Po-Chuan Hsieh2010-10-063-4/+8
| | | | | | | | | PR: ports/150773 Submitted by: Volodymyr Kostyrko <c.kworr at gmail.com> (maintainer) Approved by: pgollucci (mentor) Notes: svn path=/head/; revision=262490
* Update to version 1.0.1Josh Paetzel2010-07-043-21/+126
| | | | | | | | | | PR: ports/148148 Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com> Approved by: itetcu@ (mentor) implicit Feature safe: yes Notes: svn path=/head/; revision=257364
* - Update to 0.9.3Li-Wen Hsu2010-01-312-4/+4
| | | | | | | | PR: ports/142473 Submitted by: Volodymyr Kostyrko <c.kworr AT gmail.com> (maintainer) Notes: svn path=/head/; revision=248934
* Pure PythonPav Lucistnik2009-12-184-0/+310
All code, at first, is written in pure Python so that py-postgresql will work anywhere that you can install Python 3. Optimizations in C are made where needed, but are always optional. Prepared Statements Using the PG-API interface, protocol-level prepared statements may be created and used multiple times. db.prepare(sql)(*args) COPY Support Use the convenient COPY interface to directly copy data from one connection to another. No intermediate files or tricks are necessary. Arrays and Composite Typescw Arrays and composites are fully supported. Queries requesting them will returns objects that provide access to the elements within. "pg_python" Quick Console Get a Python console with a connection to PostgreSQL for quick tests and simple scripts. WWW: http://python.projects.postgresql.org/ PR: ports/137782 Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com> Notes: svn path=/head/; revision=246167