aboutsummaryrefslogtreecommitdiff
path: root/databases/py-postgresql
Commit message (Collapse)AuthorAgeFilesLines
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* Switch default python3 version from 3.3 to 3.4.Dmitry Sivachenko2015-01-101-1/+1
| | | | | | | | | Bump PORTREVISIONs for the affected ports. Exp-run by: antoine Notes: svn path=/head/; revision=376731
* databases/py-postgresql: Support python 3.4John Marino2014-11-281-2/+2
| | | | | | | | | | | | When python 3 only is specified, building the port tries to install python 3.3 even if python 3.4 is requested, so this change addresses that. PR: 194656 Submitted by: Axel Rau (chaos1.de) Approved by: maintainer timeout Notes: svn path=/head/; revision=373539
* Convert USES=pgsql and USES=python:3Baptiste Daroussin2014-10-081-5/+2
| | | | Notes: svn path=/head/; revision=370466
* Convert d* to USES=zipBaptiste Daroussin2014-03-071-1/+1
| | | | Notes: svn path=/head/; revision=347405
* databases/py-postgresql: remove local plist hack and support stagingRuslan Makhmatkhanov2014-03-033-340/+7
| | | | | | | | | | | | | - clarify the license (BSD3C) - use 3 in USE_PYTHON - convert to using auto-generated packing list and remove NO_STAGE - remove local plist hack - it is now handled by bsd.python.mk - bump PORTREVISION for the case Approved by: portmgr (blanket) Notes: svn path=/head/; revision=346881
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340671
* 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