aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql93-client
Commit message (Collapse)AuthorAgeFilesLines
* Remove expired ports:Rene Ladan2019-01-091-21/+0
| | | | | | | | | | | | | | 2019-01-08 databases/postgresql93-client: PostgreSQL-9.3 has reached end-of-life 2019-01-08 databases/postgresql93-docs: PostgreSQL-9.3 has reached end-of-life 2019-01-08 databases/postgresql93-contrib: PostgreSQL-9.3 has reached end-of-life 2019-01-08 databases/postgresql93-pltcl: PostgreSQL-9.3 has reached end-of-life databases/postgresql93-pgtcl: part of expired PostgreSQL 9.3 2019-01-08 databases/postgresql93-plperl: PostgreSQL-9.3 has reached end-of-life 2019-01-08 databases/postgresql93-plpython: PostgreSQL-9.3 has reached end-of-life 2019-01-08 databases/postgresql93-server: PostgreSQL-9.3 has reached end-of-life Notes: svn path=/head/; revision=489816
* 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
* The PostgreSQL Global Development Group has released an update to allPalle Girgensohn2017-09-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | supported versions of our database system, including 9.6.5, 9.5.9, 9.4.14, 9.3.19, and 9.2.23. This release includes fixes that prevent a crash in pg_restore when using parallel mode. It also patches over a few other bugs reported since the last releases in August. Additionally, in 9.4.14 only, there is a fix to an issue with walsenders preventing primary-server shutdown unless immediate shutdown mode is used. Users should plan to update at the next convenient downtime. Bug Fixes and Improvements This update also fixes a number of bugs reported in the last few weeks. Some of these issues affect only version 9.6, but many affect all supported versions: * Show foreign tables in information_schema.table_privileges view. This fix applies to new databases, see the release notes for the procedure to apply the fix to an existing database. * Correctly identify columns that are of a range type or domain type over a composite type or domain type being searched for * Prevent crash when passing fixed-length pass-by-reference data types to parallel worker processes * Change ecpg’s parser to allow RETURNING clauses without attached C variables * Change ecpg’s parser to recognize backslash continuation of C preprocessor command lines * Improve selection of compiler flags for PL/Perl on Windows Notes: svn path=/head/; revision=449278
* - Include pg_regress to all postgresql*-client ports, to allow running ↵Dmitry Marakasov2017-07-171-1/+2
| | | | | | | | | | regression tests for postgresql extensions PR: 217874 Approved by: maintainer timeout (pgsql, 4 months) Notes: svn path=/head/; revision=446065
* Some binaries where moved from contrib to base in 9.5, like pgbench andPalle Girgensohn2016-01-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | pg_upgrade. Other where added in 9.5, but the port failed to install them. Make sure they are properly installed by the correct port (-client or -server) [1] Remove unused and hence confusing OSSP_UUID parameters from Makefile [2] Add options to allow user to be set for the backup script in periodic. Add this option only to 9.5 for now. It will be updated to other servers at next regular patch release. [3] The path to perl in hard coded into pgxs/src/Makefile.global which is then installed. Hence, we must depend on perl when that file is installed. Noticed by: Paul Guyot [1] PR: 192387 [2] PR: 172110 [3] PR: 206046 [4] Notes: svn path=/head/; revision=406034
* Update PostgreSQL port to latest version.Palle Girgensohn2015-10-081-1/+0
| | | | | | | | | | | | | | | | | | | | | | | Two security issues have been fixed in this release which affect users of specific PostgreSQL features: CVE-2015-5289: json or jsonb input values constructed from arbitrary user input can crash the PostgreSQL server and cause a denial of service. CVE-2015-5288: The crypt( function included with the optional pgCrypto extension could be exploited to read a few additional bytes of memory. No working exploit for this issue has been developed. This update will also disable SSL renegotiation by default; previously, it was enabled by default. SSL renegotiation will be removed entirely in PostgreSQL versions 9.5 and later. URL: http://www.postgresql.org/about/news/1615/ Security: CVE-2015-5288 CVE-2015-5289 Notes: svn path=/head/; revision=398895
* Update PostgreSQL ports to latest version.Palle Girgensohn2015-05-221-1/+1
| | | | | | | | | | | | | | | | | | Data Corruption Fix For users of PostgreSQL versions 9.3 or 9.4, this release fixes a problem where the database will fail to protect against "multixact wraparound", resulting in data corruption or loss. Users with a high transaction rate (1 million or more per hour) in a database with many foreign keys are especially vulnerable. We strongly urge all users of 9.4 and 9.3 to update their installations in the next few days. Users of versions 9.2 and earlier are not affected by this issue. Security: fc38cd83-00b3-11e5-8ebd-0026551a22dc Notes: svn path=/head/; revision=387089
* Revert the change from readline to libedit, and instead make libedit optional.Palle Girgensohn2015-02-071-4/+1
| | | | | | | PR: ports/197362 Notes: svn path=/head/; revision=378604
* Update PostgreSQL-9.x to latests versions.Palle Girgensohn2015-02-051-1/+3
| | | | | | | | | | | | | | This update fixes multiple security issues reported in PostgreSQL over the past few months. All of these issues require prior authentication, and some require additional conditions, and as such are not considered generally urgent. However, users should examine the list of security holes patched below in case they are particularly vulnerable. Security: CVE-2015-0241,CVE-2015-0242,CVE-2015-0243, CVE-2015-0244,CVE-2014-8161 Notes: svn path=/head/; revision=378500
* Revert r247147.Palle Girgensohn2014-11-121-1/+0
| | | | | | | | | | We need -pthread in LDFLAGS for threaded extensions like plv8js to work. PR: 175783 Submitted by: Li-Wen Hsu <lwhsu@FreeBSD.org> Notes: svn path=/head/; revision=372487
* Convert pgsql ports to use USES+=pgsqlChris Rees2014-08-251-1/+1
| | | | | | | Reviewed by: bapt Notes: svn path=/head/; revision=366114
* Fixes build with readline from portsBaptiste Daroussin2014-06-301-1/+1
| | | | Notes: svn path=/head/; revision=359941
* Stage supportAntoine Brodin2014-02-261-1/+0
| | | | | | | | Reviewed by: postgresql@ Tested by: miwi and me Notes: svn path=/head/; revision=346217
* - Remove DISTV: only used in PKGNAMESUFFIX and complained by portlintSunpoet Po-Chuan Hsieh2013-10-151-2/+1
| | | | | | | | | | | - Convert to new LIB_DEPENDS format for postgresql*-contrib Submitted by: sunpoet (myself) Reviewed by: crees (pgsql) Approved by: jgh (pgsql) Notes: svn path=/head/; revision=330414
* - Fix pkg name collisionJason Helfman2013-10-101-1/+3
| | | | | | | | Reviewed by: pgsql@ With hat: pgsql@ Notes: svn path=/head/; revision=329946
* - revert r329725Jason Helfman2013-10-071-2/+1
| | | | | | | | Reported by: qat@ With hat: pgsql@ Notes: svn path=/head/; revision=329729
* - Fix pkg name collisionJason Helfman2013-10-071-1/+2
| | | | | | | | Reviewed by: crees@ With hat: pgsql@ Notes: svn path=/head/; revision=329725
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-3/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* Install libpgcommon.a, required by extensions.Palle Girgensohn2013-09-181-0/+1
| | | | | | | PR: ports/182190 Notes: svn path=/head/; revision=327537
* Update PostgreSQL 93 to beta 2.Palle Girgensohn2013-06-281-1/+0
| | | | | | | URL: http://www.postgresql.org/about/news/1471/ Notes: svn path=/head/; revision=321954
* pkgconfig belongs under libdataPalle Girgensohn2013-05-121-1/+1
| | | | Notes: svn path=/head/; revision=317984
* Update postgresql93-client to properly depend on pkgconfigPalle Girgensohn2013-05-121-4/+3
| | | | | | | Reported by: Ports-QAT Notes: svn path=/head/; revision=317978
* Add postgresql 9.3 beta1Palle Girgensohn2013-05-121-1/+1
| | | | Notes: svn path=/head/; revision=317925
* Prepare for postgresql 9.3 beta 1 by svn cp postgresql92-* postgresql93-*Palle Girgensohn2013-05-111-0/+25
Notes: svn path=/head/; revision=317924