pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases postgresql1N: updated to 14.2, 13.6, 12.10, ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7fb6d6a08b15
branches:  trunk
changeset: 373310:7fb6d6a08b15
user:      adam <adam%pkgsrc.org@localhost>
date:      Fri Feb 11 08:31:20 2022 +0000

description:
postgresql1N: updated to 14.2, 13.6, 12.10, 11.15, and 10.20

PostgreSQL 14.2, 13.6, 12.10, 11.15, and 10.20 Released!

This update fixes over 55 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 for a low probability scenario of index corruption when a HOT (heap-only tuple) chain changes state during VACUUM. Encountering this issue is unlikely, but if you are concerned, please consider 
reindexing.
Fix for using REINDEX CONCURRENTLY on TOAST table indexes to prevent corruption. You can fix any TOAST indexes by reindexing them again.
The psql \password command now defaults to setting the password for the role defined by CURRENT_USER. Additionally, the role name is now included in the password prompt.
Build extended statistics for partitioned tables. If you previously added extended statistics to a partitioned table, you should run ANALYZE on those tables. As autovacuum currently does not process 
partitioned tables, you must periodically run ANALYZE on any partitioned tables to update their statistics.
Fix crash with ALTER STATISTICS when the statistics object is dropped concurrently.
Fix crash with multiranges when extracting variable-length data types.
Several fixes to the query planner that lead to incorrect query results.
Several fixes for query plan memoization.
Fix startup of a physical replica to tolerate transaction ID wraparound.
When using logical replication, avoid duplicate transmission of a partitioned table's data when the publication includes both the child and parent tables.
Disallow altering data type of a partitioned table's columns when the partitioned table's row type is used as a composite type elsewhere.
Disallow ALTER TABLE ... DROP NOT NULL for a column that is part of a replica identity index.
Several fixes for caching that correct logical replication behavior and improve performance.
Fix memory leak when updating expression indexes.
Avoid leaking memory during REASSIGN OWNED BY operations that reassign ownership of many objects.
Fix display of whole-row variables appearing in INSERT ... VALUES rules.
Fix race condition that could lead to failure to localize error messages that are reported early in multi-threaded use of libpq or ecpglib.
Fix psql \d command for identifying parent triggers.
Fix failures on Windows when using the terminal as data source or destination. This affected the psql \copy command and using pg_recvlogical with -f -.
Fix the pg_dump --inserts and --column-inserts modes to handle tables that contain both generated and dropped columns.
Fix edge cases in how postgres_fdw handles asynchronous queries. These errors could lead to crashes or incorrect results when attempting to run parallel scans of foreign tables.
For the full list of changes available, please review the release notes.

diffstat:

 databases/postgresql10-client/Makefile   |  3 +--
 databases/postgresql10-contrib/Makefile  |  3 +--
 databases/postgresql10-docs/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          |  3 +--
 databases/postgresql10/Makefile.common   |  4 ++--
 databases/postgresql10/distinfo          |  8 ++++----
 databases/postgresql11-client/Makefile   |  3 +--
 databases/postgresql11-contrib/Makefile  |  3 +--
 databases/postgresql11-docs/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          |  3 +--
 databases/postgresql11/Makefile.common   |  4 ++--
 databases/postgresql11/distinfo          |  8 ++++----
 databases/postgresql12-client/Makefile   |  3 +--
 databases/postgresql12-contrib/Makefile  |  3 +--
 databases/postgresql12-docs/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          |  3 +--
 databases/postgresql12/Makefile.common   |  4 ++--
 databases/postgresql12/distinfo          |  8 ++++----
 databases/postgresql13-client/Makefile   |  3 +--
 databases/postgresql13-contrib/Makefile  |  3 +--
 databases/postgresql13-docs/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          |  3 +--
 databases/postgresql13/Makefile.common   |  4 ++--
 databases/postgresql13/distinfo          |  8 ++++----
 databases/postgresql14-client/Makefile   |  3 +--
 databases/postgresql14-client/PLIST      |  3 ++-
 databases/postgresql14-contrib/Makefile  |  3 +--
 databases/postgresql14-docs/Makefile     |  3 +--
 databases/postgresql14-docs/PLIST        |  3 ++-
 databases/postgresql14-plperl/Makefile   |  3 +--
 databases/postgresql14-plpython/Makefile |  3 +--
 databases/postgresql14-pltcl/Makefile    |  3 +--
 databases/postgresql14-server/Makefile   |  3 +--
 databases/postgresql14/Makefile          |  3 +--
 databases/postgresql14/Makefile.common   |  4 ++--
 databases/postgresql14/distinfo          |  8 ++++----
 56 files changed, 82 insertions(+), 116 deletions(-)

diffs (truncated from 752 to 300 lines):

diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-client/Makefile
--- a/databases/postgresql10-client/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-client/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2021/12/08 16:03:42 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/02/11 08:31:20 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-contrib/Makefile
--- a/databases/postgresql10-contrib/Makefile   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-contrib/Makefile   Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2021/12/08 16:03:42 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/02/11 08:31:20 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-docs/Makefile
--- a/databases/postgresql10-docs/Makefile      Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-docs/Makefile      Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.15 2022/02/11 08:31:20 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-docs/PLIST
--- a/databases/postgresql10-docs/PLIST Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-docs/PLIST Fri Feb 11 08:31:20 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.20 2021/11/16 10:14:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.21 2022/02/11 08:31:20 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -929,6 +929,7 @@
 share/doc/postgresql/html/release-10-18.html
 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-3.html
 share/doc/postgresql/html/release-10-4.html
 share/doc/postgresql/html/release-10-5.html
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-plperl/Makefile
--- a/databases/postgresql10-plperl/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-plperl/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.17 2021/12/08 16:03:43 adam Exp $
+#$ $NetBSD: Makefile,v 1.18 2022/02/11 08:31:21 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 aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-plpython/Makefile
--- a/databases/postgresql10-plpython/Makefile  Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-plpython/Makefile  Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.21 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.22 2022/02/11 08:31:21 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
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-pltcl/Makefile
--- a/databases/postgresql10-pltcl/Makefile     Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-pltcl/Makefile     Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.19 2022/02/11 08:31:21 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 aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10-server/Makefile
--- a/databases/postgresql10-server/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10-server/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.23 2022/02/11 08:31:21 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10/Makefile
--- a/databases/postgresql10/Makefile   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10/Makefile   Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2021/12/08 16:03:42 adam Exp $
+# $NetBSD: Makefile,v 1.29 2022/02/11 08:31:20 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql10-client>=${PKGVERSION_NOREV}:../../databases/postgresql10-client
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10/Makefile.common
--- a/databases/postgresql10/Makefile.common    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10/Makefile.common    Fri Feb 11 08:31:20 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.31 2021/11/16 10:14:36 adam Exp $
+# $NetBSD: Makefile.common,v 1.32 2022/02/11 08:31:20 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.19
+DISTNAME=      postgresql-10.20
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql10/distinfo
--- a/databases/postgresql10/distinfo   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql10/distinfo   Fri Feb 11 08:31:20 2022 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.25 2021/11/16 10:14:36 adam Exp $
+$NetBSD: distinfo,v 1.26 2022/02/11 08:31:20 adam Exp $
 
-BLAKE2s (postgresql-10.19.tar.bz2) = fc851119bc8796bb1d7a27313bbd685583c6667634d073795e1f3a06d336c0b6
-SHA512 (postgresql-10.19.tar.bz2) = 41b0f5026be7d563e41b54e9ea7199dd466a132d355be0b71a91d41f533d97fbf550eccf2a2ece3d60c5dab5921ebeea3ac4780c18c54b924df52d7423305a22
-Size (postgresql-10.19.tar.bz2) = 19261478 bytes
+BLAKE2s (postgresql-10.20.tar.bz2) = 3bdc7eed893b1e73b7170e527b12699ada8f90a844e876bb029ad4026bf95a55
+SHA512 (postgresql-10.20.tar.bz2) = 44cfca541947d58c70593b767d3c2423f20cc6904f3d4cea8f63c1802ccbc569130c4a2a15f1af152285926f6a200e13d59c21584295dafd6f6e74bd38251428
+Size (postgresql-10.20.tar.bz2) = 19371473 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-client/Makefile
--- a/databases/postgresql11-client/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-client/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.18 2022/02/11 08:31:21 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-client-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-contrib/Makefile
--- a/databases/postgresql11-contrib/Makefile   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-contrib/Makefile   Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.19 2022/02/11 08:31:21 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-contrib-/}
-PKGREVISION=   1
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-docs/Makefile
--- a/databases/postgresql11-docs/Makefile      Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-docs/Makefile      Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2021/12/08 16:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.13 2022/02/11 08:31:21 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-docs-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-docs/PLIST
--- a/databases/postgresql11-docs/PLIST Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-docs/PLIST Fri Feb 11 08:31:20 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2021/11/16 10:14:37 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2022/02/11 08:31:21 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -959,6 +959,7 @@
 share/doc/postgresql/html/release-11-12.html
 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-2.html
 share/doc/postgresql/html/release-11-3.html
 share/doc/postgresql/html/release-11-4.html
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-plperl/Makefile
--- a/databases/postgresql11-plperl/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-plperl/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.15 2021/12/08 16:03:44 adam Exp $
+#$ $NetBSD: Makefile,v 1.16 2022/02/11 08:31:21 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 aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-plpython/Makefile
--- a/databases/postgresql11-plpython/Makefile  Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-plpython/Makefile  Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2021/12/08 16:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.20 2022/02/11 08:31:22 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
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-pltcl/Makefile
--- a/databases/postgresql11-pltcl/Makefile     Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-pltcl/Makefile     Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2021/12/08 16:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.17 2022/02/11 08:31:22 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 aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11-server/Makefile
--- a/databases/postgresql11-server/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11-server/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2021/12/08 16:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.20 2022/02/11 08:31:22 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-server-/}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11/Makefile
--- a/databases/postgresql11/Makefile   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11/Makefile   Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2021/12/08 16:03:43 adam Exp $
+# $NetBSD: Makefile,v 1.21 2022/02/11 08:31:21 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-/}
-PKGREVISION=   2
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql11-client>=${PKGVERSION_NOREV}:../../databases/postgresql11-client
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11/Makefile.common
--- a/databases/postgresql11/Makefile.common    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11/Makefile.common    Fri Feb 11 08:31:20 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.24 2021/11/16 10:14:37 adam Exp $
+# $NetBSD: Makefile.common,v 1.25 2022/02/11 08:31:21 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.14
+DISTNAME=      postgresql-11.15
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql11/distinfo
--- a/databases/postgresql11/distinfo   Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql11/distinfo   Fri Feb 11 08:31:20 2022 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.20 2021/11/16 10:14:37 adam Exp $
+$NetBSD: distinfo,v 1.21 2022/02/11 08:31:21 adam Exp $
 
-BLAKE2s (postgresql-11.14.tar.bz2) = 54eff3d77ba619e5c132e4617d16f9a3e2016306e5b8083e017deec1a26f7820
-SHA512 (postgresql-11.14.tar.bz2) = ab71461ee6fb4cdc5b4240f7ecd8af2497ce6780283fde2abf5951ffdb616bd0c8ed22b26fdfca402a346e663ff77c4d17f3284c9d700e6fd6795b2aec97c9be
-Size (postgresql-11.14.tar.bz2) = 20172910 bytes
+BLAKE2s (postgresql-11.15.tar.bz2) = e6f70c1693bba23c70127b0234494d2d7a43b4e5a0f80f26477090e4fff6e4fa
+SHA512 (postgresql-11.15.tar.bz2) = 1eba7bddee1edf034617102c1d61ad0aa1b58927dad63de1d054817966c4c9a1d7d3fa6f6896af3fe5a6880b09a6ec86be298256ee6ecc3705ff2654d3d00c74
+Size (postgresql-11.15.tar.bz2) = 20245750 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r aa26876afec1 -r 7fb6d6a08b15 databases/postgresql12-client/Makefile
--- a/databases/postgresql12-client/Makefile    Fri Feb 11 08:06:21 2022 +0000
+++ b/databases/postgresql12-client/Makefile    Fri Feb 11 08:31:20 2022 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2021/12/08 16:03:44 adam Exp $
+# $NetBSD: Makefile,v 1.20 2022/02/11 08:31:22 adam Exp $



Home | Main Index | Thread Index | Old Index