pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases postgresql: updated to 13.2, 12.6, 11.11, 10...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d6fa8563fe11
branches:  trunk
changeset: 447083:d6fa8563fe11
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Feb 15 18:58:36 2021 +0000

description:
postgresql: updated to 13.2, 12.6, 11.11, 10.16, 9.6.21, and 9.5.25

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.

For the full list of changes, please review the release notes.

Security Issues

CVE-2021-3393: Partition constraint violation errors leak values of denied columns

Versions Affected: 11 - 13.

A user having an UPDATE privilege on a partitioned table but lacking the SELECT privilege on some column may be able to acquire denied-column values from an error message. This is similar to 
CVE-2014-8161, but the conditions to exploit are more rare.

The PostgreSQL project thanks Heikki Linnakangas for reporting this problem.

CVE-2021-20229: Single-column SELECT privilege enables reading all columns

Versions Affected: 13.

A user having a SELECT privilege on an individual column can craft a special query that returns all columns of the table.

Additionally, a stored view that uses column-level privileges will have incomplete column-usage bitmaps. In installations that depend on column-level permissions for security, it is recommended to 
execute CREATE OR REPLACE on all user-defined views to force them to be re-parsed.

The PostgreSQL project thanks Sven Klemm for reporting this problem.

Bug Fixes and Improvements

This update fixes over 80 bugs that were reported in the last several months. Some of these issues only affect version 13, but could also apply to other supported versions.

Some of these fixes include:

Fix an issue with GiST indexes where concurrent insertions could lead to a corrupt index with entries placed in the wrong pages. You should REINDEX any affected GiST indexes.
Fix CREATE INDEX CONCURRENTLY to ensure rows from concurrent prepared transactions are included in the index. Installations that have enabled prepared transactions should REINDEX any 
concurrently-built indexes.
Fix for possible incorrect query results when a hash aggregation is spilled to disk.
Fix edge case in incremental sort that could lead to sorting results incorrectly or a "retrieved too many tuples in a bounded sort" error.
Avoid crash when a CALL or DO statement that performs a transaction rollback is executed via extended query protocol, such as from prepared statements.
Fix a failure when a PL/pgSQL procedure used CALL on another procedure that has OUT parameters that executed a COMMIT or ROLLBACK.
Remove errors from BEFORE UPDATE triggers on partitioned tables for restrictions that no longer apply.
Several fixes for queries with joins that could lead to error messages such as "no relation entry for relid N" or "failed to build any N-way joins".
Do not consider parallel-restricted or set-returning functions in an ORDER BY expressions when trying to parallelize sorts.
Fix ALTER DEFAULT PRIVILEGES to handle duplicate arguments safely.
Several fixes in behavior when wal_level is set to minimal, including when tables are rewritten within a transaction.
Several fixes for CREATE TABLE LIKE.
Ensure that allocated disk space for a dropped relation (e.g. a table) is released promptly when a transaction is committed.
Fix progress reporting for CLUSTER.
Fix handling of backslash-escaped multibyte characters in COPY FROM.
Fix recently-introduced race conditions in LISTEN/NOTIFY queue handling.
Allow the jsonb concatenation operator (||) to handle all combinations of JSON data types.
Fix WAL-reading logic so that standbys can handle timeline switches correctly. This issue could have shown itself with errors like "requested WAL segment has already been removed".
Several leak fixes for the walsender process around logical decoding and replication.
Ensure that a nonempty value of krb_server_keyfile always overrides any setting of KRB5_KTNAME in the server environment
Several fixes for GSS encryption support.
Ensure the \connect command allows the use of a password in the connection_string argument.
Fix assorted bugs with the \help command.
Several fixes for pg_dump.
Ensure that pg_rewind accounts for all WAL when rewinding a standby server.
Fix memory leak in contrib/auto_explain.
Ensure all postgres_fdw connections are closed if the a user mapping or foreign server object those connections depend on are dropped.
Fix JIT compilation to be compatible with LLVM 11 and LLVM 12.
This update also contains tzdata release 2021a for DST law changes in Russia (Volgograd zone) and South Sudan, plus historical corrections for Australia, Bahamas, Belize, Bermuda, Ghana, Israel, 
Kenya, Nigeria, Palestine, Seychelles, and Vanuatu.

Notably, the Australia/Currie zone has been corrected to the point where it is identical to Australia/Hobart.

For the full list of changes available, please review the release notes.

PostgreSQL 9.5 is EOL

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 to a newer, supported version of PostgreSQL. 
Please see our versioning policy for more information.

diffstat:

 databases/postgresql10-client/Makefile                                    |   3 +-
 databases/postgresql10-contrib/Makefile                                   |   3 +-
 databases/postgresql10-docs/PLIST                                         |   3 +-
 databases/postgresql10-plperl/Makefile                                    |   3 +-
 databases/postgresql10-plpython/Makefile                                  |   3 +-
 databases/postgresql10-pltcl/Makefile                                     |   3 +-
 databases/postgresql10-server/Makefile                                    |   3 +-
 databases/postgresql10/Makefile.common                                    |   4 +-
 databases/postgresql10/distinfo                                           |  10 +++---
 databases/postgresql11-client/Makefile                                    |   3 +-
 databases/postgresql11-contrib/Makefile                                   |   3 +-
 databases/postgresql11-docs/PLIST                                         |   3 +-
 databases/postgresql11-plperl/Makefile                                    |   3 +-
 databases/postgresql11-plpython/Makefile                                  |   3 +-
 databases/postgresql11-pltcl/Makefile                                     |   3 +-
 databases/postgresql11-server/Makefile                                    |   3 +-
 databases/postgresql11/Makefile.common                                    |   4 +-
 databases/postgresql11/distinfo                                           |  10 +++---
 databases/postgresql11/patches/patch-src_backend_commands_collationcmds.c |  15 ----------
 databases/postgresql12-client/Makefile                                    |   3 +-
 databases/postgresql12-contrib/Makefile                                   |   3 +-
 databases/postgresql12-docs/PLIST                                         |   3 +-
 databases/postgresql12-plperl/Makefile                                    |   3 +-
 databases/postgresql12-plpython/Makefile                                  |   3 +-
 databases/postgresql12-pltcl/Makefile                                     |   3 +-
 databases/postgresql12-server/Makefile                                    |   3 +-
 databases/postgresql12/Makefile.common                                    |   4 +-
 databases/postgresql12/distinfo                                           |  11 +++----
 databases/postgresql12/patches/patch-src_backend_commands_collationcmds.c |  15 ----------
 databases/postgresql13-client/Makefile                                    |   3 +-
 databases/postgresql13-client/PLIST                                       |   3 +-
 databases/postgresql13-contrib/Makefile                                   |   3 +-
 databases/postgresql13-docs/PLIST                                         |   3 +-
 databases/postgresql13-plperl/Makefile                                    |   3 +-
 databases/postgresql13-plpython/Makefile                                  |   3 +-
 databases/postgresql13-pltcl/Makefile                                     |   3 +-
 databases/postgresql13-server/Makefile                                    |   3 +-
 databases/postgresql13/Makefile.common                                    |   4 +-
 databases/postgresql13/distinfo                                           |  10 +++---
 databases/postgresql95-client/Makefile                                    |   3 +-
 databases/postgresql95-contrib/Makefile                                   |   3 +-
 databases/postgresql95-docs/PLIST                                         |   3 +-
 databases/postgresql95-plperl/Makefile                                    |   3 +-
 databases/postgresql95-plpython/Makefile                                  |   3 +-
 databases/postgresql95-pltcl/Makefile                                     |   3 +-
 databases/postgresql95-server/Makefile                                    |   3 +-
 databases/postgresql95/Makefile.common                                    |   4 +-
 databases/postgresql95/distinfo                                           |  10 +++---
 databases/postgresql96-client/Makefile                                    |   3 +-
 databases/postgresql96-contrib/Makefile                                   |   3 +-
 databases/postgresql96-docs/PLIST                                         |   3 +-
 databases/postgresql96-plperl/Makefile                                    |   3 +-
 databases/postgresql96-plpython/Makefile                                  |   3 +-
 databases/postgresql96-pltcl/Makefile                                     |   3 +-
 databases/postgresql96-server/Makefile                                    |   3 +-
 databases/postgresql96/Makefile.common                                    |   4 +-
 databases/postgresql96/distinfo                                           |  10 +++---
 57 files changed, 92 insertions(+), 152 deletions(-)

diffs (truncated from 813 to 300 lines):

diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-client/Makefile
--- a/databases/postgresql10-client/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-client/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2020/12/04 04:55:42 riastradh Exp $
+# $NetBSD: Makefile,v 1.15 2021/02/15 18:58:36 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-contrib/Makefile
--- a/databases/postgresql10-contrib/Makefile   Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-contrib/Makefile   Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2020/12/04 04:55:42 riastradh Exp $
+# $NetBSD: Makefile,v 1.15 2021/02/15 18:58:36 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-docs/PLIST
--- a/databases/postgresql10-docs/PLIST Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-docs/PLIST Mon Feb 15 18:58:36 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2020/11/16 12:15:02 adam Exp $
+@comment $NetBSD: PLIST,v 1.17 2021/02/15 18:58:37 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -916,6 +916,7 @@
 share/doc/postgresql/html/release-10-13.html
 share/doc/postgresql/html/release-10-14.html
 share/doc/postgresql/html/release-10-15.html
+share/doc/postgresql/html/release-10-16.html
 share/doc/postgresql/html/release-10-2.html
 share/doc/postgresql/html/release-10-3.html
 share/doc/postgresql/html/release-10-4.html
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-plperl/Makefile
--- a/databases/postgresql10-plperl/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-plperl/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.11 2020/12/04 04:55:43 riastradh Exp $
+#$ $NetBSD: Makefile,v 1.12 2021/02/15 18:58:37 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-plpython/Makefile
--- a/databases/postgresql10-plpython/Makefile  Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-plpython/Makefile  Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2020/12/04 20:45:04 nia Exp $
+# $NetBSD: Makefile,v 1.16 2021/02/15 18:58:37 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-plpython-/}
-PKGREVISION=   2
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-pltcl/Makefile
--- a/databases/postgresql10-pltcl/Makefile     Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-pltcl/Makefile     Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2020/12/04 04:55:43 riastradh Exp $
+# $NetBSD: Makefile,v 1.13 2021/02/15 18:58:37 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-pltcl-/}
-PKGREVISION=   1
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10-server/Makefile
--- a/databases/postgresql10-server/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10-server/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2020/12/04 04:55:43 riastradh Exp $
+# $NetBSD: Makefile,v 1.17 2021/02/15 18:58:37 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10/Makefile.common
--- a/databases/postgresql10/Makefile.common    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10/Makefile.common    Mon Feb 15 18:58:36 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.23 2020/11/16 12:15:02 adam Exp $
+# $NetBSD: Makefile.common,v 1.24 2021/02/15 18:58:36 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql10-pltcl/Makefile
 # used by databases/postgresql10-server/Makefile
 
-DISTNAME=      postgresql-10.15
+DISTNAME=      postgresql-10.16
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql10/distinfo
--- a/databases/postgresql10/distinfo   Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql10/distinfo   Mon Feb 15 18:58:36 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.17 2020/11/16 12:15:02 adam Exp $
+$NetBSD: distinfo,v 1.18 2021/02/15 18:58:36 adam Exp $
 
-SHA1 (postgresql-10.15.tar.bz2) = 3d688f05d2de7c9ed89ef6be8d33906a4e7a833d
-RMD160 (postgresql-10.15.tar.bz2) = d913c1f991c16bae10db941d9b9fdb0d31f92ebe
-SHA512 (postgresql-10.15.tar.bz2) = 88fe322a8691692f8c1b8ca7f7a5a035c399c1d2a0e6276b60863f2c0cb8e4857b041d7364641e0738438aee0836688e712b9c176ac454ee98386dfd18754636
-Size (postgresql-10.15.tar.bz2) = 19089779 bytes
+SHA1 (postgresql-10.16.tar.bz2) = 594d7f1c604a9666499510d69b6dece97632a61d
+RMD160 (postgresql-10.16.tar.bz2) = d112a187f96bb75e39131e48ca7973286e2da89d
+SHA512 (postgresql-10.16.tar.bz2) = 690649b4e2f4e0650e5b927048e06894e60c5cf1663bb63ab89143f49e5f753e590d3f011b44df3c402379953a9c23f4832f0cf97c984f03c37d14cb85c860aa
+Size (postgresql-10.16.tar.bz2) = 19140221 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-client/Makefile
--- a/databases/postgresql11-client/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-client/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2020/12/04 04:55:43 riastradh Exp $
+# $NetBSD: Makefile,v 1.11 2021/02/15 18:58:37 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-contrib/Makefile
--- a/databases/postgresql11-contrib/Makefile   Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-contrib/Makefile   Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2020/12/04 04:55:43 riastradh Exp $
+# $NetBSD: Makefile,v 1.12 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-docs/PLIST
--- a/databases/postgresql11-docs/PLIST Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-docs/PLIST Mon Feb 15 18:58:36 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2020/11/16 12:15:03 adam Exp $
+@comment $NetBSD: PLIST,v 1.12 2021/02/15 18:58:38 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -947,6 +947,7 @@
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-11-1.html
 share/doc/postgresql/html/release-11-10.html
+share/doc/postgresql/html/release-11-11.html
 share/doc/postgresql/html/release-11-2.html
 share/doc/postgresql/html/release-11-3.html
 share/doc/postgresql/html/release-11-4.html
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-plperl/Makefile
--- a/databases/postgresql11-plperl/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-plperl/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.9 2020/12/04 04:55:43 riastradh Exp $
+#$ $NetBSD: Makefile,v 1.10 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-plpython/Makefile
--- a/databases/postgresql11-plpython/Makefile  Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-plpython/Makefile  Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2020/12/04 20:45:05 nia Exp $
+# $NetBSD: Makefile,v 1.14 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-plpython-/}
-PKGREVISION=   2
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-pltcl/Makefile
--- a/databases/postgresql11-pltcl/Makefile     Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-pltcl/Makefile     Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2020/12/04 04:55:44 riastradh Exp $
+# $NetBSD: Makefile,v 1.11 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-pltcl-/}
-PKGREVISION=   1
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11-server/Makefile
--- a/databases/postgresql11-server/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11-server/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2020/12/04 04:55:44 riastradh Exp $
+# $NetBSD: Makefile,v 1.14 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11/Makefile.common
--- a/databases/postgresql11/Makefile.common    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11/Makefile.common    Mon Feb 15 18:58:36 2021 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.16 2020/11/16 12:15:03 adam Exp $
+# $NetBSD: Makefile.common,v 1.17 2021/02/15 18:58:37 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql11-pltcl/Makefile
 # used by databases/postgresql11-server/Makefile
 
-DISTNAME=      postgresql-11.10
+DISTNAME=      postgresql-11.11
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11/distinfo
--- a/databases/postgresql11/distinfo   Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql11/distinfo   Mon Feb 15 18:58:36 2021 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.12 2020/11/16 12:15:03 adam Exp $
+$NetBSD: distinfo,v 1.13 2021/02/15 18:58:37 adam Exp $
 
-SHA1 (postgresql-11.10.tar.bz2) = 97bc8d07d30229b52bac57241cd48bcf6116ef44
-RMD160 (postgresql-11.10.tar.bz2) = 112aaba727ec5639ab8e284d55eba2c7cd12e939
-SHA512 (postgresql-11.10.tar.bz2) = 0cc0e9b0f76e00727dc699ea59a45d760d37d91ec736a62cbc9bda3e38eb1ef1565e4e399dd3ae96bad87f866e56e364f916de7740d8be6e1cfc2bf654dfbb68
-Size (postgresql-11.10.tar.bz2) = 20003842 bytes
+SHA1 (postgresql-11.11.tar.bz2) = ebd71258718f08bf20f79a0e0709bee0955df01b
+RMD160 (postgresql-11.11.tar.bz2) = 44d9bcd81fc6a89d8e2bcbcbc7353e37e951cfbc
+SHA512 (postgresql-11.11.tar.bz2) = 8d38e6b7826e73191159f1ee69efde28adc061e0041eb136f55681503a189355b869b2ff312860325d454c1f95367d921fb61dd2de31f584261f165f229bcdb9
+Size (postgresql-11.11.tar.bz2) = 20054359 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql11/patches/patch-src_backend_commands_collationcmds.c
--- a/databases/postgresql11/patches/patch-src_backend_commands_collationcmds.c Mon Feb 15 18:21:03 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_backend_commands_collationcmds.c,v 1.1 2020/11/06 21:38:30 otis Exp $
-
-Change TRUE to true
-
---- src/backend/commands/collationcmds.c.orig  2020-08-10 21:17:40.000000000 +0000
-+++ src/backend/commands/collationcmds.c
-@@ -444,7 +444,7 @@ get_icu_language_tag(const char *localen
-       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",
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql12-client/Makefile
--- a/databases/postgresql12-client/Makefile    Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql12-client/Makefile    Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2020/12/04 04:55:44 riastradh Exp $
+# $NetBSD: Makefile,v 1.13 2021/02/15 18:58:38 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql12/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql12-contrib/Makefile
--- a/databases/postgresql12-contrib/Makefile   Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql12-contrib/Makefile   Mon Feb 15 18:58:36 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2020/12/04 04:55:44 riastradh Exp $
+# $NetBSD: Makefile,v 1.12 2021/02/15 18:58:39 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql12/Makefile.common"
diff -r c6c5a868e018 -r d6fa8563fe11 databases/postgresql12-docs/PLIST
--- a/databases/postgresql12-docs/PLIST Mon Feb 15 18:21:03 2021 +0000
+++ b/databases/postgresql12-docs/PLIST Mon Feb 15 18:58:36 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2020/11/16 12:15:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2021/02/15 18:58:39 adam Exp $
 man/man1/clusterdb.1



Home | Main Index | Thread Index | Old Index