aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql12-server
diff options
context:
space:
mode:
authorPalle Girgensohn <girgen@FreeBSD.org>2021-02-11 14:34:02 +0000
committerPalle Girgensohn <girgen@FreeBSD.org>2021-02-11 14:34:02 +0000
commit6d480661d1fea606e0634f5cb4f28e6b983787b9 (patch)
tree62dacd24f43f081a6ad10cbf98f4b28cbb0cc168 /databases/postgresql12-server
parentfe22a8f2566853faa75be1279dfd5585f475e83e (diff)
downloadports-6d480661d1fea606e0634f5cb4f28e6b983787b9.tar.gz
ports-6d480661d1fea606e0634f5cb4f28e6b983787b9.zip
PostgreSQL 13.2, 12.6, 11.11, 10.16, 9.6.21, and 9.5.25 released
The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 13.2, 12.6, 11.11, 10.16, 9.6.21, and 9.5.25. This release closes two security vulnerabilities and fixes over 80 bugs reported over the last three months. Additionally, this is the final release of PostgreSQL 9.5. If you are running PostgreSQL 9.5 in a production environment, we suggest that you make plans to upgrade. Release notes: https://www.postgresql.org/about/news/postgresql-132-126-1111-1016-9621-and-9525-released-2165/ Security notes: https://www.postgresql.org/support/security/ Security: CVE-2021-3393, CVE-2021-20229
Notes
Notes: svn path=/head/; revision=564956
Diffstat (limited to 'databases/postgresql12-server')
-rw-r--r--databases/postgresql12-server/Makefile2
-rw-r--r--databases/postgresql12-server/distinfo6
-rw-r--r--databases/postgresql12-server/files/patch-icu6817
3 files changed, 4 insertions, 21 deletions
diff --git a/databases/postgresql12-server/Makefile b/databases/postgresql12-server/Makefile
index 42597ec34792..90888ebe1ea9 100644
--- a/databases/postgresql12-server/Makefile
+++ b/databases/postgresql12-server/Makefile
@@ -1,7 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
-DISTVERSION?= 12.5
+DISTVERSION?= 12.6
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 0
diff --git a/databases/postgresql12-server/distinfo b/databases/postgresql12-server/distinfo
index 89f23b65332b..743b3b32c5f1 100644
--- a/databases/postgresql12-server/distinfo
+++ b/databases/postgresql12-server/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1605002511
-SHA256 (postgresql/postgresql-12.5.tar.bz2) = bd0d25341d9578b5473c9506300022de26370879581f5fddd243a886ce79ff95
-SIZE (postgresql/postgresql-12.5.tar.bz2) = 20729654
+TIMESTAMP = 1612956694
+SHA256 (postgresql/postgresql-12.6.tar.bz2) = df7dd98d5ccaf1f693c7e1d0d084e9fed7017ee248bba5be0167c42ad2d70a09
+SIZE (postgresql/postgresql-12.6.tar.bz2) = 20771172
diff --git a/databases/postgresql12-server/files/patch-icu68 b/databases/postgresql12-server/files/patch-icu68
deleted file mode 100644
index 475bdd8fe52a..000000000000
--- a/databases/postgresql12-server/files/patch-icu68
+++ /dev/null
@@ -1,17 +0,0 @@
-Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844
-
-collationcmds.c:467:51: error: use of undeclared identifier 'TRUE'
- uloc_toLanguageTag(localename, buf, sizeof(buf), TRUE, &status);
- ^
-
---- src/backend/commands/collationcmds.c.orig 2020-08-10 21:15:53 UTC
-+++ src/backend/commands/collationcmds.c
-@@ -463,7 +463,7 @@ get_icu_language_tag(const char *localename)
- UErrorCode status;
-
- status = U_ZERO_ERROR;
-- uloc_toLanguageTag(localename, buf, sizeof(buf), TRUE, &status);
-+ uloc_toLanguageTag(localename, buf, sizeof(buf), true, &status);
- if (U_FAILURE(status))
- ereport(ERROR,
- (errmsg("could not convert locale name \"%s\" to language tag: %s",