pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu May 12 19:02:47 UTC 2022

Modified Files:
        pkgsrc/databases/postgresql10: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql10-client: Makefile
        pkgsrc/databases/postgresql10-contrib: Makefile
        pkgsrc/databases/postgresql10-docs: Makefile PLIST
        pkgsrc/databases/postgresql10-plperl: Makefile
        pkgsrc/databases/postgresql10-plpython: Makefile
        pkgsrc/databases/postgresql10-pltcl: Makefile
        pkgsrc/databases/postgresql10-server: Makefile
        pkgsrc/databases/postgresql11: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql11-client: Makefile
        pkgsrc/databases/postgresql11-contrib: Makefile
        pkgsrc/databases/postgresql11-docs: Makefile PLIST
        pkgsrc/databases/postgresql11-plperl: Makefile
        pkgsrc/databases/postgresql11-plpython: Makefile
        pkgsrc/databases/postgresql11-pltcl: Makefile
        pkgsrc/databases/postgresql11-server: Makefile
        pkgsrc/databases/postgresql12: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql12-client: Makefile
        pkgsrc/databases/postgresql12-contrib: Makefile
        pkgsrc/databases/postgresql12-docs: Makefile PLIST
        pkgsrc/databases/postgresql12-plperl: Makefile
        pkgsrc/databases/postgresql12-plpython: Makefile
        pkgsrc/databases/postgresql12-pltcl: Makefile
        pkgsrc/databases/postgresql12-server: Makefile
        pkgsrc/databases/postgresql13: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql13-client: Makefile
        pkgsrc/databases/postgresql13-contrib: Makefile
        pkgsrc/databases/postgresql13-docs: Makefile PLIST
        pkgsrc/databases/postgresql13-plperl: Makefile
        pkgsrc/databases/postgresql13-plpython: Makefile
        pkgsrc/databases/postgresql13-pltcl: Makefile
        pkgsrc/databases/postgresql13-server: Makefile
        pkgsrc/databases/postgresql14: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql14-client: Makefile
        pkgsrc/databases/postgresql14-contrib: Makefile
        pkgsrc/databases/postgresql14-docs: Makefile PLIST
        pkgsrc/databases/postgresql14-plperl: Makefile
        pkgsrc/databases/postgresql14-plpython: Makefile
        pkgsrc/databases/postgresql14-pltcl: Makefile
        pkgsrc/databases/postgresql14-server: Makefile

Log Message:
postgresqlNN: updated to 14.3, 13.7, 12.11, 11.16, and 10.21

The PostgreSQL Global Development Group has released an update to all supported versions of PostgreSQL, including 14.3, 13.7, 12.11, 11.16, and 10.21. This release closes one security vulnerability 
and fixes over 50 bugs reported over the last three months.

CVE-2022-1552: Autovacuum, REINDEX, and others omit "security restricted operation" sandbox.

Versions Affected: 10 - 14. The security team typically does not test unsupported versions, but this problem is quite old.

Autovacuum, REINDEX, CREATE INDEX, REFRESH MATERIALIZED VIEW, CLUSTER, and pg_amcheck made incomplete efforts to operate safely when a privileged user is maintaining another user's objects. Those 
commands activated relevant protections too late or not at all. An attacker having permission to create non-temp objects in at least one schema could execute arbitrary SQL functions under a superuser 
identity.

While promptly updating PostgreSQL is the best remediation for most users, a user unable to do that can work around the vulnerability by disabling autovacuum, not manually running the above commands, 
and not restoring from output of the pg_dump command. Performance may degrade quickly under this workaround. VACUUM is safe, and all commands are fine when a trusted user owns the target object.

Bug Fixes and Improvements

This update fixes over 50 bugs that were reported in the last several months. The issues listed below affect PostgreSQL 14. Some of these issues may also affect other supported versions of PostgreSQL.

Included in this release:

Fix issue that could lead to corruption of GiST indexes on ltree columns. After upgrading, you will need to reindex any GiST indexes on ltree columns.
Column names in tuples produced by a whole-row variable (e.g. tbl.*) outside of a top-level of a SELECT list are now always associated with those of the associated named composite type, if there is 
one. The release notes detail a workaround if you depend on the previous behavior.
Fix incorrect rounding when extracting epoch values from interval types.
Prevent issues with calling pg_stat_get_replication_slot(NULL).
Fix incorrect output for types timestamptz and timetz in table_to_xmlschema().
Fix errors related to a planner issue that affected asynchronous remote queries.
Fix planner failure if a query using SEARCH or CYCLE features contains a duplicate common-table expression (WITH) name.
Fix ALTER FUNCTION to support changing a function's parallelism property and its SET-variable list in the same command.
Fix incorrect sorting of table rows when using CLUSTER on an index whose leading key is an expression.
Prevent data loss if a system crash occurs shortly after a sorted GiST index build.
Fix risk of deadlock failures while dropping a partitioned index.
Fix race condition between DROP TABLESPACE and checkpointing that could fail to remove all dead files from the tablespace directory.
Fix potential issue in crash recovery after a TRUNCATE command that overlaps with a checkpoint.
Re-allow _ as the first character in a custom configuration parameter name.
Fix PANIC: xlog flush request is not satisfied failure during standby promotion when there is a missing WAL continuation record.
Fix possibility of self-deadlock in hot standby conflict handling.
Ensure that logical replication apply workers can be restarted when the server is near the max_sync_workers_per_subscription limit.
Disallow execution of SPI functions during PL/Perl function compilation.
libpq now accepts root-owned SSL private key files, which matches the rules the server has used since the 9.6 release.
Re-allow database.schema.table patterns in psql, pg_dump, and pg_amcheck.
Several fixes for pageinspect to improve overall stability.
Disable batch insertion in postgres_fdw when BEFORE INSERT ... FOR EACH ROW triggers exist on the foreign table.
Update JIT code to work with LLVM 14.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/databases/postgresql10/Makefile
cvs rdiff -u -r1.32 -r1.33 pkgsrc/databases/postgresql10/Makefile.common
cvs rdiff -u -r1.26 -r1.27 pkgsrc/databases/postgresql10/distinfo
cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/postgresql10-client/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/postgresql10-contrib/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/postgresql10-docs/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql10-docs/PLIST
cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql10-plperl/Makefile
cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/postgresql10-plpython/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql10-pltcl/Makefile
cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/postgresql10-server/Makefile
cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql11/Makefile \
    pkgsrc/databases/postgresql11/distinfo
cvs rdiff -u -r1.25 -r1.26 pkgsrc/databases/postgresql11/Makefile.common
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql11-client/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql11-contrib/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql11-docs/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/postgresql11-docs/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql11-plperl/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql11-plpython/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql11-pltcl/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql11-server/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql12/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql12/Makefile.common
cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql12/distinfo
cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql12-client/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql12-contrib/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql12-docs/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql12-docs/PLIST
cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql12-plperl/Makefile
cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql12-plpython/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql12-pltcl/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql12-server/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql13/Makefile \
    pkgsrc/databases/postgresql13/distinfo
cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql13/Makefile.common
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql13-client/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql13-contrib/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/postgresql13-docs/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql13-docs/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql13-plperl/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql13-plpython/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql13-pltcl/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql13-server/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql14/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql14/Makefile.common
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql14-client/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-contrib/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-docs/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql14-docs/PLIST
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-plperl/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-plpython/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-pltcl/Makefile
cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/postgresql14-server/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/postgresql10/Makefile
diff -u pkgsrc/databases/postgresql10/Makefile:1.30 pkgsrc/databases/postgresql10/Makefile:1.31
--- pkgsrc/databases/postgresql10/Makefile:1.30 Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10/Makefile      Thu May 12 19:02:42 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2022/04/18 19:10:39 adam Exp $
+# $NetBSD: Makefile,v 1.31 2022/05/12 19:02:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql10-client>=${PKGVERSION_NOREV}:../../databases/postgresql10-client

Index: pkgsrc/databases/postgresql10/Makefile.common
diff -u pkgsrc/databases/postgresql10/Makefile.common:1.32 pkgsrc/databases/postgresql10/Makefile.common:1.33
--- pkgsrc/databases/postgresql10/Makefile.common:1.32  Fri Feb 11 08:31:20 2022
+++ pkgsrc/databases/postgresql10/Makefile.common       Thu May 12 19:02:42 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.32 2022/02/11 08:31:20 adam Exp $
+# $NetBSD: Makefile.common,v 1.33 2022/05/12 19:02:42 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.20
+DISTNAME=      postgresql-10.21
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql10/distinfo
diff -u pkgsrc/databases/postgresql10/distinfo:1.26 pkgsrc/databases/postgresql10/distinfo:1.27
--- pkgsrc/databases/postgresql10/distinfo:1.26 Fri Feb 11 08:31:20 2022
+++ pkgsrc/databases/postgresql10/distinfo      Thu May 12 19:02:42 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.26 2022/02/11 08:31:20 adam Exp $
+$NetBSD: distinfo,v 1.27 2022/05/12 19:02:42 adam Exp $
 
-BLAKE2s (postgresql-10.20.tar.bz2) = 3bdc7eed893b1e73b7170e527b12699ada8f90a844e876bb029ad4026bf95a55
-SHA512 (postgresql-10.20.tar.bz2) = 44cfca541947d58c70593b767d3c2423f20cc6904f3d4cea8f63c1802ccbc569130c4a2a15f1af152285926f6a200e13d59c21584295dafd6f6e74bd38251428
-Size (postgresql-10.20.tar.bz2) = 19371473 bytes
+BLAKE2s (postgresql-10.21.tar.bz2) = ed1e2be52212a5b0f5e4b657421a3b9618227c3f049b8f80da8c948f77b9b169
+SHA512 (postgresql-10.21.tar.bz2) = 1053e15505c0448df491119c9aad1617889b66118628a2155e3ec87e6648b2071a0a54e10d8fbbe00161b2aa86d1a6194d932a8cf5808c626e7972d135bb05c5
+Size (postgresql-10.21.tar.bz2) = 19409454 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd

Index: pkgsrc/databases/postgresql10-client/Makefile
diff -u pkgsrc/databases/postgresql10-client/Makefile:1.24 pkgsrc/databases/postgresql10-client/Makefile:1.25
--- pkgsrc/databases/postgresql10-client/Makefile:1.24  Thu May  5 08:22:37 2022
+++ pkgsrc/databases/postgresql10-client/Makefile       Thu May 12 19:02:42 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2022/05/05 08:22:37 nia Exp $
+# $NetBSD: Makefile,v 1.25 2022/05/12 19:02:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql10/Makefile.common"

Index: pkgsrc/databases/postgresql10-contrib/Makefile
diff -u pkgsrc/databases/postgresql10-contrib/Makefile:1.23 pkgsrc/databases/postgresql10-contrib/Makefile:1.24
--- pkgsrc/databases/postgresql10-contrib/Makefile:1.23 Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10-contrib/Makefile      Thu May 12 19:02:42 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2022/04/18 19:10:39 adam Exp $
+# $NetBSD: Makefile,v 1.24 2022/05/12 19:02:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql10/Makefile.common"

Index: pkgsrc/databases/postgresql10-docs/Makefile
diff -u pkgsrc/databases/postgresql10-docs/Makefile:1.16 pkgsrc/databases/postgresql10-docs/Makefile:1.17
--- pkgsrc/databases/postgresql10-docs/Makefile:1.16    Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10-docs/Makefile Thu May 12 19:02:42 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2022/04/18 19:10:39 adam Exp $
+# $NetBSD: Makefile,v 1.17 2022/05/12 19:02:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql10/Makefile.common"

Index: pkgsrc/databases/postgresql10-docs/PLIST
diff -u pkgsrc/databases/postgresql10-docs/PLIST:1.21 pkgsrc/databases/postgresql10-docs/PLIST:1.22
--- pkgsrc/databases/postgresql10-docs/PLIST:1.21       Fri Feb 11 08:31:20 2022
+++ pkgsrc/databases/postgresql10-docs/PLIST    Thu May 12 19:02:42 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2022/02/11 08:31:20 adam Exp $
+@comment $NetBSD: PLIST,v 1.22 2022/05/12 19:02:42 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -930,6 +930,7 @@ share/doc/postgresql/html/release-10-18.
 share/doc/postgresql/html/release-10-19.html
 share/doc/postgresql/html/release-10-2.html
 share/doc/postgresql/html/release-10-20.html
+share/doc/postgresql/html/release-10-21.html
 share/doc/postgresql/html/release-10-3.html
 share/doc/postgresql/html/release-10-4.html
 share/doc/postgresql/html/release-10-5.html

Index: pkgsrc/databases/postgresql10-plperl/Makefile
diff -u pkgsrc/databases/postgresql10-plperl/Makefile:1.19 pkgsrc/databases/postgresql10-plperl/Makefile:1.20
--- pkgsrc/databases/postgresql10-plperl/Makefile:1.19  Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10-plperl/Makefile       Thu May 12 19:02:42 2022
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.19 2022/04/18 19:10:39 adam Exp $
+#$ $NetBSD: Makefile,v 1.20 2022/05/12 19:02:42 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

Index: pkgsrc/databases/postgresql10-plpython/Makefile
diff -u pkgsrc/databases/postgresql10-plpython/Makefile:1.23 pkgsrc/databases/postgresql10-plpython/Makefile:1.24
--- pkgsrc/databases/postgresql10-plpython/Makefile:1.23        Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10-plpython/Makefile     Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2022/04/18 19:10:39 adam Exp $
+# $NetBSD: Makefile,v 1.24 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-plpython-/}
-PKGREVISION=   1
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server

Index: pkgsrc/databases/postgresql10-pltcl/Makefile
diff -u pkgsrc/databases/postgresql10-pltcl/Makefile:1.20 pkgsrc/databases/postgresql10-pltcl/Makefile:1.21
--- pkgsrc/databases/postgresql10-pltcl/Makefile:1.20   Mon Apr 18 19:10:39 2022
+++ pkgsrc/databases/postgresql10-pltcl/Makefile        Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:39 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 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

Index: pkgsrc/databases/postgresql10-server/Makefile
diff -u pkgsrc/databases/postgresql10-server/Makefile:1.24 pkgsrc/databases/postgresql10-server/Makefile:1.25
--- pkgsrc/databases/postgresql10-server/Makefile:1.24  Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql10-server/Makefile       Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.24 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.25 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation

Index: pkgsrc/databases/postgresql11/Makefile
diff -u pkgsrc/databases/postgresql11/Makefile:1.22 pkgsrc/databases/postgresql11/Makefile:1.23
--- pkgsrc/databases/postgresql11/Makefile:1.22 Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11/Makefile      Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.23 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql11-client>=${PKGVERSION_NOREV}:../../databases/postgresql11-client
Index: pkgsrc/databases/postgresql11/distinfo
diff -u pkgsrc/databases/postgresql11/distinfo:1.22 pkgsrc/databases/postgresql11/distinfo:1.23
--- pkgsrc/databases/postgresql11/distinfo:1.22 Fri Feb 25 15:39:57 2022
+++ pkgsrc/databases/postgresql11/distinfo      Thu May 12 19:02:43 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.22 2022/02/25 15:39:57 jperkin Exp $
+$NetBSD: distinfo,v 1.23 2022/05/12 19:02:43 adam Exp $
 
-BLAKE2s (postgresql-11.15.tar.bz2) = e6f70c1693bba23c70127b0234494d2d7a43b4e5a0f80f26477090e4fff6e4fa
-SHA512 (postgresql-11.15.tar.bz2) = 1eba7bddee1edf034617102c1d61ad0aa1b58927dad63de1d054817966c4c9a1d7d3fa6f6896af3fe5a6880b09a6ec86be298256ee6ecc3705ff2654d3d00c74
-Size (postgresql-11.15.tar.bz2) = 20245750 bytes
+BLAKE2s (postgresql-11.16.tar.bz2) = 3e04ff94021dba90a1d48316b214d997d42eb4f806ec10f0aab99fe524df46b4
+SHA512 (postgresql-11.16.tar.bz2) = e1b6be0a97e60cdd95cd0ebc756b1de6abf2f33f41f6a80da3dff25483a30146fb6bf750ab787bb5bb4f2a04718946c7429e71f891cbd491001e9f9c2ea8e63c
+Size (postgresql-11.16.tar.bz2) = 20347100 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd

Index: pkgsrc/databases/postgresql11/Makefile.common
diff -u pkgsrc/databases/postgresql11/Makefile.common:1.25 pkgsrc/databases/postgresql11/Makefile.common:1.26
--- pkgsrc/databases/postgresql11/Makefile.common:1.25  Fri Feb 11 08:31:21 2022
+++ pkgsrc/databases/postgresql11/Makefile.common       Thu May 12 19:02:43 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.25 2022/02/11 08:31:21 adam Exp $
+# $NetBSD: Makefile.common,v 1.26 2022/05/12 19:02:43 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.15
+DISTNAME=      postgresql-11.16
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql11-client/Makefile
diff -u pkgsrc/databases/postgresql11-client/Makefile:1.20 pkgsrc/databases/postgresql11-client/Makefile:1.21
--- pkgsrc/databases/postgresql11-client/Makefile:1.20  Thu May  5 08:22:37 2022
+++ pkgsrc/databases/postgresql11-client/Makefile       Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2022/05/05 08:22:37 nia Exp $
+# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql11/Makefile.common"

Index: pkgsrc/databases/postgresql11-contrib/Makefile
diff -u pkgsrc/databases/postgresql11-contrib/Makefile:1.20 pkgsrc/databases/postgresql11-contrib/Makefile:1.21
--- pkgsrc/databases/postgresql11-contrib/Makefile:1.20 Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-contrib/Makefile      Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql11/Makefile.common"

Index: pkgsrc/databases/postgresql11-docs/Makefile
diff -u pkgsrc/databases/postgresql11-docs/Makefile:1.14 pkgsrc/databases/postgresql11-docs/Makefile:1.15
--- pkgsrc/databases/postgresql11-docs/Makefile:1.14    Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-docs/Makefile Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql11/Makefile.common"

Index: pkgsrc/databases/postgresql11-docs/PLIST
diff -u pkgsrc/databases/postgresql11-docs/PLIST:1.16 pkgsrc/databases/postgresql11-docs/PLIST:1.17
--- pkgsrc/databases/postgresql11-docs/PLIST:1.16       Fri Feb 11 08:31:21 2022
+++ pkgsrc/databases/postgresql11-docs/PLIST    Thu May 12 19:02:43 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2022/02/11 08:31:21 adam Exp $
+@comment $NetBSD: PLIST,v 1.17 2022/05/12 19:02:43 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -960,6 +960,7 @@ share/doc/postgresql/html/release-11-12.
 share/doc/postgresql/html/release-11-13.html
 share/doc/postgresql/html/release-11-14.html
 share/doc/postgresql/html/release-11-15.html
+share/doc/postgresql/html/release-11-16.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

Index: pkgsrc/databases/postgresql11-plperl/Makefile
diff -u pkgsrc/databases/postgresql11-plperl/Makefile:1.17 pkgsrc/databases/postgresql11-plperl/Makefile:1.18
--- pkgsrc/databases/postgresql11-plperl/Makefile:1.17  Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-plperl/Makefile       Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.17 2022/04/18 19:10:40 adam Exp $
+#$ $NetBSD: Makefile,v 1.18 2022/05/12 19:02:43 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

Index: pkgsrc/databases/postgresql11-plpython/Makefile
diff -u pkgsrc/databases/postgresql11-plpython/Makefile:1.21 pkgsrc/databases/postgresql11-plpython/Makefile:1.22
--- pkgsrc/databases/postgresql11-plpython/Makefile:1.21        Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-plpython/Makefile     Thu May 12 19:02:43 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-plpython-/}
-PKGREVISION=   1
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server

Index: pkgsrc/databases/postgresql11-pltcl/Makefile
diff -u pkgsrc/databases/postgresql11-pltcl/Makefile:1.18 pkgsrc/databases/postgresql11-pltcl/Makefile:1.19
--- pkgsrc/databases/postgresql11-pltcl/Makefile:1.18   Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-pltcl/Makefile        Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.19 2022/05/12 19:02:44 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

Index: pkgsrc/databases/postgresql11-server/Makefile
diff -u pkgsrc/databases/postgresql11-server/Makefile:1.21 pkgsrc/databases/postgresql11-server/Makefile:1.22
--- pkgsrc/databases/postgresql11-server/Makefile:1.21  Mon Apr 18 19:10:40 2022
+++ pkgsrc/databases/postgresql11-server/Makefile       Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:40 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation

Index: pkgsrc/databases/postgresql12/Makefile
diff -u pkgsrc/databases/postgresql12/Makefile:1.21 pkgsrc/databases/postgresql12/Makefile:1.22
--- pkgsrc/databases/postgresql12/Makefile:1.21 Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12/Makefile      Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql12-client>=${PKGVERSION_NOREV}:../../databases/postgresql12-client

Index: pkgsrc/databases/postgresql12/Makefile.common
diff -u pkgsrc/databases/postgresql12/Makefile.common:1.18 pkgsrc/databases/postgresql12/Makefile.common:1.19
--- pkgsrc/databases/postgresql12/Makefile.common:1.18  Fri Feb 11 08:31:22 2022
+++ pkgsrc/databases/postgresql12/Makefile.common       Thu May 12 19:02:44 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.18 2022/02/11 08:31:22 adam Exp $
+# $NetBSD: Makefile.common,v 1.19 2022/05/12 19:02:44 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/postgresql12-pltcl/Makefile
 # used by databases/postgresql12-server/Makefile
 
-DISTNAME=      postgresql-12.10
+DISTNAME=      postgresql-12.11
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql12/distinfo
diff -u pkgsrc/databases/postgresql12/distinfo:1.15 pkgsrc/databases/postgresql12/distinfo:1.16
--- pkgsrc/databases/postgresql12/distinfo:1.15 Fri Feb 11 08:31:22 2022
+++ pkgsrc/databases/postgresql12/distinfo      Thu May 12 19:02:44 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2022/02/11 08:31:22 adam Exp $
+$NetBSD: distinfo,v 1.16 2022/05/12 19:02:44 adam Exp $
 
-BLAKE2s (postgresql-12.10.tar.bz2) = a8e9dac32b8460b4112e2ce2eb04ba7a5a7541b053dafda7d23a5dcc18b6f402
-SHA512 (postgresql-12.10.tar.bz2) = befedb14320aa033dc55bbb93bbbec4e67d9cfced63be0e4f631c7495a0fbc6fe280bd6d2fb941d7a2e6b2ac570b7f40d8db7f07a192a81bd9cd63c6c244a9c5
-Size (postgresql-12.10.tar.bz2) = 20990621 bytes
+BLAKE2s (postgresql-12.11.tar.bz2) = 3b4a4bf765d658a603e7c54d2a6436918b842084780750db7bfb5accb970bf81
+SHA512 (postgresql-12.11.tar.bz2) = 705e9e1ccf8202062cce61069b5ddb7db5f804dd0736c620640ce5622b9e42fdcbc1417771e77d51aa54beb4562a09b4307f2ff7dec135bd0e31f4941ca36ac8
+Size (postgresql-12.11.tar.bz2) = 21086745 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd

Index: pkgsrc/databases/postgresql12-client/Makefile
diff -u pkgsrc/databases/postgresql12-client/Makefile:1.22 pkgsrc/databases/postgresql12-client/Makefile:1.23
--- pkgsrc/databases/postgresql12-client/Makefile:1.22  Thu May  5 08:22:38 2022
+++ pkgsrc/databases/postgresql12-client/Makefile       Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2022/05/05 08:22:38 nia Exp $
+# $NetBSD: Makefile,v 1.23 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql12/Makefile.common"

Index: pkgsrc/databases/postgresql12-contrib/Makefile
diff -u pkgsrc/databases/postgresql12-contrib/Makefile:1.20 pkgsrc/databases/postgresql12-contrib/Makefile:1.21
--- pkgsrc/databases/postgresql12-contrib/Makefile:1.20 Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-contrib/Makefile      Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql12/Makefile.common"

Index: pkgsrc/databases/postgresql12-docs/Makefile
diff -u pkgsrc/databases/postgresql12-docs/Makefile:1.14 pkgsrc/databases/postgresql12-docs/Makefile:1.15
--- pkgsrc/databases/postgresql12-docs/Makefile:1.14    Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-docs/Makefile Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql12/Makefile.common"

Index: pkgsrc/databases/postgresql12-docs/PLIST
diff -u pkgsrc/databases/postgresql12-docs/PLIST:1.11 pkgsrc/databases/postgresql12-docs/PLIST:1.12
--- pkgsrc/databases/postgresql12-docs/PLIST:1.11       Fri Feb 11 08:31:22 2022
+++ pkgsrc/databases/postgresql12-docs/PLIST    Thu May 12 19:02:44 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2022/02/11 08:31:22 adam Exp $
+@comment $NetBSD: PLIST,v 1.12 2022/05/12 19:02:44 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -963,6 +963,7 @@ share/doc/postgresql/html/regress-varian
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-12-1.html
 share/doc/postgresql/html/release-12-10.html
+share/doc/postgresql/html/release-12-11.html
 share/doc/postgresql/html/release-12-2.html
 share/doc/postgresql/html/release-12-3.html
 share/doc/postgresql/html/release-12-4.html

Index: pkgsrc/databases/postgresql12-plperl/Makefile
diff -u pkgsrc/databases/postgresql12-plperl/Makefile:1.17 pkgsrc/databases/postgresql12-plperl/Makefile:1.18
--- pkgsrc/databases/postgresql12-plperl/Makefile:1.17  Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-plperl/Makefile       Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.17 2022/04/18 19:10:41 adam Exp $
+#$ $NetBSD: Makefile,v 1.18 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server

Index: pkgsrc/databases/postgresql12-plpython/Makefile
diff -u pkgsrc/databases/postgresql12-plpython/Makefile:1.19 pkgsrc/databases/postgresql12-plpython/Makefile:1.20
--- pkgsrc/databases/postgresql12-plpython/Makefile:1.19        Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-plpython/Makefile     Thu May 12 19:02:44 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.20 2022/05/12 19:02:44 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-plpython-/}
-PKGREVISION=   1
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server

Index: pkgsrc/databases/postgresql12-pltcl/Makefile
diff -u pkgsrc/databases/postgresql12-pltcl/Makefile:1.18 pkgsrc/databases/postgresql12-pltcl/Makefile:1.19
--- pkgsrc/databases/postgresql12-pltcl/Makefile:1.18   Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-pltcl/Makefile        Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.19 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-pltcl-/}
-PKGREVISION=   1
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server

Index: pkgsrc/databases/postgresql12-server/Makefile
diff -u pkgsrc/databases/postgresql12-server/Makefile:1.20 pkgsrc/databases/postgresql12-server/Makefile:1.21
--- pkgsrc/databases/postgresql12-server/Makefile:1.20  Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql12-server/Makefile       Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/12-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation

Index: pkgsrc/databases/postgresql13/Makefile
diff -u pkgsrc/databases/postgresql13/Makefile:1.12 pkgsrc/databases/postgresql13/Makefile:1.13
--- pkgsrc/databases/postgresql13/Makefile:1.12 Mon Apr 18 19:10:41 2022
+++ pkgsrc/databases/postgresql13/Makefile      Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:41 adam Exp $
+# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql13-client>=${PKGVERSION_NOREV}:../../databases/postgresql13-client
Index: pkgsrc/databases/postgresql13/distinfo
diff -u pkgsrc/databases/postgresql13/distinfo:1.12 pkgsrc/databases/postgresql13/distinfo:1.13
--- pkgsrc/databases/postgresql13/distinfo:1.12 Fri Feb 11 08:31:23 2022
+++ pkgsrc/databases/postgresql13/distinfo      Thu May 12 19:02:45 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.12 2022/02/11 08:31:23 adam Exp $
+$NetBSD: distinfo,v 1.13 2022/05/12 19:02:45 adam Exp $
 
-BLAKE2s (postgresql-13.6.tar.bz2) = 9441445ed8495e6f19955d8051829b471279dad9a1ecb8b59aed81786498a473
-SHA512 (postgresql-13.6.tar.bz2) = 2852726a3031b8d469f1c38f3019af02fc5afe40ec27b22288a29acefd30c63a98806bce88a214d0c2f9177f547b0b5010ad64e70bcbe2c2f1d97a27ae1984f8
-Size (postgresql-13.6.tar.bz2) = 21257213 bytes
+BLAKE2s (postgresql-13.7.tar.bz2) = 093828d075b411a73a1a8112697e9b5e2841ffc7e70951bf90c8daff47e29d8f
+SHA512 (postgresql-13.7.tar.bz2) = 9254f21519c8d4e926f70082503bb5593c91064a3d2a4ea18ac503dfd9aa94751d6f01ce00fca9fec9b2b7af40caf8d0951b661dd8be4d6aa87c1e35b6fa7a41
+Size (postgresql-13.7.tar.bz2) = 21364433 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql13/Makefile.common
diff -u pkgsrc/databases/postgresql13/Makefile.common:1.11 pkgsrc/databases/postgresql13/Makefile.common:1.12
--- pkgsrc/databases/postgresql13/Makefile.common:1.11  Fri Feb 11 08:31:23 2022
+++ pkgsrc/databases/postgresql13/Makefile.common       Thu May 12 19:02:45 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.11 2022/02/11 08:31:23 adam Exp $
+# $NetBSD: Makefile.common,v 1.12 2022/05/12 19:02:45 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/postgresql13-pltcl/Makefile
 # used by databases/postgresql13-server/Makefile
 
-DISTNAME=      postgresql-13.6
+DISTNAME=      postgresql-13.7
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql13-client/Makefile
diff -u pkgsrc/databases/postgresql13-client/Makefile:1.14 pkgsrc/databases/postgresql13-client/Makefile:1.15
--- pkgsrc/databases/postgresql13-client/Makefile:1.14  Thu May  5 08:22:38 2022
+++ pkgsrc/databases/postgresql13-client/Makefile       Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2022/05/05 08:22:38 nia Exp $
+# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql13/Makefile.common"

Index: pkgsrc/databases/postgresql13-contrib/Makefile
diff -u pkgsrc/databases/postgresql13-contrib/Makefile:1.13 pkgsrc/databases/postgresql13-contrib/Makefile:1.14
--- pkgsrc/databases/postgresql13-contrib/Makefile:1.13 Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-contrib/Makefile      Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2022/04/18 19:10:42 adam Exp $
+# $NetBSD: Makefile,v 1.14 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql13/Makefile.common"

Index: pkgsrc/databases/postgresql13-docs/Makefile
diff -u pkgsrc/databases/postgresql13-docs/Makefile:1.10 pkgsrc/databases/postgresql13-docs/Makefile:1.11
--- pkgsrc/databases/postgresql13-docs/Makefile:1.10    Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-docs/Makefile Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2022/04/18 19:10:42 adam Exp $
+# $NetBSD: Makefile,v 1.11 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql13/Makefile.common"

Index: pkgsrc/databases/postgresql13-docs/PLIST
diff -u pkgsrc/databases/postgresql13-docs/PLIST:1.7 pkgsrc/databases/postgresql13-docs/PLIST:1.8
--- pkgsrc/databases/postgresql13-docs/PLIST:1.7        Fri Feb 11 08:31:23 2022
+++ pkgsrc/databases/postgresql13-docs/PLIST    Thu May 12 19:02:45 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2022/02/11 08:31:23 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2022/05/12 19:02:45 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -975,6 +975,7 @@ share/doc/postgresql/html/release-13-3.h
 share/doc/postgresql/html/release-13-4.html
 share/doc/postgresql/html/release-13-5.html
 share/doc/postgresql/html/release-13-6.html
+share/doc/postgresql/html/release-13-7.html
 share/doc/postgresql/html/release-13.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html

Index: pkgsrc/databases/postgresql13-plperl/Makefile
diff -u pkgsrc/databases/postgresql13-plperl/Makefile:1.12 pkgsrc/databases/postgresql13-plperl/Makefile:1.13
--- pkgsrc/databases/postgresql13-plperl/Makefile:1.12  Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-plperl/Makefile       Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $
+#$ $NetBSD: Makefile,v 1.13 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server

Index: pkgsrc/databases/postgresql13-plpython/Makefile
diff -u pkgsrc/databases/postgresql13-plpython/Makefile:1.13 pkgsrc/databases/postgresql13-plpython/Makefile:1.14
--- pkgsrc/databases/postgresql13-plpython/Makefile:1.13        Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-plpython/Makefile     Thu May 12 19:02:45 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2022/04/18 19:10:42 adam Exp $
+# $NetBSD: Makefile,v 1.14 2022/05/12 19:02:45 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-plpython-/}
-PKGREVISION=   1
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server

Index: pkgsrc/databases/postgresql13-pltcl/Makefile
diff -u pkgsrc/databases/postgresql13-pltcl/Makefile:1.12 pkgsrc/databases/postgresql13-pltcl/Makefile:1.13
--- pkgsrc/databases/postgresql13-pltcl/Makefile:1.12   Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-pltcl/Makefile        Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $
+# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-pltcl-/}
-PKGREVISION=   1
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server

Index: pkgsrc/databases/postgresql13-server/Makefile
diff -u pkgsrc/databases/postgresql13-server/Makefile:1.12 pkgsrc/databases/postgresql13-server/Makefile:1.13
--- pkgsrc/databases/postgresql13-server/Makefile:1.12  Mon Apr 18 19:10:42 2022
+++ pkgsrc/databases/postgresql13-server/Makefile       Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $
+# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/13-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation

Index: pkgsrc/databases/postgresql14/Makefile
diff -u pkgsrc/databases/postgresql14/Makefile:1.7 pkgsrc/databases/postgresql14/Makefile:1.8
--- pkgsrc/databases/postgresql14/Makefile:1.7  Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14/Makefile      Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.8 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-/}
-PKGREVISION=   2
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql14-client>=${PKGVERSION_NOREV}:../../databases/postgresql14-client

Index: pkgsrc/databases/postgresql14/Makefile.common
diff -u pkgsrc/databases/postgresql14/Makefile.common:1.3 pkgsrc/databases/postgresql14/Makefile.common:1.4
--- pkgsrc/databases/postgresql14/Makefile.common:1.3   Fri Feb 11 08:31:24 2022
+++ pkgsrc/databases/postgresql14/Makefile.common       Thu May 12 19:02:46 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.3 2022/02/11 08:31:24 adam Exp $
+# $NetBSD: Makefile.common,v 1.4 2022/05/12 19:02:46 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/postgresql14-pltcl/Makefile
 # used by databases/postgresql14-server/Makefile
 
-DISTNAME=      postgresql-14.2
+DISTNAME=      postgresql-14.3
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql14/distinfo
diff -u pkgsrc/databases/postgresql14/distinfo:1.5 pkgsrc/databases/postgresql14/distinfo:1.6
--- pkgsrc/databases/postgresql14/distinfo:1.5  Fri Feb 11 08:31:24 2022
+++ pkgsrc/databases/postgresql14/distinfo      Thu May 12 19:02:46 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.5 2022/02/11 08:31:24 adam Exp $
+$NetBSD: distinfo,v 1.6 2022/05/12 19:02:46 adam Exp $
 
-BLAKE2s (postgresql-14.2.tar.bz2) = 065346daa76b51cabcb161b800f5dbd44399525598868e8e0cafb431f4e2650e
-SHA512 (postgresql-14.2.tar.bz2) = 19aeb6528605dbcf5df84048b2eed8f54b202576134d3fe3900bb8f073179c4258d2581acd745887e7e6fa86ebdb5f7b159ffaa0a645d601efee7c5f7730456b
-Size (postgresql-14.2.tar.bz2) = 21964841 bytes
+BLAKE2s (postgresql-14.3.tar.bz2) = 70e8f4efa10e09ac9904b039c977a868ff5a3472453925faa7971d49fc9f4ae0
+SHA512 (postgresql-14.3.tar.bz2) = 70e6f67b5729a23f80b92b04e3fad2e09596b939660e3ddebf499d06af946459a45a019279e05413673e7b65d09a28a0440ed3c2ae565068466ed37e2d4f6f17
+Size (postgresql-14.3.tar.bz2) = 22092190 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql14-client/Makefile
diff -u pkgsrc/databases/postgresql14-client/Makefile:1.6 pkgsrc/databases/postgresql14-client/Makefile:1.7
--- pkgsrc/databases/postgresql14-client/Makefile:1.6   Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-client/Makefile       Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.7 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-client-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql14/Makefile.common"

Index: pkgsrc/databases/postgresql14-contrib/Makefile
diff -u pkgsrc/databases/postgresql14-contrib/Makefile:1.5 pkgsrc/databases/postgresql14-contrib/Makefile:1.6
--- pkgsrc/databases/postgresql14-contrib/Makefile:1.5  Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-contrib/Makefile      Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-contrib-/}
-PKGREVISION=   2
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql14/Makefile.common"

Index: pkgsrc/databases/postgresql14-docs/Makefile
diff -u pkgsrc/databases/postgresql14-docs/Makefile:1.5 pkgsrc/databases/postgresql14-docs/Makefile:1.6
--- pkgsrc/databases/postgresql14-docs/Makefile:1.5     Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-docs/Makefile Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-docs-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql14/Makefile.common"

Index: pkgsrc/databases/postgresql14-docs/PLIST
diff -u pkgsrc/databases/postgresql14-docs/PLIST:1.3 pkgsrc/databases/postgresql14-docs/PLIST:1.4
--- pkgsrc/databases/postgresql14-docs/PLIST:1.3        Fri Feb 11 08:31:24 2022
+++ pkgsrc/databases/postgresql14-docs/PLIST    Thu May 12 19:02:46 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2022/02/11 08:31:24 adam Exp $
+@comment $NetBSD: PLIST,v 1.4 2022/05/12 19:02:46 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -987,6 +987,7 @@ share/doc/postgresql/html/regress-varian
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-14-1.html
 share/doc/postgresql/html/release-14-2.html
+share/doc/postgresql/html/release-14-3.html
 share/doc/postgresql/html/release-14.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html

Index: pkgsrc/databases/postgresql14-plperl/Makefile
diff -u pkgsrc/databases/postgresql14-plperl/Makefile:1.5 pkgsrc/databases/postgresql14-plperl/Makefile:1.6
--- pkgsrc/databases/postgresql14-plperl/Makefile:1.5   Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-plperl/Makefile       Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $
+#$ $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-plperl-/}
-PKGREVISION=   2
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server

Index: pkgsrc/databases/postgresql14-plpython/Makefile
diff -u pkgsrc/databases/postgresql14-plpython/Makefile:1.5 pkgsrc/databases/postgresql14-plpython/Makefile:1.6
--- pkgsrc/databases/postgresql14-plpython/Makefile:1.5 Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-plpython/Makefile     Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-plpython-/}
-PKGREVISION=   2
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server

Index: pkgsrc/databases/postgresql14-pltcl/Makefile
diff -u pkgsrc/databases/postgresql14-pltcl/Makefile:1.5 pkgsrc/databases/postgresql14-pltcl/Makefile:1.6
--- pkgsrc/databases/postgresql14-pltcl/Makefile:1.5    Thu May 12 13:03:57 2022
+++ pkgsrc/databases/postgresql14-pltcl/Makefile        Thu May 12 19:02:46 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $
+# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-pltcl-/}
-PKGREVISION=   2
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server

Index: pkgsrc/databases/postgresql14-server/Makefile
diff -u pkgsrc/databases/postgresql14-server/Makefile:1.5 pkgsrc/databases/postgresql14-server/Makefile:1.6
--- pkgsrc/databases/postgresql14-server/Makefile:1.5   Thu May 12 13:03:58 2022
+++ pkgsrc/databases/postgresql14-server/Makefile       Thu May 12 19:02:47 2022
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:58 abs Exp $
+# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:47 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-server-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation



Home | Main Index | Thread Index | Old Index