summaryrefslogtreecommitdiff
path: root/databases/virtualpg (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* databases/virtualpg: Update to 2.0.1Loïc Bartoletti2020-11-122-4/+4
| | | | - fixing a bug affecting INSERT
* databases/virtualpg: Update to 2.0.0Loïc Bartoletti2020-09-114-12/+21
| | | | | | | | | | | | | - Add pkg-plist - Update description Short summary of differences between earlier versions and v2: - Now VirtualPG is available as both a standard C/C++ library (libvirtualpg) and a dynamic extension module to SQLite (mod_virtualpg). - Now the user can freely choose his/her preferred format for DATE / TIME / TIMESTAMP values. - Transactions (BEGIN / COMMIT / ROLLBACK) are now fully honoured also on the PostgreSQL side. - Write operations (INSER / UPDATE / DELETE) are now allowed only if the PostgreSQL user has the corresponding GRANT permissions. - Write operations can be enabled only for PostgreSQL Tables explicitly declaring a PRIMARY KEY.
* Change my mail address to lbartoletti@FreeBSD.orgLoïc Bartoletti2020-01-141-2/+2
| | | | | Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D23169
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-0/+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
* Update LICENSESunpoet Po-Chuan Hsieh2017-09-241-2/+2
| | | | Approved by: portmgr (blanket)
* Update to 1.0.2Sunpoet Po-Chuan Hsieh2017-06-113-4/+6
| | | | | | | | | - While I'm here: - Add LICENSE_FILE - Update WWW PR: 219770 Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer)
* Update maintainer email addressDanilo G. Baio2017-06-101-1/+1
| | | | | | | | | Ownership of the former email address confirmed by email PR: 219791 Submitted by: lbartoletti@tuxfamily.org (maintainer) Approved by: garga (mentor) Differential Revision: https://reviews.freebsd.org/D11088
* Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.Mathieu Arnold2016-04-251-2/+1
| | | | | | | | | | | While there replace USE_SQLITE=x by USES=sqlite:x. PR: 208971 Submitted by: mat Exp-run by: antoine With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D5951
* VirtualPG is a loadable dynamic extension to both SQLite and SpatiaLite.Pawel Pekala2015-02-213-0/+37
Its intended scope is supporting direct SQL access to PostgreSQL and PostGIS own tables, so to make any possible kind of data exchange between these two popular open source Spatial DBMSes as straightforward and simple as possible. WWW: http://www.gaia-gis.it/fossil/virtualpg/index PR: 197261 Submitted by: Loïc BARTOLETTI <coder@tuxfamily.org>