pkgsrc-Changes archive

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

CVS commit: [pkgsrc-2021Q3] pkgsrc/databases



Module Name:    pkgsrc
Committed By:   tm
Date:           Wed Nov 24 14:31:21 UTC 2021

Modified Files:
        pkgsrc/databases/postgresql10 [pkgsrc-2021Q3]: Makefile.common distinfo
        pkgsrc/databases/postgresql10-docs [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql10-server [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql11 [pkgsrc-2021Q3]: Makefile.common distinfo
        pkgsrc/databases/postgresql11-docs [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql11-server [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql12 [pkgsrc-2021Q3]: Makefile.common distinfo
        pkgsrc/databases/postgresql12-docs [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql12-server [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql13 [pkgsrc-2021Q3]: Makefile.common distinfo
        pkgsrc/databases/postgresql13-client [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql13-docs [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql13-server [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql96 [pkgsrc-2021Q3]: Makefile.common distinfo
        pkgsrc/databases/postgresql96-docs [pkgsrc-2021Q3]: PLIST
        pkgsrc/databases/postgresql96-server [pkgsrc-2021Q3]: PLIST

Log Message:
Pullup ticket #6535 - requested by bsiegert
databases/postgresql: security fix

Revisions pulled up:
- databases/postgresql10-docs/PLIST                             1.20
- databases/postgresql10-server/PLIST                           1.10
- databases/postgresql10/Makefile                               1.27
- databases/postgresql10/Makefile.common                        1.31
- databases/postgresql10/distinfo                               1.25
- databases/postgresql11-docs/PLIST                             1.15
- databases/postgresql11-server/PLIST                           1.5
- databases/postgresql11/Makefile.common                        1.24
- databases/postgresql11/distinfo                               1.20
- databases/postgresql12-docs/PLIST                             1.10
- databases/postgresql12-server/PLIST                           1.6
- databases/postgresql12/Makefile                               1.18
- databases/postgresql12/Makefile.common                        1.17
- databases/postgresql12/distinfo                               1.14
- databases/postgresql13-client/PLIST                           1.5
- databases/postgresql13-docs/PLIST                             1.6
- databases/postgresql13-server/PLIST                           1.4
- databases/postgresql13/Makefile                               1.9
- databases/postgresql13/Makefile.common                        1.10
- databases/postgresql13/distinfo                               1.10
- databases/postgresql96-docs/PLIST                             1.24
- databases/postgresql96-server/PLIST                           1.9
- databases/postgresql96/Makefile                               1.16
- databases/postgresql96/Makefile.common                        1.36
- databases/postgresql96/distinfo                               1.29

---
   Module Name:    pkgsrc
   Committed By:   adam
   Date:           Tue Nov 16 10:14:39 UTC 2021

   Modified Files:
           pkgsrc/databases/postgresql10: Makefile.common distinfo
           pkgsrc/databases/postgresql10-docs: PLIST
           pkgsrc/databases/postgresql10-server: PLIST
           pkgsrc/databases/postgresql11: Makefile.common distinfo
           pkgsrc/databases/postgresql11-docs: PLIST
           pkgsrc/databases/postgresql11-server: PLIST
           pkgsrc/databases/postgresql12: Makefile.common distinfo
           pkgsrc/databases/postgresql12-docs: PLIST
           pkgsrc/databases/postgresql12-server: PLIST
           pkgsrc/databases/postgresql13: Makefile.common distinfo
           pkgsrc/databases/postgresql13-client: PLIST
           pkgsrc/databases/postgresql13-docs: PLIST
           pkgsrc/databases/postgresql13-server: PLIST
           pkgsrc/databases/postgresql96: Makefile.common distinfo
           pkgsrc/databases/postgresql96-docs: PLIST
           pkgsrc/databases/postgresql96-server: PLIST

   Log Message:
   postgresql: updated to 13.5, 12.9, 11.14, 10.19, 9.6.24

   PostgreSQL 13.5, 12.9, 11.14, 10.19, and 9.6.24

   Security Issues

   CVE-2021-23214: Server processes unencrypted bytes from man-in-the-middle

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

   When the server is configured to use trust authentication with a
   clientcert requirement or to use cert authentication, a
   man-in-the-middle attacker can inject arbitrary SQL queries when a
   connection is first established, despite the use of SSL certificate
   verification and encryption.

   The PostgreSQL project thanks Jacob Champion for reporting this problem.

   CVE-2021-23222: libpq processes unencrypted bytes from man-in-the-middle

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

   A man-in-the-middle attacker can inject false responses to the
   client's first few queries, despite the use of SSL certificate
   verification and encryption.

   If more preconditions hold, the attacker can exfiltrate the client's
   password or other confidential data that might be transmitted early in
   a session. The attacker must have a way to trick the client's intended
   server into making the confidential data accessible to the attacker. A
   known implementation having that property is a PostgreSQL
   configuration vulnerable to CVE-2021-23214.

   As with any exploitation of CVE-2021-23214, the server must be using
   trust authentication with a clientcert requirement or using cert
   authentication. To disclose a password, the client must be in
   possession of a password, which is atypical when using an
   authentication configuration vulnerable to CVE-2021-23214. The
   attacker must have some other way to access the server to retrieve the
   exfiltrated data (a valid, unprivileged login account would be
   sufficient).

   The PostgreSQL project thanks Jacob Champion for reporting this problem.

   Bug Fixes and Improvements

   This update fixes over 40 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.

   Some of these fixes include:

   Fix physical replication for cases where the primary crashes after
   shipping a WAL segment that ends with a partial WAL record. When
   applying this update, update your standby servers before the primary
   so that they will be ready to handle the fix if the primary happens to
   crash.
   Fix parallel VACUUM so that it will process indexes below the
   min_parallel_index_scan_size threshold if the table has at least two
   indexes that are above that size. This problem does not affect
   autovacuum. If you are affected by this issue, you should reindex any
   manually-vacuumed tables.
   Fix causes of CREATE INDEX CONCURRENTLY and REINDEX CONCURRENTLY
   writing corrupt indexes. You should reindex any concurrently-built
   indexes.
   Fix for attaching/detaching a partition that could allow certain
   INSERT/UPDATE queries to misbehave in active sessions.
   Fix for creating a new range type with CREATE TYPE that could cause
   problems for later event triggers or subsequent executions of the
   CREATE TYPE command.
   Fix updates of element fields in arrays of a domain that is a part of
   a composite.
   Disallow the combination of FETCH FIRST WITH TIES and FOR UPDATE SKIP LOCKED.
   Fix corner-case loss of precision in the numeric power() function.
   Fix restoration of a Portal's snapshot inside a subtransaction, which
   could lead to a crash. For example, this could occur in PL/pgSQL when
   a COMMIT is immediately followed by a BEGIN ... EXCEPTION block that
   performs a query.
   Clean up correctly if a transaction fails after exporting its
   snapshot. This could occur if a replication slot was created then
   rolled back, and then another replication slot was created in the same
   session.
   Fix for "overflowed-subtransaction" wraparound tracking on standby
   servers that could lead to performance degradation.
   Ensure that prepared transactions are properly accounted for during
   promotion of a standby server.
   Ensure that the correct lock level is used when renaming a table.
   Avoid crash when dropping a role that owns objects being dropped concurrently.
   Disallow setting huge_pages to on when shared_memory_type is sysv
   Fix query type checking in the PL/pgSQL RETURN QUERY.
   Several fixes for pg_dump, including the ability to dump non-global
   default privileges correctly.
   Use the CLDR project's data to map Windows time zone names to IANA time zones.
   This update also contains tzdata release 2021e for DST law changes in
   Fiji, Jordan, Palestine, and Samoa, plus historical corrections for
   Barbados, Cook Islands, Guyana, Niue, Portugal, and Tonga.

   Also, the Pacific/Enderbury zone has been renamed to Pacific/Kanton.
   Also, the following zones have been merged into nearby, more-populous
   zones whose clocks have agreed with them since 1970: Africa/Accra,
   America/Atikokan, America/Blanc-Sablon, America/Creston,
   America/Curacao, America/Nassau, America/Port_of_Spain,
   Antarctica/DumontDUrville, and Antarctica/Syowa. In all these cases,
   the previous zone name remains as an alias.

---
   Module Name:    pkgsrc
   Committed By:   adam
   Date:           Tue Nov 16 10:17:40 UTC 2021

   Modified Files:
           pkgsrc/databases/postgresql10: Makefile
           pkgsrc/databases/postgresql12: Makefile
           pkgsrc/databases/postgresql13: Makefile
           pkgsrc/databases/postgresql96: Makefile

   Log Message:
   postgresqlNN: reset revision


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.30.2.1 pkgsrc/databases/postgresql10/Makefile.common
cvs rdiff -u -r1.22 -r1.22.2.1 pkgsrc/databases/postgresql10/distinfo
cvs rdiff -u -r1.19 -r1.19.2.1 pkgsrc/databases/postgresql10-docs/PLIST
cvs rdiff -u -r1.9 -r1.9.12.1 pkgsrc/databases/postgresql10-server/PLIST
cvs rdiff -u -r1.23 -r1.23.2.1 pkgsrc/databases/postgresql11/Makefile.common
cvs rdiff -u -r1.17 -r1.17.2.1 pkgsrc/databases/postgresql11/distinfo
cvs rdiff -u -r1.14 -r1.14.2.1 pkgsrc/databases/postgresql11-docs/PLIST
cvs rdiff -u -r1.4 -r1.4.12.1 pkgsrc/databases/postgresql11-server/PLIST
cvs rdiff -u -r1.16 -r1.16.2.1 pkgsrc/databases/postgresql12/Makefile.common
cvs rdiff -u -r1.11 -r1.11.2.1 pkgsrc/databases/postgresql12/distinfo
cvs rdiff -u -r1.9 -r1.9.2.1 pkgsrc/databases/postgresql12-docs/PLIST
cvs rdiff -u -r1.5 -r1.5.10.1 pkgsrc/databases/postgresql12-server/PLIST
cvs rdiff -u -r1.9 -r1.9.2.1 pkgsrc/databases/postgresql13/Makefile.common
cvs rdiff -u -r1.7 -r1.7.2.1 pkgsrc/databases/postgresql13/distinfo
cvs rdiff -u -r1.4 -r1.4.4.1 pkgsrc/databases/postgresql13-client/PLIST
cvs rdiff -u -r1.5 -r1.5.2.1 pkgsrc/databases/postgresql13-docs/PLIST
cvs rdiff -u -r1.3 -r1.3.4.1 pkgsrc/databases/postgresql13-server/PLIST
cvs rdiff -u -r1.35 -r1.35.2.1 pkgsrc/databases/postgresql96/Makefile.common
cvs rdiff -u -r1.26 -r1.26.2.1 pkgsrc/databases/postgresql96/distinfo
cvs rdiff -u -r1.23 -r1.23.2.1 pkgsrc/databases/postgresql96-docs/PLIST
cvs rdiff -u -r1.8 -r1.8.12.1 pkgsrc/databases/postgresql96-server/PLIST

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.common
diff -u pkgsrc/databases/postgresql10/Makefile.common:1.30 pkgsrc/databases/postgresql10/Makefile.common:1.30.2.1
--- pkgsrc/databases/postgresql10/Makefile.common:1.30  Fri Aug 13 11:54:43 2021
+++ pkgsrc/databases/postgresql10/Makefile.common       Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.30 2021/08/13 11:54:43 adam Exp $
+# $NetBSD: Makefile.common,v 1.30.2.1 2021/11/24 14:31:19 tm 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.18
+DISTNAME=      postgresql-10.19
 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.22 pkgsrc/databases/postgresql10/distinfo:1.22.2.1
--- pkgsrc/databases/postgresql10/distinfo:1.22 Fri Aug 13 11:54:43 2021
+++ pkgsrc/databases/postgresql10/distinfo      Wed Nov 24 14:31:19 2021
@@ -1,20 +1,6 @@
-$NetBSD: distinfo,v 1.22 2021/08/13 11:54:43 adam Exp $
+$NetBSD: distinfo,v 1.22.2.1 2021/11/24 14:31:19 tm Exp $
 
-SHA1 (postgresql-10.18.tar.bz2) = a9f6d96343cc5dcf8b28e6fce5a2955041b14003
-RMD160 (postgresql-10.18.tar.bz2) = fe43854c91bf98c44c22eee2f9b014691d86bf5f
-SHA512 (postgresql-10.18.tar.bz2) = 8a564256b0a5f6375a817cc5db14e56f7f7ee831881a2dc78759e7f2cf708d95fb61ad75a01f13fb05517ab165c991794d837bbb93f60d54f4fb33ca0ac45729
-Size (postgresql-10.18.tar.bz2) = 19197042 bytes
-SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
-SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
-SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
-SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
-SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af
-SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e
-SHA1 (patch-src_Makefile.shlib) = 74ab026a457a4789a1aa1d6423d88ce4a2db7a2e
-SHA1 (patch-src_backend_Makefile) = 480ac63f07fec2eaacffdbee5c5aa104081d0ee4
-SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289
-SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = a15012ae34d4ecd1eb2bc29e4d2c40098ea236fd
-SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
-SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
-SHA1 (patch-src_pl_plperl_GNUmakefile) = 6ee3e431f46ce5c2a94df499504b2b8bd458bbef
-SHA1 (patch-src_pl_plperl_plperl.h) = 64d5b891362c114bde5ec48e48bc4855b56ab516
+SHA1 (postgresql-10.19.tar.bz2) = f44edcc4d612f6a1b39c233ee7b1e80feb6d0456
+RMD160 (postgresql-10.19.tar.bz2) = 8e1fd79ea6ddd5388cca8b3a54397ced66458cce
+SHA512 (postgresql-10.19.tar.bz2) = 41b0f5026be7d563e41b54e9ea7199dd466a132d355be0b71a91d41f533d97fbf550eccf2a2ece3d60c5dab5921ebeea3ac4780c18c54b924df52d7423305a22
+Size (postgresql-10.19.tar.bz2) = 19261478 bytes

Index: pkgsrc/databases/postgresql10-docs/PLIST
diff -u pkgsrc/databases/postgresql10-docs/PLIST:1.19 pkgsrc/databases/postgresql10-docs/PLIST:1.19.2.1
--- pkgsrc/databases/postgresql10-docs/PLIST:1.19       Fri Aug 13 11:54:44 2021
+++ pkgsrc/databases/postgresql10-docs/PLIST    Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2021/08/13 11:54:44 adam Exp $
+@comment $NetBSD: PLIST,v 1.19.2.1 2021/11/24 14:31:19 tm Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -927,6 +927,7 @@ share/doc/postgresql/html/release-10-15.
 share/doc/postgresql/html/release-10-16.html
 share/doc/postgresql/html/release-10-17.html
 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-3.html
 share/doc/postgresql/html/release-10-4.html

Index: pkgsrc/databases/postgresql10-server/PLIST
diff -u pkgsrc/databases/postgresql10-server/PLIST:1.9 pkgsrc/databases/postgresql10-server/PLIST:1.9.12.1
--- pkgsrc/databases/postgresql10-server/PLIST:1.9      Fri May 15 20:45:36 2020
+++ pkgsrc/databases/postgresql10-server/PLIST  Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2020/05/15 20:45:36 adam Exp $
+@comment $NetBSD: PLIST,v 1.9.12.1 2021/11/24 14:31:19 tm Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -617,6 +617,7 @@ share/postgresql/timezone/Pacific/Guadal
 share/postgresql/timezone/Pacific/Guam
 share/postgresql/timezone/Pacific/Honolulu
 share/postgresql/timezone/Pacific/Johnston
+share/postgresql/timezone/Pacific/Kanton
 share/postgresql/timezone/Pacific/Kiritimati
 share/postgresql/timezone/Pacific/Kosrae
 share/postgresql/timezone/Pacific/Kwajalein

Index: pkgsrc/databases/postgresql11/Makefile.common
diff -u pkgsrc/databases/postgresql11/Makefile.common:1.23 pkgsrc/databases/postgresql11/Makefile.common:1.23.2.1
--- pkgsrc/databases/postgresql11/Makefile.common:1.23  Fri Aug 13 11:54:44 2021
+++ pkgsrc/databases/postgresql11/Makefile.common       Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.23 2021/08/13 11:54:44 adam Exp $
+# $NetBSD: Makefile.common,v 1.23.2.1 2021/11/24 14:31:19 tm 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.13
+DISTNAME=      postgresql-11.14
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql11/distinfo
diff -u pkgsrc/databases/postgresql11/distinfo:1.17 pkgsrc/databases/postgresql11/distinfo:1.17.2.1
--- pkgsrc/databases/postgresql11/distinfo:1.17 Fri Aug 13 11:54:44 2021
+++ pkgsrc/databases/postgresql11/distinfo      Wed Nov 24 14:31:19 2021
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.17 2021/08/13 11:54:44 adam Exp $
+$NetBSD: distinfo,v 1.17.2.1 2021/11/24 14:31:19 tm Exp $
 
-SHA1 (postgresql-11.13.tar.bz2) = 7c0b06bdbe2bd3d966fb7d875843f022694e9b1a
-RMD160 (postgresql-11.13.tar.bz2) = d682247742b45048c4f30f977a2402ee79396cf7
-SHA512 (postgresql-11.13.tar.bz2) = 1b2061d505a7460e0aaae53818e77fc99fa7b73eea119033a98a3d7dd3d70d00403998654990b03bbf6eb2df383e2f44791137c8922ea4015715f8bf49c5837f
-Size (postgresql-11.13.tar.bz2) = 20123787 bytes
+SHA1 (postgresql-11.14.tar.bz2) = 18c8ef5ca8314ce18f1bd10b6cd6f3e4c7099e64
+RMD160 (postgresql-11.14.tar.bz2) = ccd24b793a502c76bf48242ac04b63e61c0d3f0a
+SHA512 (postgresql-11.14.tar.bz2) = ab71461ee6fb4cdc5b4240f7ecd8af2497ce6780283fde2abf5951ffdb616bd0c8ed22b26fdfca402a346e663ff77c4d17f3284c9d700e6fd6795b2aec97c9be
+Size (postgresql-11.14.tar.bz2) = 20172910 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd

Index: pkgsrc/databases/postgresql11-docs/PLIST
diff -u pkgsrc/databases/postgresql11-docs/PLIST:1.14 pkgsrc/databases/postgresql11-docs/PLIST:1.14.2.1
--- pkgsrc/databases/postgresql11-docs/PLIST:1.14       Fri Aug 13 11:54:45 2021
+++ pkgsrc/databases/postgresql11-docs/PLIST    Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2021/08/13 11:54:45 adam Exp $
+@comment $NetBSD: PLIST,v 1.14.2.1 2021/11/24 14:31:19 tm Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -958,6 +958,7 @@ share/doc/postgresql/html/release-11-10.
 share/doc/postgresql/html/release-11-11.html
 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-2.html
 share/doc/postgresql/html/release-11-3.html
 share/doc/postgresql/html/release-11-4.html

Index: pkgsrc/databases/postgresql11-server/PLIST
diff -u pkgsrc/databases/postgresql11-server/PLIST:1.4 pkgsrc/databases/postgresql11-server/PLIST:1.4.12.1
--- pkgsrc/databases/postgresql11-server/PLIST:1.4      Fri May 15 20:31:41 2020
+++ pkgsrc/databases/postgresql11-server/PLIST  Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2020/05/15 20:31:41 adam Exp $
+@comment $NetBSD: PLIST,v 1.4.12.1 2021/11/24 14:31:19 tm Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -1271,6 +1271,7 @@ share/postgresql/timezone/Pacific/Guadal
 share/postgresql/timezone/Pacific/Guam
 share/postgresql/timezone/Pacific/Honolulu
 share/postgresql/timezone/Pacific/Johnston
+share/postgresql/timezone/Pacific/Kanton
 share/postgresql/timezone/Pacific/Kiritimati
 share/postgresql/timezone/Pacific/Kosrae
 share/postgresql/timezone/Pacific/Kwajalein

Index: pkgsrc/databases/postgresql12/Makefile.common
diff -u pkgsrc/databases/postgresql12/Makefile.common:1.16 pkgsrc/databases/postgresql12/Makefile.common:1.16.2.1
--- pkgsrc/databases/postgresql12/Makefile.common:1.16  Fri Aug 13 11:54:45 2021
+++ pkgsrc/databases/postgresql12/Makefile.common       Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.16 2021/08/13 11:54:45 adam Exp $
+# $NetBSD: Makefile.common,v 1.16.2.1 2021/11/24 14:31:20 tm 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.8
+DISTNAME=      postgresql-12.9
 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.11 pkgsrc/databases/postgresql12/distinfo:1.11.2.1
--- pkgsrc/databases/postgresql12/distinfo:1.11 Fri Aug 13 11:54:45 2021
+++ pkgsrc/databases/postgresql12/distinfo      Wed Nov 24 14:31:20 2021
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.11 2021/08/13 11:54:45 adam Exp $
+$NetBSD: distinfo,v 1.11.2.1 2021/11/24 14:31:20 tm Exp $
 
-SHA1 (postgresql-12.8.tar.bz2) = f3f4ae778036795bdc8f493cc7d0d15d409061e9
-RMD160 (postgresql-12.8.tar.bz2) = 10e70f2d366d6d52e6b33a8685f2e3721705ffcc
-SHA512 (postgresql-12.8.tar.bz2) = 970fe1041e427ac1c8a786c93e2079b0a9c8b3fcaf9d38877894eb02e8a9afc7cd73d7ac28078c455845a922a1b7d9c1e22cb7990d8d523dd6496af9442fba01
-Size (postgresql-12.8.tar.bz2) = 20849478 bytes
+SHA1 (postgresql-12.9.tar.bz2) = a79d8428850da50a65451e5e44771844c7f166d5
+RMD160 (postgresql-12.9.tar.bz2) = 7bdb6e85259fbb520a93f66fab82fcedee9fee2c
+SHA512 (postgresql-12.9.tar.bz2) = 11697d8283f5df5a9c74c2406e94d1b6da6df8358ad48f3b773825aab98e8395f9fd4e3fc8b1e6ebad3743c3dadbda8b795d4fe84a447d7913223e136cf2b88f
+Size (postgresql-12.9.tar.bz2) = 20904260 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd

Index: pkgsrc/databases/postgresql12-docs/PLIST
diff -u pkgsrc/databases/postgresql12-docs/PLIST:1.9 pkgsrc/databases/postgresql12-docs/PLIST:1.9.2.1
--- pkgsrc/databases/postgresql12-docs/PLIST:1.9        Fri Aug 13 11:54:46 2021
+++ pkgsrc/databases/postgresql12-docs/PLIST    Wed Nov 24 14:31:19 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2021/08/13 11:54:46 adam Exp $
+@comment $NetBSD: PLIST,v 1.9.2.1 2021/11/24 14:31:19 tm Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -969,6 +969,7 @@ share/doc/postgresql/html/release-12-5.h
 share/doc/postgresql/html/release-12-6.html
 share/doc/postgresql/html/release-12-7.html
 share/doc/postgresql/html/release-12-8.html
+share/doc/postgresql/html/release-12-9.html
 share/doc/postgresql/html/release-12.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html

Index: pkgsrc/databases/postgresql12-server/PLIST
diff -u pkgsrc/databases/postgresql12-server/PLIST:1.5 pkgsrc/databases/postgresql12-server/PLIST:1.5.10.1
--- pkgsrc/databases/postgresql12-server/PLIST:1.5      Fri Aug 14 06:56:24 2020
+++ pkgsrc/databases/postgresql12-server/PLIST  Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2020/08/14 06:56:24 adam Exp $
+@comment $NetBSD: PLIST,v 1.5.10.1 2021/11/24 14:31:20 tm Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -1287,6 +1287,7 @@ share/postgresql/timezone/Pacific/Guadal
 share/postgresql/timezone/Pacific/Guam
 share/postgresql/timezone/Pacific/Honolulu
 share/postgresql/timezone/Pacific/Johnston
+share/postgresql/timezone/Pacific/Kanton
 share/postgresql/timezone/Pacific/Kiritimati
 share/postgresql/timezone/Pacific/Kosrae
 share/postgresql/timezone/Pacific/Kwajalein

Index: pkgsrc/databases/postgresql13/Makefile.common
diff -u pkgsrc/databases/postgresql13/Makefile.common:1.9 pkgsrc/databases/postgresql13/Makefile.common:1.9.2.1
--- pkgsrc/databases/postgresql13/Makefile.common:1.9   Fri Aug 13 11:54:46 2021
+++ pkgsrc/databases/postgresql13/Makefile.common       Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.9 2021/08/13 11:54:46 adam Exp $
+# $NetBSD: Makefile.common,v 1.9.2.1 2021/11/24 14:31:20 tm 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.4
+DISTNAME=      postgresql-13.5
 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.7 pkgsrc/databases/postgresql13/distinfo:1.7.2.1
--- pkgsrc/databases/postgresql13/distinfo:1.7  Fri Aug 13 11:54:46 2021
+++ pkgsrc/databases/postgresql13/distinfo      Wed Nov 24 14:31:20 2021
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.7 2021/08/13 11:54:46 adam Exp $
+$NetBSD: distinfo,v 1.7.2.1 2021/11/24 14:31:20 tm Exp $
 
-SHA1 (postgresql-13.4.tar.bz2) = 92146ec62ad80e8f5d2959b5cc1766311dc00d64
-RMD160 (postgresql-13.4.tar.bz2) = 8766ce228491c11629096da54dd5fd4d1c46f9ef
-SHA512 (postgresql-13.4.tar.bz2) = f1faf676ffdcee3e7f2c3b78f4badf44770d6be58090036d119d8fb0688e2b9f9159dd44fe850c179b8e23f256942c05edb8fcc385f0e852d16b37eace785b5a
-Size (postgresql-13.4.tar.bz2) = 21157443 bytes
+SHA1 (postgresql-13.5.tar.bz2) = 9321e2b01d1ffb15adae06945cb2c5f9dd671bc9
+RMD160 (postgresql-13.5.tar.bz2) = f57c343c5144d8504657e6dabddf1ec06e9359a7
+SHA512 (postgresql-13.5.tar.bz2) = c76effbca8ee63be48fa3aeb39c7038221848fe83ca2afc4e0904ba8c6a50b89aa2ad37080d4e3be75e9bdc2d6ca6dfefcda334ef55a5e1a8954bb955ce905e5
+Size (postgresql-13.5.tar.bz2) = 21186674 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9

Index: pkgsrc/databases/postgresql13-client/PLIST
diff -u pkgsrc/databases/postgresql13-client/PLIST:1.4 pkgsrc/databases/postgresql13-client/PLIST:1.4.4.1
--- pkgsrc/databases/postgresql13-client/PLIST:1.4      Tue May 18 11:56:19 2021
+++ pkgsrc/databases/postgresql13-client/PLIST  Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2021/05/18 11:56:19 adam Exp $
+@comment $NetBSD: PLIST,v 1.4.4.1 2021/11/24 14:31:20 tm Exp $
 bin/clusterdb
 bin/createdb
 bin/createuser
@@ -128,6 +128,7 @@ include/postgresql/server/access/twophas
 include/postgresql/server/access/twophase_rmgr.h
 include/postgresql/server/access/valid.h
 include/postgresql/server/access/visibilitymap.h
+include/postgresql/server/access/visibilitymapdefs.h
 include/postgresql/server/access/xact.h
 include/postgresql/server/access/xlog.h
 include/postgresql/server/access/xlog_internal.h

Index: pkgsrc/databases/postgresql13-docs/PLIST
diff -u pkgsrc/databases/postgresql13-docs/PLIST:1.5 pkgsrc/databases/postgresql13-docs/PLIST:1.5.2.1
--- pkgsrc/databases/postgresql13-docs/PLIST:1.5        Fri Aug 13 11:54:47 2021
+++ pkgsrc/databases/postgresql13-docs/PLIST    Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2021/08/13 11:54:47 adam Exp $
+@comment $NetBSD: PLIST,v 1.5.2.1 2021/11/24 14:31:20 tm Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -973,6 +973,7 @@ share/doc/postgresql/html/release-13-1.h
 share/doc/postgresql/html/release-13-2.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
 share/doc/postgresql/html/release-13.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html

Index: pkgsrc/databases/postgresql13-server/PLIST
diff -u pkgsrc/databases/postgresql13-server/PLIST:1.3 pkgsrc/databases/postgresql13-server/PLIST:1.3.4.1
--- pkgsrc/databases/postgresql13-server/PLIST:1.3      Thu Apr  1 10:22:23 2021
+++ pkgsrc/databases/postgresql13-server/PLIST  Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2021/04/01 10:22:23 adam Exp $
+@comment $NetBSD: PLIST,v 1.3.4.1 2021/11/24 14:31:20 tm Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -1288,6 +1288,7 @@ share/postgresql/timezone/Pacific/Guadal
 share/postgresql/timezone/Pacific/Guam
 share/postgresql/timezone/Pacific/Honolulu
 share/postgresql/timezone/Pacific/Johnston
+share/postgresql/timezone/Pacific/Kanton
 share/postgresql/timezone/Pacific/Kiritimati
 share/postgresql/timezone/Pacific/Kosrae
 share/postgresql/timezone/Pacific/Kwajalein

Index: pkgsrc/databases/postgresql96/Makefile.common
diff -u pkgsrc/databases/postgresql96/Makefile.common:1.35 pkgsrc/databases/postgresql96/Makefile.common:1.35.2.1
--- pkgsrc/databases/postgresql96/Makefile.common:1.35  Fri Aug 13 11:54:47 2021
+++ pkgsrc/databases/postgresql96/Makefile.common       Wed Nov 24 14:31:21 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.35 2021/08/13 11:54:47 adam Exp $
+# $NetBSD: Makefile.common,v 1.35.2.1 2021/11/24 14:31:21 tm 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/postgresql96-pltcl/Makefile
 # used by databases/postgresql96-server/Makefile
 
-DISTNAME=      postgresql-9.6.23
+DISTNAME=      postgresql-9.6.24
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2

Index: pkgsrc/databases/postgresql96/distinfo
diff -u pkgsrc/databases/postgresql96/distinfo:1.26 pkgsrc/databases/postgresql96/distinfo:1.26.2.1
--- pkgsrc/databases/postgresql96/distinfo:1.26 Fri Aug 13 11:54:47 2021
+++ pkgsrc/databases/postgresql96/distinfo      Wed Nov 24 14:31:21 2021
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.26 2021/08/13 11:54:47 adam Exp $
+$NetBSD: distinfo,v 1.26.2.1 2021/11/24 14:31:21 tm Exp $
 
-SHA1 (postgresql-9.6.23.tar.bz2) = d7e09dc6cb551ac7893af44e701861d72821c373
-RMD160 (postgresql-9.6.23.tar.bz2) = 59a9ca18b3085a23654d491d91f12c6abd0b2d31
-SHA512 (postgresql-9.6.23.tar.bz2) = 205b47cf1c22519092f840a9b3bf6bdf95f455e5ba02a7e1bc1495f85bb25f8ccfe9f60c83dc2801f1366b88fc35e64c23eb9bdc89a4bb5d233243af4606d59c
-Size (postgresql-9.6.23.tar.bz2) = 19013235 bytes
+SHA1 (postgresql-9.6.24.tar.bz2) = 4a329b3bc5e88dccd37cf75955b6f7d5786890af
+RMD160 (postgresql-9.6.24.tar.bz2) = 8751d98bc0cd732265063fd27ee325619aa96ecc
+SHA512 (postgresql-9.6.24.tar.bz2) = c17ef8e7149bd136f6058e20b28f9a7307625614e37ff837feb7a6fa37b6932dfab6379285120c9bb0198961eb446c9979d5ee1f3e8583b09f981f52bee33505
+Size (postgresql-9.6.24.tar.bz2) = 19047518 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
 SHA1 (patch-configure) = db34614cef013a91dc229be319e5f09c657c3f24

Index: pkgsrc/databases/postgresql96-docs/PLIST
diff -u pkgsrc/databases/postgresql96-docs/PLIST:1.23 pkgsrc/databases/postgresql96-docs/PLIST:1.23.2.1
--- pkgsrc/databases/postgresql96-docs/PLIST:1.23       Fri Aug 13 11:54:48 2021
+++ pkgsrc/databases/postgresql96-docs/PLIST    Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.23 2021/08/13 11:54:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.23.2.1 2021/11/24 14:31:20 tm Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createlang.1
@@ -899,6 +899,7 @@ share/doc/postgresql/html/release-9-6-20
 share/doc/postgresql/html/release-9-6-21.html
 share/doc/postgresql/html/release-9-6-22.html
 share/doc/postgresql/html/release-9-6-23.html
+share/doc/postgresql/html/release-9-6-24.html
 share/doc/postgresql/html/release-9-6-3.html
 share/doc/postgresql/html/release-9-6-4.html
 share/doc/postgresql/html/release-9-6-5.html

Index: pkgsrc/databases/postgresql96-server/PLIST
diff -u pkgsrc/databases/postgresql96-server/PLIST:1.8 pkgsrc/databases/postgresql96-server/PLIST:1.8.12.1
--- pkgsrc/databases/postgresql96-server/PLIST:1.8      Tue May 19 07:05:28 2020
+++ pkgsrc/databases/postgresql96-server/PLIST  Wed Nov 24 14:31:20 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2020/05/19 07:05:28 adam Exp $
+@comment $NetBSD: PLIST,v 1.8.12.1 2021/11/24 14:31:20 tm Exp $
 bin/postgres
 bin/postmaster
 include/postgresql/server/plpgsql.h
@@ -618,6 +618,7 @@ share/postgresql/timezone/Pacific/Guadal
 share/postgresql/timezone/Pacific/Guam
 share/postgresql/timezone/Pacific/Honolulu
 share/postgresql/timezone/Pacific/Johnston
+share/postgresql/timezone/Pacific/Kanton
 share/postgresql/timezone/Pacific/Kiritimati
 share/postgresql/timezone/Pacific/Kosrae
 share/postgresql/timezone/Pacific/Kwajalein



Home | Main Index | Thread Index | Old Index