diff options
Diffstat (limited to 'databases/postgresql12-server')
-rw-r--r-- | databases/postgresql12-server/Makefile | 2 | ||||
-rw-r--r-- | databases/postgresql12-server/distinfo | 6 | ||||
-rw-r--r-- | databases/postgresql12-server/files/patch-icu68 | 17 |
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", |