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:           Fri Aug 15 08:37:43 UTC 2025

Modified Files:
        pkgsrc/databases/postgresql13: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql13-docs: PLIST
        pkgsrc/databases/postgresql13-plperl: Makefile
        pkgsrc/databases/postgresql14: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql14-docs: PLIST
        pkgsrc/databases/postgresql14-plperl: Makefile
        pkgsrc/databases/postgresql15: Makefile.common distinfo
        pkgsrc/databases/postgresql15-docs: PLIST
        pkgsrc/databases/postgresql15-plperl: Makefile
        pkgsrc/databases/postgresql16: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql16-docs: PLIST
        pkgsrc/databases/postgresql16-plperl: Makefile
        pkgsrc/databases/postgresql17: Makefile Makefile.common distinfo
        pkgsrc/databases/postgresql17-docs: PLIST
        pkgsrc/databases/postgresql17-plperl: Makefile

Log Message:
postgresql1[3-7]: updated to 17.6, 16.10, 15.14, 14.19, 13.22

PostgreSQL 17.6, 16.10, 15.14, 14.19, 13.22

Security Issues

CVE-2025-8713: PostgreSQL optimizer statistics can expose sampled data within a view, partition, or child table
CVE-2025-8714: PostgreSQL pg_dump lets superuser of origin server execute arbitrary code in psql client
CVE-2025-8715: PostgreSQL pg_dump newline in object name executes arbitrary code in psql client and in restore target server

Bug Fixes and Improvements

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

Fix for BRIN indexes using the numeric_minmax_multi_ops operator class that could cause them to become bloated and inefficient. Please see the "Updating" section for instructions on how to fix these 
indexes.
Several fixes for logical replication, including fixes for memory allocation failure, duplicate transaction replay, infinite wait, unexpected shutdown, and a standby unable to shutdown.
Fix premature removal of old WAL during a checkpoint, which could impact recovery when using replication slots.
Revert a change that could reject XML documents over 10MB in size.
Fix how nested character classes (e.g. [[:alpha:]%_]) are handled in SIMILAR TO expressions.
Restore the ability for PL/pgSQL expressions to use parallel execution.
Avoid a rare scenario where a B-tree index could modify the wrong entry.
Several fixes for MERGE, including incorrect query results with concurrency and when targeting a table that is a parent in an inheritance hierarchy.
Fix LZ4 decompression failure that could occur on data that is not very compressible.
Prevent an infinite loop in checkpoints on systems with very large shared_buffers settings.
Fix issues with GSSAPI authentication when using Active Directory accounts with many group memberships. This release also fixes timing-dependent connection failures when using SSL or GSSAPI 
encryption in non-blocking mode.
Fix a crash in libpq function PQcancelCreate().
Fix several resource leaks.


To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 pkgsrc/databases/postgresql13/Makefile
cvs rdiff -u -r1.31 -r1.32 pkgsrc/databases/postgresql13/Makefile.common
cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/postgresql13/distinfo
cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql13-docs/PLIST
cvs rdiff -u -r1.37 -r1.38 pkgsrc/databases/postgresql13-plperl/Makefile
cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/postgresql14/Makefile
cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/postgresql14/Makefile.common
cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql14/distinfo
cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql14-docs/PLIST
cvs rdiff -u -r1.30 -r1.31 pkgsrc/databases/postgresql14-plperl/Makefile
cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql15/Makefile.common
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql15/distinfo
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql15-docs/PLIST
cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql15-plperl/Makefile
cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql16/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/postgresql16/Makefile.common
cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql16/distinfo
cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/postgresql16-docs/PLIST
cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql16-plperl/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql17/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql17/Makefile.common
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql17/distinfo
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql17-docs/PLIST
cvs rdiff -u -r1.9 -r1.10 pkgsrc/databases/postgresql17-plperl/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/postgresql13/Makefile
diff -u pkgsrc/databases/postgresql13/Makefile:1.33 pkgsrc/databases/postgresql13/Makefile:1.34
--- pkgsrc/databases/postgresql13/Makefile:1.33 Fri May  9 19:37:09 2025
+++ pkgsrc/databases/postgresql13/Makefile      Fri Aug 15 08:37:41 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.33 2025/05/09 19:37:09 wiz Exp $
+# $NetBSD: Makefile,v 1.34 2025/08/15 08:37:41 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/Makefile.common
diff -u pkgsrc/databases/postgresql13/Makefile.common:1.31 pkgsrc/databases/postgresql13/Makefile.common:1.32
--- pkgsrc/databases/postgresql13/Makefile.common:1.31  Fri May 23 12:51:40 2025
+++ pkgsrc/databases/postgresql13/Makefile.common       Fri Aug 15 08:37:41 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.31 2025/05/23 12:51:40 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.32 2025/08/15 08:37:41 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.21
+DISTNAME=      postgresql-13.22
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql13/distinfo
diff -u pkgsrc/databases/postgresql13/distinfo:1.28 pkgsrc/databases/postgresql13/distinfo:1.29
--- pkgsrc/databases/postgresql13/distinfo:1.28 Fri May  9 13:46:30 2025
+++ pkgsrc/databases/postgresql13/distinfo      Fri Aug 15 08:37:41 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.28 2025/05/09 13:46:30 adam Exp $
+$NetBSD: distinfo,v 1.29 2025/08/15 08:37:41 adam Exp $
 
-BLAKE2s (postgresql-13.21.tar.bz2) = fa090a75db248be8d299f6e5215d1165d4439f4b801404a25be27329254939d3
-SHA512 (postgresql-13.21.tar.bz2) = 800f58b7651babafcca43411d6215474422e57ed16e5af246bf8beb72afaf844ca325d5d02443089fb9848d0b42872f0251aaa873a79f5094806fcdd2e10ed4b
-Size (postgresql-13.21.tar.bz2) = 21759813 bytes
+BLAKE2s (postgresql-13.22.tar.bz2) = e48770bd43807099ac695bc0e67ed53b2a65c73be472fce02b4ff576a9be88e3
+SHA512 (postgresql-13.22.tar.bz2) = 0f578526aad852285de001369dd1c8308f03479c8f4f6c1a1d066b6b77103e340df95b9ab41df3f959c4e17d4fb0c0441b02a04d3e6c01cfcd40a2632c3ac7eb
+Size (postgresql-13.22.tar.bz2) = 21783034 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql13-docs/PLIST
diff -u pkgsrc/databases/postgresql13-docs/PLIST:1.22 pkgsrc/databases/postgresql13-docs/PLIST:1.23
--- pkgsrc/databases/postgresql13-docs/PLIST:1.22       Fri May  9 13:46:31 2025
+++ pkgsrc/databases/postgresql13-docs/PLIST    Fri Aug 15 08:37:41 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.22 2025/05/09 13:46:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.23 2025/08/15 08:37:41 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -984,6 +984,7 @@ share/doc/postgresql/html/release-13-19.
 share/doc/postgresql/html/release-13-2.html
 share/doc/postgresql/html/release-13-20.html
 share/doc/postgresql/html/release-13-21.html
+share/doc/postgresql/html/release-13-22.html
 share/doc/postgresql/html/release-13-3.html
 share/doc/postgresql/html/release-13-4.html
 share/doc/postgresql/html/release-13-5.html

Index: pkgsrc/databases/postgresql13-plperl/Makefile
diff -u pkgsrc/databases/postgresql13-plperl/Makefile:1.37 pkgsrc/databases/postgresql13-plperl/Makefile:1.38
--- pkgsrc/databases/postgresql13-plperl/Makefile:1.37  Fri Jul  4 08:45:07 2025
+++ pkgsrc/databases/postgresql13-plperl/Makefile       Fri Aug 15 08:37:41 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.37 2025/07/04 08:45:07 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2025/08/15 08:37:41 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/postgresql14/Makefile
diff -u pkgsrc/databases/postgresql14/Makefile:1.28 pkgsrc/databases/postgresql14/Makefile:1.29
--- pkgsrc/databases/postgresql14/Makefile:1.28 Fri May  9 19:37:10 2025
+++ pkgsrc/databases/postgresql14/Makefile      Fri Aug 15 08:37:41 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.28 2025/05/09 19:37:10 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2025/08/15 08:37:41 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-/}
-PKGREVISION=   1
 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.24 pkgsrc/databases/postgresql14/Makefile.common:1.25
--- pkgsrc/databases/postgresql14/Makefile.common:1.24  Fri May 23 12:51:40 2025
+++ pkgsrc/databases/postgresql14/Makefile.common       Fri Aug 15 08:37:41 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.24 2025/05/23 12:51:40 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.25 2025/08/15 08:37:41 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.18
+DISTNAME=      postgresql-14.19
 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.21 pkgsrc/databases/postgresql14/distinfo:1.22
--- pkgsrc/databases/postgresql14/distinfo:1.21 Fri May  9 13:46:31 2025
+++ pkgsrc/databases/postgresql14/distinfo      Fri Aug 15 08:37:41 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.21 2025/05/09 13:46:31 adam Exp $
+$NetBSD: distinfo,v 1.22 2025/08/15 08:37:41 adam Exp $
 
-BLAKE2s (postgresql-14.18.tar.bz2) = 7b4726f21d07517d26468b3977c8ef1d7fa539e0ba15a3bc0157beff76794d7b
-SHA512 (postgresql-14.18.tar.bz2) = fe40ba9fcc001f8c7eb3557c6248fa42af82b487ea4f31b8b20f5fa7ab930246659a4c8cf0bfa9a52f5143c766c0660d36b092474d2909020114ea3a1810adfd
-Size (postgresql-14.18.tar.bz2) = 22503241 bytes
+BLAKE2s (postgresql-14.19.tar.bz2) = 33bd320702df468dbbc0ca7d7932a7fe1b7e9c5a4416f98ed5acc4d9255c5cfd
+SHA512 (postgresql-14.19.tar.bz2) = 8f7f49c439b954fc1091c32d857d16e25db0b6f3687d44a6a2360a6c72002545eb2f9d09f2b460aeed3371aeabbe7abf599d92ff60baa2d1e4882a106ad14139
+Size (postgresql-14.19.tar.bz2) = 22517457 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql14-docs/PLIST
diff -u pkgsrc/databases/postgresql14-docs/PLIST:1.19 pkgsrc/databases/postgresql14-docs/PLIST:1.20
--- pkgsrc/databases/postgresql14-docs/PLIST:1.19       Fri May  9 13:46:32 2025
+++ pkgsrc/databases/postgresql14-docs/PLIST    Fri Aug 15 08:37:41 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2025/05/09 13:46:32 adam Exp $
+@comment $NetBSD: PLIST,v 1.20 2025/08/15 08:37:41 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -996,6 +996,7 @@ share/doc/postgresql/html/release-14-15.
 share/doc/postgresql/html/release-14-16.html
 share/doc/postgresql/html/release-14-17.html
 share/doc/postgresql/html/release-14-18.html
+share/doc/postgresql/html/release-14-19.html
 share/doc/postgresql/html/release-14-2.html
 share/doc/postgresql/html/release-14-3.html
 share/doc/postgresql/html/release-14-4.html

Index: pkgsrc/databases/postgresql14-plperl/Makefile
diff -u pkgsrc/databases/postgresql14-plperl/Makefile:1.30 pkgsrc/databases/postgresql14-plperl/Makefile:1.31
--- pkgsrc/databases/postgresql14-plperl/Makefile:1.30  Fri Jul  4 08:45:07 2025
+++ pkgsrc/databases/postgresql14-plperl/Makefile       Fri Aug 15 08:37:41 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2025/07/04 08:45:07 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2025/08/15 08:37:41 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/14-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server

Index: pkgsrc/databases/postgresql15/Makefile.common
diff -u pkgsrc/databases/postgresql15/Makefile.common:1.18 pkgsrc/databases/postgresql15/Makefile.common:1.19
--- pkgsrc/databases/postgresql15/Makefile.common:1.18  Fri May 23 12:51:41 2025
+++ pkgsrc/databases/postgresql15/Makefile.common       Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.18 2025/05/23 12:51:41 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.19 2025/08/15 08:37: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/postgresql15-pltcl/Makefile
 # used by databases/postgresql15-server/Makefile
 
-DISTNAME=      postgresql-15.13
+DISTNAME=      postgresql-15.14
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql15/distinfo
diff -u pkgsrc/databases/postgresql15/distinfo:1.14 pkgsrc/databases/postgresql15/distinfo:1.15
--- pkgsrc/databases/postgresql15/distinfo:1.14 Fri May  9 13:46:32 2025
+++ pkgsrc/databases/postgresql15/distinfo      Fri Aug 15 08:37:42 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.14 2025/05/09 13:46:32 adam Exp $
+$NetBSD: distinfo,v 1.15 2025/08/15 08:37:42 adam Exp $
 
-BLAKE2s (postgresql-15.13.tar.bz2) = ae7a51d31fbca182c420246c1bb38fdf5f7b6b666887a97efee780b80e51cbce
-SHA512 (postgresql-15.13.tar.bz2) = dd16bc331f6e33cd8ba7a6f19582d4e94d66e4cf4b89b8fe1872f16854401b9f7caf0900478b64a05047d22d2ca07aea5ba71fd5c96fa04bd45713235acdd686
-Size (postgresql-15.13.tar.bz2) = 23190593 bytes
+BLAKE2s (postgresql-15.14.tar.bz2) = 2c96dca6cbd478fd71157b07b1f6718e6fc108e999cd341480bba795a705f4c5
+SHA512 (postgresql-15.14.tar.bz2) = 6bef254af257eb79a6b4ec1fd09a996351848561a493e529b7e44b053b368753d56cd76de74b07fff6d637606773963e83e4c3bb321682774b12d24dfa1ca8f4
+Size (postgresql-15.14.tar.bz2) = 23229854 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql15-docs/PLIST
diff -u pkgsrc/databases/postgresql15-docs/PLIST:1.14 pkgsrc/databases/postgresql15-docs/PLIST:1.15
--- pkgsrc/databases/postgresql15-docs/PLIST:1.14       Fri May  9 13:46:33 2025
+++ pkgsrc/databases/postgresql15-docs/PLIST    Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2025/05/09 13:46:33 adam Exp $
+@comment $NetBSD: PLIST,v 1.15 2025/08/15 08:37:42 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -1004,6 +1004,7 @@ share/doc/postgresql/html/release-15-10.
 share/doc/postgresql/html/release-15-11.html
 share/doc/postgresql/html/release-15-12.html
 share/doc/postgresql/html/release-15-13.html
+share/doc/postgresql/html/release-15-14.html
 share/doc/postgresql/html/release-15-2.html
 share/doc/postgresql/html/release-15-3.html
 share/doc/postgresql/html/release-15-4.html

Index: pkgsrc/databases/postgresql15-plperl/Makefile
diff -u pkgsrc/databases/postgresql15-plperl/Makefile:1.22 pkgsrc/databases/postgresql15-plperl/Makefile:1.23
--- pkgsrc/databases/postgresql15-plperl/Makefile:1.22  Fri Jul  4 08:45:07 2025
+++ pkgsrc/databases/postgresql15-plperl/Makefile       Fri Aug 15 08:37:42 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2025/07/04 08:45:07 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2025/08/15 08:37:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/15-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql15-server>=${PKGVERSION_NOREV}:../../databases/postgresql15-server

Index: pkgsrc/databases/postgresql16/Makefile
diff -u pkgsrc/databases/postgresql16/Makefile:1.14 pkgsrc/databases/postgresql16/Makefile:1.15
--- pkgsrc/databases/postgresql16/Makefile:1.14 Fri May  9 19:37:10 2025
+++ pkgsrc/databases/postgresql16/Makefile      Fri Aug 15 08:37:42 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2025/05/09 19:37:10 wiz Exp $
+# $NetBSD: Makefile,v 1.15 2025/08/15 08:37:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/16-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql16-client>=${PKGVERSION_NOREV}:../../databases/postgresql16-client

Index: pkgsrc/databases/postgresql16/Makefile.common
diff -u pkgsrc/databases/postgresql16/Makefile.common:1.16 pkgsrc/databases/postgresql16/Makefile.common:1.17
--- pkgsrc/databases/postgresql16/Makefile.common:1.16  Fri May 23 12:51:41 2025
+++ pkgsrc/databases/postgresql16/Makefile.common       Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.16 2025/05/23 12:51:41 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.17 2025/08/15 08:37: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/postgresql16-pltcl/Makefile
 # used by databases/postgresql16-server/Makefile
 
-DISTNAME=      postgresql-16.9
+DISTNAME=      postgresql-16.10
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql16/distinfo
diff -u pkgsrc/databases/postgresql16/distinfo:1.11 pkgsrc/databases/postgresql16/distinfo:1.12
--- pkgsrc/databases/postgresql16/distinfo:1.11 Fri May  9 13:46:33 2025
+++ pkgsrc/databases/postgresql16/distinfo      Fri Aug 15 08:37:42 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.11 2025/05/09 13:46:33 adam Exp $
+$NetBSD: distinfo,v 1.12 2025/08/15 08:37:42 adam Exp $
 
-BLAKE2s (postgresql-16.9.tar.bz2) = 55b0060476d268a46985895ee3b5eb8ade4b9b183c685bce48bb377d643ccce8
-SHA512 (postgresql-16.9.tar.bz2) = 23a3d983c5be49c3daabbbde35db2920bd2e2ba8d9baba805e7908da1f43153ff438c76c253ea8ee8ac6f8a9313fbf0348a1e9b45ef530c5e156fee0daceb814
-Size (postgresql-16.9.tar.bz2) = 24936316 bytes
+BLAKE2s (postgresql-16.10.tar.bz2) = 90688bafe9ca2995fe8a67911143746383f6ceea3151e6841ac992c04f5a213f
+SHA512 (postgresql-16.10.tar.bz2) = b6de80d522f863b0d9dd8c2bf4f71bea309bd07586859e309a9821e7f6fd5839557dc396351e7b61aebf492bf8c8a053a324f059a1dee621ac1a6d5e8eccea22
+Size (postgresql-16.10.tar.bz2) = 24977722 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 9c4bf707b6aded63b2e0cff375465693cad1dea9
 SHA1 (patch-configure) = 3392111516ca65ad7980ee39246c4210ec020c34

Index: pkgsrc/databases/postgresql16-docs/PLIST
diff -u pkgsrc/databases/postgresql16-docs/PLIST:1.10 pkgsrc/databases/postgresql16-docs/PLIST:1.11
--- pkgsrc/databases/postgresql16-docs/PLIST:1.10       Fri May  9 13:46:34 2025
+++ pkgsrc/databases/postgresql16-docs/PLIST    Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2025/05/09 13:46:34 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2025/08/15 08:37:42 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -999,6 +999,7 @@ share/doc/postgresql/html/regress-tap.ht
 share/doc/postgresql/html/regress-variant.html
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-16-1.html
+share/doc/postgresql/html/release-16-10.html
 share/doc/postgresql/html/release-16-2.html
 share/doc/postgresql/html/release-16-3.html
 share/doc/postgresql/html/release-16-4.html

Index: pkgsrc/databases/postgresql16-plperl/Makefile
diff -u pkgsrc/databases/postgresql16-plperl/Makefile:1.15 pkgsrc/databases/postgresql16-plperl/Makefile:1.16
--- pkgsrc/databases/postgresql16-plperl/Makefile:1.15  Fri Jul  4 08:45:07 2025
+++ pkgsrc/databases/postgresql16-plperl/Makefile       Fri Aug 15 08:37:42 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2025/07/04 08:45:07 wiz Exp $
+# $NetBSD: Makefile,v 1.16 2025/08/15 08:37:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/16-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql16-server>=${PKGVERSION_NOREV}:../../databases/postgresql16-server

Index: pkgsrc/databases/postgresql17/Makefile
diff -u pkgsrc/databases/postgresql17/Makefile:1.7 pkgsrc/databases/postgresql17/Makefile:1.8
--- pkgsrc/databases/postgresql17/Makefile:1.7  Fri May  9 19:37:10 2025
+++ pkgsrc/databases/postgresql17/Makefile      Fri Aug 15 08:37:42 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2025/05/09 19:37:10 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2025/08/15 08:37:42 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/17-/}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql17-client>=${PKGVERSION_NOREV}:../../databases/postgresql17-client

Index: pkgsrc/databases/postgresql17/Makefile.common
diff -u pkgsrc/databases/postgresql17/Makefile.common:1.12 pkgsrc/databases/postgresql17/Makefile.common:1.13
--- pkgsrc/databases/postgresql17/Makefile.common:1.12  Fri May 23 12:51:41 2025
+++ pkgsrc/databases/postgresql17/Makefile.common       Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.12 2025/05/23 12:51:41 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.13 2025/08/15 08:37: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/postgresql17-pltcl/Makefile
 # used by databases/postgresql17-server/Makefile
 
-DISTNAME=      postgresql-17.5
+DISTNAME=      postgresql-17.6
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql17/distinfo
diff -u pkgsrc/databases/postgresql17/distinfo:1.6 pkgsrc/databases/postgresql17/distinfo:1.7
--- pkgsrc/databases/postgresql17/distinfo:1.6  Fri May  9 13:46:34 2025
+++ pkgsrc/databases/postgresql17/distinfo      Fri Aug 15 08:37:42 2025
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.6 2025/05/09 13:46:34 adam Exp $
+$NetBSD: distinfo,v 1.7 2025/08/15 08:37:42 adam Exp $
 
-BLAKE2s (postgresql-17.5.tar.bz2) = 5473893389d0871d8e3ab7813cc6042bf4c130c781a6009868c291515ea362f6
-SHA512 (postgresql-17.5.tar.bz2) = deae865e6c8e2ef5bb622288f790c5b83d22235496513e60351354970ff193eb885fb632c2d1321b8311c88c05b76a370d8d838473936c8438dbb569086b139f
-Size (postgresql-17.5.tar.bz2) = 21595174 bytes
+BLAKE2s (postgresql-17.6.tar.bz2) = 539d0326b89b87f95a87fb7ea6f4b966e55880c99e77ff4a74b74e0ee1a6b021
+SHA512 (postgresql-17.6.tar.bz2) = d377ed208b3fd1bf9611f148f4286e8c655374218cc3b12cd766917063001750f7dede140065874b7c8bdc2f2b3ecaf15c18cc6cd341929b2c3a574a7797a67e
+Size (postgresql-17.6.tar.bz2) = 21623975 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 9c4bf707b6aded63b2e0cff375465693cad1dea9
 SHA1 (patch-configure) = beebdd7d46e37065c86d7edbfb982bac1fbc9147

Index: pkgsrc/databases/postgresql17-docs/PLIST
diff -u pkgsrc/databases/postgresql17-docs/PLIST:1.6 pkgsrc/databases/postgresql17-docs/PLIST:1.7
--- pkgsrc/databases/postgresql17-docs/PLIST:1.6        Fri May  9 13:46:35 2025
+++ pkgsrc/databases/postgresql17-docs/PLIST    Fri Aug 15 08:37:42 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2025/05/09 13:46:35 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2025/08/15 08:37:42 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -987,6 +987,7 @@ share/doc/postgresql/html/release-17-2.h
 share/doc/postgresql/html/release-17-3.html
 share/doc/postgresql/html/release-17-4.html
 share/doc/postgresql/html/release-17-5.html
+share/doc/postgresql/html/release-17-6.html
 share/doc/postgresql/html/release-17.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html

Index: pkgsrc/databases/postgresql17-plperl/Makefile
diff -u pkgsrc/databases/postgresql17-plperl/Makefile:1.9 pkgsrc/databases/postgresql17-plperl/Makefile:1.10
--- pkgsrc/databases/postgresql17-plperl/Makefile:1.9   Fri Jul  4 08:45:08 2025
+++ pkgsrc/databases/postgresql17-plperl/Makefile       Fri Aug 15 08:37:43 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2025/07/04 08:45:08 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2025/08/15 08:37:43 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/17-plperl-/}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql17-server>=${PKGVERSION_NOREV}:../../databases/postgresql17-server



Home | Main Index | Thread Index | Old Index