Received: by mail.netbsd.org (Postfix, from userid 605) id 7D45684D64; Tue, 18 May 2021 11:56:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8995084D5E for ; Tue, 18 May 2021 11:56:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id C-Z8izwOMrzc for ; Tue, 18 May 2021 11:56:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C346384CD9 for ; Tue, 18 May 2021 11:56:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BC1D4FA95; Tue, 18 May 2021 11:56:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1621338983183770" MIME-Version: 1.0 Date: Tue, 18 May 2021 11:56:23 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20210518115623.BC1D4FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1621338983183770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 18 11:56:23 UTC 2021 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 PLIST 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 PLIST pkgsrc/databases/postgresql13-server: Makefile pkgsrc/databases/postgresql95: Makefile pkgsrc/databases/postgresql95-client: Makefile pkgsrc/databases/postgresql95-contrib: Makefile pkgsrc/databases/postgresql95-docs: Makefile pkgsrc/databases/postgresql95-plperl: Makefile pkgsrc/databases/postgresql95-plpython: Makefile pkgsrc/databases/postgresql95-pltcl: Makefile pkgsrc/databases/postgresql95-server: Makefile pkgsrc/databases/postgresql96: Makefile Makefile.common distinfo pkgsrc/databases/postgresql96-client: Makefile pkgsrc/databases/postgresql96-contrib: Makefile pkgsrc/databases/postgresql96-docs: Makefile PLIST pkgsrc/databases/postgresql96-plperl: Makefile pkgsrc/databases/postgresql96-plpython: Makefile pkgsrc/databases/postgresql96-pltcl: Makefile pkgsrc/databases/postgresql96-server: Makefile Log Message: postgresql: updated to 13.3, 12.7, 11.12, 10.17, 9.6.22 PostgreSQL 13.3, 12.7, 11.12, 10.17, and 9.6.22 Released! Posted on 2021-05-13 by PostgreSQL Global Development Group PostgreSQL Project Security The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 13.3, 12.7, 11.12, 10.17, and 9.6.22. This release closes three security vulnerabilities and fixes over 45 bugs reported over the last three months. For the full list of changes, please review the release notes. Security Issues CVE-2021-32027: Buffer overrun from integer overflow in array subscripting calculations Versions Affected: 9.6 - 13. The security team typically does not test unsupported versions, but this problem is quite old. While modifying certain SQL array values, missing bounds checks let authenticated database users write arbitrary bytes to a wide area of server memory. The PostgreSQL project thanks Tom Lane for reporting this problem. CVE-2021-32028: Memory disclosure in INSERT ... ON CONFLICT ... DO UPDATE Versions Affected: 9.6 - 13. The security team typically does not test unsupported versions. The feature first appeared in 9.5. Using an INSERT ... ON CONFLICT ... DO UPDATE command on a purpose-crafted table, an attacker can read arbitrary bytes of server memory. In the default configuration, any authenticated database user can create prerequisite objects and complete this attack at will. A user lacking the CREATE and TEMPORARY privileges on all databases and the CREATE privilege on all schemas cannot use this attack at will. The PostgreSQL project thanks Andres Freund for reporting this problem. CVE-2021-32029: Memory disclosure in partitioned-table UPDATE ... RETURNING Versions Affected: 11 - 13 Using an UPDATE ... RETURNING on a purpose-crafted partitioned table, an attacker can read arbitrary bytes of server memory. In the default configuration, any authenticated database user can create prerequisite objects and complete this attack at will. A user lacking the CREATE and TEMPORARY privileges on all databases and the CREATE privilege on all schemas typically cannot use this attack at will. The PostgreSQL project thanks Tom Lane for reporting this problem. Bug Fixes and Improvements This update fixes over 45 bugs that were reported in the last several months. Some of these issues only affect version 13, but could also apply to other supported versions. Some of these fixes include: Fix potential incorrect computation of UPDATE ... RETURNING outputs for joined, cross-partition updates. Fix ALTER TABLE ... ALTER CONSTRAINT when used on foreign-key constraints on partitioned tables. The command would fail to adjust the DEFERRABLE and/or INITIALLY DEFERRED properties of the constraints and triggers of leaf partitions, leading to unexpected behavior. After updating to this version, you can execute the ALTER TABLE ... ALTER CONSTRAINT command to fix any misbehaving partitioned tables. Ensure that when a child table is attached with ALTER TABLE ... INHERIT that generated columns in the parent are generated in the same way in the child. Forbid marking an identity column as NULL. Allow ALTER ROLE ... SET/ALTER DATABASE ... SET to set the role, session_authorization, and temp_buffers parameters. Ensure that REINDEX CONCURRENTLY preserves any statistics target set for the index. Fix an issue where, in some cases, saving records within AFTER triggers could cause crashes. Fix how to_char() handles Roman-numeral month format codes with negative intervals. Fix use of uninitialized value while parsing an \{m,n\} quantifier in a BRE-mode regular expression. Fix "could not find pathkey item to sort" planner errors that occur in some situations when the sort key involves an aggregate or window function. Fix issue with BRIN index bitmap scans that could lead to "could not open file" errors. Fix potentially wrong answers from GIN tsvector index searches when there are many matching records. Fixes for COMMIT AND CHAIN functionality on both the server and psql. Avoid incorrect timeline change while recovering uncommitted two-phase transactions from WAL, which could lead to consistency issues and the inability to restart the server. Ensure thatwal_sync_method is set to fdatasync by default on newer FreeBSD releases. Disable the vacuum_cleanup_index_scale_factor parameter and storage option. Fix several memory leaks in the server, including one with SSL/TLS parameter initialization. Restore the previous behavior of \connect service=XYZ to psql, i.e. disallow environmental variables (e.g. PGPORT) from overriding entries in the service file. Fix how pg_dump handles generated columns in partitioned tables. Add additional checks to pg_upgrade for user tables containing non-upgradable data types. On Windows, initdb now prints instructions about how to start the server with pg_ctl using backslash separators. Fix pg_waldump to count XACT records correctly when generating per-record statistics. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/databases/postgresql10/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/databases/postgresql10/Makefile.common cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql10/distinfo cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql10-client/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql10-contrib/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/postgresql10-docs/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql10-docs/PLIST cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql10-plperl/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql10-plpython/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql10-pltcl/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql10-server/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql11/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql11/Makefile.common cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql11/distinfo cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql11-client/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql11-contrib/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/postgresql11-docs/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql11-docs/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql11-plperl/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql11-plpython/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql11-pltcl/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql11-server/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql12/Makefile \ pkgsrc/databases/postgresql12/Makefile.common cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/postgresql12/distinfo cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql12-client/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql12-contrib/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/postgresql12-docs/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql12-docs/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql12-plperl/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql12-plpython/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql12-pltcl/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql12-server/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/postgresql13/Makefile \ pkgsrc/databases/postgresql13/distinfo cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql13/Makefile.common cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql13-client/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql13-client/PLIST cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql13-contrib/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/postgresql13-docs/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/postgresql13-docs/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql13-plperl/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/postgresql13-plpython/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql13-pltcl/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/databases/postgresql13-pltcl/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/postgresql13-server/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/databases/postgresql95/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/postgresql95-client/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql95-contrib/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/postgresql95-docs/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql95-plperl/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql95-plpython/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/postgresql95-pltcl/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql95-server/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/postgresql96/Makefile cvs rdiff -u -r1.32 -r1.33 pkgsrc/databases/postgresql96/Makefile.common cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/postgresql96/distinfo cvs rdiff -u -r1.19 -r1.20 pkgsrc/databases/postgresql96-client/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/databases/postgresql96-contrib/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/databases/postgresql96-docs/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/databases/postgresql96-docs/PLIST cvs rdiff -u -r1.13 -r1.14 pkgsrc/databases/postgresql96-plperl/Makefile cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/postgresql96-plpython/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/databases/postgresql96-pltcl/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/databases/postgresql96-server/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1621338983183770 Content-Disposition: inline Content-Length: 56691 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/postgresql10/Makefile diff -u pkgsrc/databases/postgresql10/Makefile:1.22 pkgsrc/databases/postgresql10/Makefile:1.23 --- pkgsrc/databases/postgresql10/Makefile:1.22 Wed Apr 21 11:41:14 2021 +++ pkgsrc/databases/postgresql10/Makefile Tue May 18 11:56:16 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2021/04/21 11:41:14 adam Exp $ +# $NetBSD: Makefile,v 1.23 2021/05/18 11:56:16 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.27 pkgsrc/databases/postgresql10/Makefile.common:1.28 --- pkgsrc/databases/postgresql10/Makefile.common:1.27 Fri May 7 06:58:55 2021 +++ pkgsrc/databases/postgresql10/Makefile.common Tue May 18 11:56:16 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.27 2021/05/07 06:58:55 nia Exp $ +# $NetBSD: Makefile.common,v 1.28 2021/05/18 11:56:16 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.16 +DISTNAME= postgresql-10.17 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.19 pkgsrc/databases/postgresql10/distinfo:1.20 --- pkgsrc/databases/postgresql10/distinfo:1.19 Thu Mar 18 15:04:53 2021 +++ pkgsrc/databases/postgresql10/distinfo Tue May 18 11:56:16 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.19 2021/03/18 15:04:53 adam Exp $ +$NetBSD: distinfo,v 1.20 2021/05/18 11:56:16 adam Exp $ -SHA1 (postgresql-10.16.tar.bz2) = 594d7f1c604a9666499510d69b6dece97632a61d -RMD160 (postgresql-10.16.tar.bz2) = d112a187f96bb75e39131e48ca7973286e2da89d -SHA512 (postgresql-10.16.tar.bz2) = 690649b4e2f4e0650e5b927048e06894e60c5cf1663bb63ab89143f49e5f753e590d3f011b44df3c402379953a9c23f4832f0cf97c984f03c37d14cb85c860aa -Size (postgresql-10.16.tar.bz2) = 19140221 bytes +SHA1 (postgresql-10.17.tar.bz2) = 479ec3bf2882a3188dd16ec92169c67e78995400 +RMD160 (postgresql-10.17.tar.bz2) = eb2c2dd55f6515b5a2d27f36f9c87625a7d6c2f5 +SHA512 (postgresql-10.17.tar.bz2) = 4989abe56cf631b367252c62f15c9f4a22a864a75d607fa29c2116c95e29f95bc3855df6b2fc88dbedcfc7b238d6732d13629fc967f09bbd3ea4d5c328cb925f +Size (postgresql-10.17.tar.bz2) = 19153278 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.17 pkgsrc/databases/postgresql10-client/Makefile:1.18 --- pkgsrc/databases/postgresql10-client/Makefile:1.17 Wed Apr 21 11:41:14 2021 +++ pkgsrc/databases/postgresql10-client/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2021/04/21 11:41:14 adam Exp $ +# $NetBSD: Makefile,v 1.18 2021/05/18 11:56:17 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.17 pkgsrc/databases/postgresql10-contrib/Makefile:1.18 --- pkgsrc/databases/postgresql10-contrib/Makefile:1.17 Wed Apr 21 11:41:14 2021 +++ pkgsrc/databases/postgresql10-contrib/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2021/04/21 11:41:14 adam Exp $ +# $NetBSD: Makefile,v 1.18 2021/05/18 11:56:17 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.10 pkgsrc/databases/postgresql10-docs/Makefile:1.11 --- pkgsrc/databases/postgresql10-docs/Makefile:1.10 Wed Apr 21 11:41:14 2021 +++ pkgsrc/databases/postgresql10-docs/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2021/04/21 11:41:14 adam Exp $ +# $NetBSD: Makefile,v 1.11 2021/05/18 11:56:17 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.17 pkgsrc/databases/postgresql10-docs/PLIST:1.18 --- pkgsrc/databases/postgresql10-docs/PLIST:1.17 Mon Feb 15 18:58:37 2021 +++ pkgsrc/databases/postgresql10-docs/PLIST Tue May 18 11:56:17 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.17 2021/02/15 18:58:37 adam Exp $ +@comment $NetBSD: PLIST,v 1.18 2021/05/18 11:56:17 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createuser.1 @@ -293,8 +293,10 @@ share/doc/postgresql/html/app-pgconfig.h share/doc/postgresql/html/app-pgcontroldata.html share/doc/postgresql/html/app-pgdump.html share/doc/postgresql/html/app-pgreceivewal.html +share/doc/postgresql/html/app-pgreceivexlog.html share/doc/postgresql/html/app-pgrecvlogical.html share/doc/postgresql/html/app-pgresetwal.html +share/doc/postgresql/html/app-pgresetxlog.html share/doc/postgresql/html/app-pgrestore.html share/doc/postgresql/html/app-pgrewind.html share/doc/postgresql/html/app-postgres.html @@ -302,6 +304,7 @@ share/doc/postgresql/html/app-postmaster share/doc/postgresql/html/app-psql.html share/doc/postgresql/html/app-reindexdb.html share/doc/postgresql/html/app-vacuumdb.html +share/doc/postgresql/html/appendix-obsolete.html share/doc/postgresql/html/appendixes.html share/doc/postgresql/html/applevel-consistency.html share/doc/postgresql/html/archive-recovery-settings.html @@ -457,6 +460,7 @@ share/doc/postgresql/html/datetime-appen share/doc/postgresql/html/datetime-config-files.html share/doc/postgresql/html/datetime-input-rules.html share/doc/postgresql/html/datetime-invalid-input.html +share/doc/postgresql/html/datetime-julian-dates.html share/doc/postgresql/html/datetime-keywords.html share/doc/postgresql/html/datetime-posix-timezone-specs.html share/doc/postgresql/html/datetime-units-history.html @@ -820,6 +824,7 @@ share/doc/postgresql/html/pgtrgm.html share/doc/postgresql/html/pgupgrade.html share/doc/postgresql/html/pgvisibility.html share/doc/postgresql/html/pgwaldump.html +share/doc/postgresql/html/pgxlogdump.html share/doc/postgresql/html/planner-optimizer.html share/doc/postgresql/html/planner-stats-details.html share/doc/postgresql/html/planner-stats-security.html @@ -917,6 +922,7 @@ share/doc/postgresql/html/release-10-13. share/doc/postgresql/html/release-10-14.html share/doc/postgresql/html/release-10-15.html share/doc/postgresql/html/release-10-16.html +share/doc/postgresql/html/release-10-17.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-plperl/Makefile diff -u pkgsrc/databases/postgresql10-plperl/Makefile:1.13 pkgsrc/databases/postgresql10-plperl/Makefile:1.14 --- pkgsrc/databases/postgresql10-plperl/Makefile:1.13 Wed Apr 21 11:41:14 2021 +++ pkgsrc/databases/postgresql10-plperl/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.13 2021/04/21 11:41:14 adam Exp $ +#$ $NetBSD: Makefile,v 1.14 2021/05/18 11:56:17 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.17 pkgsrc/databases/postgresql10-plpython/Makefile:1.18 --- pkgsrc/databases/postgresql10-plpython/Makefile:1.17 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql10-plpython/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.18 2021/05/18 11:56:17 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.14 pkgsrc/databases/postgresql10-pltcl/Makefile:1.15 --- pkgsrc/databases/postgresql10-pltcl/Makefile:1.14 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql10-pltcl/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.15 2021/05/18 11:56:17 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.18 pkgsrc/databases/postgresql10-server/Makefile:1.19 --- pkgsrc/databases/postgresql10-server/Makefile:1.18 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql10-server/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.19 2021/05/18 11:56:17 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.15 pkgsrc/databases/postgresql11/Makefile:1.16 --- pkgsrc/databases/postgresql11/Makefile:1.15 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/18 11:56:17 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/Makefile.common diff -u pkgsrc/databases/postgresql11/Makefile.common:1.20 pkgsrc/databases/postgresql11/Makefile.common:1.21 --- pkgsrc/databases/postgresql11/Makefile.common:1.20 Fri May 7 06:58:55 2021 +++ pkgsrc/databases/postgresql11/Makefile.common Tue May 18 11:56:17 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.20 2021/05/07 06:58:55 nia Exp $ +# $NetBSD: Makefile.common,v 1.21 2021/05/18 11:56:17 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.11 +DISTNAME= postgresql-11.12 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.14 pkgsrc/databases/postgresql11/distinfo:1.15 --- pkgsrc/databases/postgresql11/distinfo:1.14 Thu Mar 18 15:04:54 2021 +++ pkgsrc/databases/postgresql11/distinfo Tue May 18 11:56:17 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.14 2021/03/18 15:04:54 adam Exp $ +$NetBSD: distinfo,v 1.15 2021/05/18 11:56:17 adam Exp $ -SHA1 (postgresql-11.11.tar.bz2) = ebd71258718f08bf20f79a0e0709bee0955df01b -RMD160 (postgresql-11.11.tar.bz2) = 44d9bcd81fc6a89d8e2bcbcbc7353e37e951cfbc -SHA512 (postgresql-11.11.tar.bz2) = 8d38e6b7826e73191159f1ee69efde28adc061e0041eb136f55681503a189355b869b2ff312860325d454c1f95367d921fb61dd2de31f584261f165f229bcdb9 -Size (postgresql-11.11.tar.bz2) = 20054359 bytes +SHA1 (postgresql-11.12.tar.bz2) = 4058af97fde72064c5fd18a508eda6a5526359df +RMD160 (postgresql-11.12.tar.bz2) = cd4a28a42b4828df710502b2bc8c9a5da0eaf2d3 +SHA512 (postgresql-11.12.tar.bz2) = 668914424e1dbe09a66d5272e5b0a17fa24c90d3d099f8161f1420eaa76675ea1c622e4d149bdfcb31f07af19602a500913cb97c49d717df23e374de09dc0274 +Size (postgresql-11.12.tar.bz2) = 20075485 bytes SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd Index: pkgsrc/databases/postgresql11-client/Makefile diff -u pkgsrc/databases/postgresql11-client/Makefile:1.13 pkgsrc/databases/postgresql11-client/Makefile:1.14 --- pkgsrc/databases/postgresql11-client/Makefile:1.13 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11-client/Makefile Tue May 18 11:56:17 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.14 2021/05/18 11:56:17 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.14 pkgsrc/databases/postgresql11-contrib/Makefile:1.15 --- pkgsrc/databases/postgresql11-contrib/Makefile:1.14 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11-contrib/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.15 2021/05/18 11:56:18 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.8 pkgsrc/databases/postgresql11-docs/Makefile:1.9 --- pkgsrc/databases/postgresql11-docs/Makefile:1.8 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11-docs/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.9 2021/05/18 11:56:18 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.12 pkgsrc/databases/postgresql11-docs/PLIST:1.13 --- pkgsrc/databases/postgresql11-docs/PLIST:1.12 Mon Feb 15 18:58:38 2021 +++ pkgsrc/databases/postgresql11-docs/PLIST Tue May 18 11:56:18 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2021/02/15 18:58:38 adam Exp $ +@comment $NetBSD: PLIST,v 1.13 2021/05/18 11:56:18 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createuser.1 @@ -305,8 +305,10 @@ share/doc/postgresql/html/app-pgconfig.h share/doc/postgresql/html/app-pgcontroldata.html share/doc/postgresql/html/app-pgdump.html share/doc/postgresql/html/app-pgreceivewal.html +share/doc/postgresql/html/app-pgreceivexlog.html share/doc/postgresql/html/app-pgrecvlogical.html share/doc/postgresql/html/app-pgresetwal.html +share/doc/postgresql/html/app-pgresetxlog.html share/doc/postgresql/html/app-pgrestore.html share/doc/postgresql/html/app-pgrewind.html share/doc/postgresql/html/app-postgres.html @@ -314,6 +316,7 @@ share/doc/postgresql/html/app-postmaster share/doc/postgresql/html/app-psql.html share/doc/postgresql/html/app-reindexdb.html share/doc/postgresql/html/app-vacuumdb.html +share/doc/postgresql/html/appendix-obsolete.html share/doc/postgresql/html/appendixes.html share/doc/postgresql/html/applevel-consistency.html share/doc/postgresql/html/archive-recovery-settings.html @@ -482,6 +485,7 @@ share/doc/postgresql/html/datetime-appen share/doc/postgresql/html/datetime-config-files.html share/doc/postgresql/html/datetime-input-rules.html share/doc/postgresql/html/datetime-invalid-input.html +share/doc/postgresql/html/datetime-julian-dates.html share/doc/postgresql/html/datetime-keywords.html share/doc/postgresql/html/datetime-posix-timezone-specs.html share/doc/postgresql/html/datetime-units-history.html @@ -853,6 +857,7 @@ share/doc/postgresql/html/pgupgrade.html share/doc/postgresql/html/pgverifychecksums.html share/doc/postgresql/html/pgvisibility.html share/doc/postgresql/html/pgwaldump.html +share/doc/postgresql/html/pgxlogdump.html share/doc/postgresql/html/planner-optimizer.html share/doc/postgresql/html/planner-stats-details.html share/doc/postgresql/html/planner-stats-security.html @@ -948,6 +953,7 @@ share/doc/postgresql/html/regress.html share/doc/postgresql/html/release-11-1.html share/doc/postgresql/html/release-11-10.html share/doc/postgresql/html/release-11-11.html +share/doc/postgresql/html/release-11-12.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.11 pkgsrc/databases/postgresql11-plperl/Makefile:1.12 --- pkgsrc/databases/postgresql11-plperl/Makefile:1.11 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11-plperl/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.11 2021/04/21 11:41:15 adam Exp $ +#$ $NetBSD: Makefile,v 1.12 2021/05/18 11:56:18 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.15 pkgsrc/databases/postgresql11-plpython/Makefile:1.16 --- pkgsrc/databases/postgresql11-plpython/Makefile:1.15 Wed Apr 21 11:41:15 2021 +++ pkgsrc/databases/postgresql11-plpython/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/04/21 11:41:15 adam Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/18 11:56:18 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.12 pkgsrc/databases/postgresql11-pltcl/Makefile:1.13 --- pkgsrc/databases/postgresql11-pltcl/Makefile:1.12 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql11-pltcl/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.13 2021/05/18 11:56:18 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.15 pkgsrc/databases/postgresql11-server/Makefile:1.16 --- pkgsrc/databases/postgresql11-server/Makefile:1.15 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql11-server/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/18 11:56:18 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.13 pkgsrc/databases/postgresql12/Makefile:1.14 --- pkgsrc/databases/postgresql12/Makefile:1.13 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.14 2021/05/18 11:56:18 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.13 pkgsrc/databases/postgresql12/Makefile.common:1.14 --- pkgsrc/databases/postgresql12/Makefile.common:1.13 Fri May 7 06:58:56 2021 +++ pkgsrc/databases/postgresql12/Makefile.common Tue May 18 11:56:18 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2021/05/07 06:58:56 nia Exp $ +# $NetBSD: Makefile.common,v 1.14 2021/05/18 11:56:18 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.6 +DISTNAME= postgresql-12.7 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.8 pkgsrc/databases/postgresql12/distinfo:1.9 --- pkgsrc/databases/postgresql12/distinfo:1.8 Thu Mar 18 15:04:54 2021 +++ pkgsrc/databases/postgresql12/distinfo Tue May 18 11:56:18 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.8 2021/03/18 15:04:54 adam Exp $ +$NetBSD: distinfo,v 1.9 2021/05/18 11:56:18 adam Exp $ -SHA1 (postgresql-12.6.tar.bz2) = 988d60b27a2dfefd37574cd2da2ce0b45a9ca207 -RMD160 (postgresql-12.6.tar.bz2) = 034ced8da6d4b56ea6e5450dc32156f41a3f2f98 -SHA512 (postgresql-12.6.tar.bz2) = 5742c9d861c53bbdd032972e63b706d24ccb39492474c446cf4edac235d57357f036e48727027819004177003c4328123148e3d767d2b3d7866a52f333f8d68d -Size (postgresql-12.6.tar.bz2) = 20771172 bytes +SHA1 (postgresql-12.7.tar.bz2) = e7071caed1f31a0b6d7579ea66e00342e8ebe146 +RMD160 (postgresql-12.7.tar.bz2) = 7a8e2a19b372076498782ae7f8285826d5f5fdc7 +SHA512 (postgresql-12.7.tar.bz2) = 47ca347df63a441e52e52442074e85d0ebd3a89f7eb037022c4690cbe88b21a6a959092a812b79bb30db47b5975a5d7908318c73b2685683d48b4789d4ae6a44 +Size (postgresql-12.7.tar.bz2) = 20819005 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.15 pkgsrc/databases/postgresql12-client/Makefile:1.16 --- pkgsrc/databases/postgresql12-client/Makefile:1.15 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-client/Makefile Tue May 18 11:56:18 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/18 11:56:18 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.14 pkgsrc/databases/postgresql12-contrib/Makefile:1.15 --- pkgsrc/databases/postgresql12-contrib/Makefile:1.14 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-contrib/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.15 2021/05/18 11:56:19 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.8 pkgsrc/databases/postgresql12-docs/Makefile:1.9 --- pkgsrc/databases/postgresql12-docs/Makefile:1.8 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-docs/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.9 2021/05/18 11:56:19 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.7 pkgsrc/databases/postgresql12-docs/PLIST:1.8 --- pkgsrc/databases/postgresql12-docs/PLIST:1.7 Mon Feb 15 18:58:39 2021 +++ pkgsrc/databases/postgresql12-docs/PLIST Tue May 18 11:56:19 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2021/02/15 18:58:39 adam Exp $ +@comment $NetBSD: PLIST,v 1.8 2021/05/18 11:56:19 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createuser.1 @@ -308,8 +308,10 @@ share/doc/postgresql/html/app-pgconfig.h share/doc/postgresql/html/app-pgcontroldata.html share/doc/postgresql/html/app-pgdump.html share/doc/postgresql/html/app-pgreceivewal.html +share/doc/postgresql/html/app-pgreceivexlog.html share/doc/postgresql/html/app-pgrecvlogical.html share/doc/postgresql/html/app-pgresetwal.html +share/doc/postgresql/html/app-pgresetxlog.html share/doc/postgresql/html/app-pgrestore.html share/doc/postgresql/html/app-pgrewind.html share/doc/postgresql/html/app-postgres.html @@ -317,6 +319,7 @@ share/doc/postgresql/html/app-postmaster share/doc/postgresql/html/app-psql.html share/doc/postgresql/html/app-reindexdb.html share/doc/postgresql/html/app-vacuumdb.html +share/doc/postgresql/html/appendix-obsolete.html share/doc/postgresql/html/appendixes.html share/doc/postgresql/html/applevel-consistency.html share/doc/postgresql/html/arrays.html @@ -485,6 +488,7 @@ share/doc/postgresql/html/datetime-appen share/doc/postgresql/html/datetime-config-files.html share/doc/postgresql/html/datetime-input-rules.html share/doc/postgresql/html/datetime-invalid-input.html +share/doc/postgresql/html/datetime-julian-dates.html share/doc/postgresql/html/datetime-keywords.html share/doc/postgresql/html/datetime-posix-timezone-specs.html share/doc/postgresql/html/datetime-units-history.html @@ -862,6 +866,7 @@ share/doc/postgresql/html/pgtrgm.html share/doc/postgresql/html/pgupgrade.html share/doc/postgresql/html/pgvisibility.html share/doc/postgresql/html/pgwaldump.html +share/doc/postgresql/html/pgxlogdump.html share/doc/postgresql/html/planner-optimizer.html share/doc/postgresql/html/planner-stats-details.html share/doc/postgresql/html/planner-stats-security.html @@ -943,6 +948,7 @@ share/doc/postgresql/html/queries.html share/doc/postgresql/html/query-path.html share/doc/postgresql/html/querytree.html share/doc/postgresql/html/rangetypes.html +share/doc/postgresql/html/recovery-config.html share/doc/postgresql/html/reference-client.html share/doc/postgresql/html/reference-server.html share/doc/postgresql/html/reference.html @@ -958,6 +964,7 @@ share/doc/postgresql/html/release-12-3.h share/doc/postgresql/html/release-12-4.html share/doc/postgresql/html/release-12-5.html share/doc/postgresql/html/release-12-6.html +share/doc/postgresql/html/release-12-7.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-plperl/Makefile diff -u pkgsrc/databases/postgresql12-plperl/Makefile:1.11 pkgsrc/databases/postgresql12-plperl/Makefile:1.12 --- pkgsrc/databases/postgresql12-plperl/Makefile:1.11 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-plperl/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.11 2021/04/21 11:41:16 adam Exp $ +#$ $NetBSD: Makefile,v 1.12 2021/05/18 11:56:19 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.13 pkgsrc/databases/postgresql12-plpython/Makefile:1.14 --- pkgsrc/databases/postgresql12-plpython/Makefile:1.13 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-plpython/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.14 2021/05/18 11:56:19 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.12 pkgsrc/databases/postgresql12-pltcl/Makefile:1.13 --- pkgsrc/databases/postgresql12-pltcl/Makefile:1.12 Wed Apr 21 11:41:16 2021 +++ pkgsrc/databases/postgresql12-pltcl/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2021/04/21 11:41:16 adam Exp $ +# $NetBSD: Makefile,v 1.13 2021/05/18 11:56:19 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.14 pkgsrc/databases/postgresql12-server/Makefile:1.15 --- pkgsrc/databases/postgresql12-server/Makefile:1.14 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql12-server/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.15 2021/05/18 11:56:19 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.4 pkgsrc/databases/postgresql13/Makefile:1.5 --- pkgsrc/databases/postgresql13/Makefile:1.4 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.5 2021/05/18 11:56:19 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.4 pkgsrc/databases/postgresql13/distinfo:1.5 --- pkgsrc/databases/postgresql13/distinfo:1.4 Thu Mar 18 15:04:55 2021 +++ pkgsrc/databases/postgresql13/distinfo Tue May 18 11:56:19 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.4 2021/03/18 15:04:55 adam Exp $ +$NetBSD: distinfo,v 1.5 2021/05/18 11:56:19 adam Exp $ -SHA1 (postgresql-13.2.tar.bz2) = fc40c06ee7f2fd5f4ee5af88c8502f06a44c8698 -RMD160 (postgresql-13.2.tar.bz2) = 834069b800e8dcad67c5472dc23bc126e8c411fc -SHA512 (postgresql-13.2.tar.bz2) = 6d93cbae8de8637deeccd851fb676a12015e8e1efa6be2424f506f232db535c54b974b11f47ed4578575f90f6de1947b1647f399794b4ec242838efd4c5b2bce -Size (postgresql-13.2.tar.bz2) = 21057276 bytes +SHA1 (postgresql-13.3.tar.bz2) = 7a775f95367613ed5f7e4cd632586f9628475a92 +RMD160 (postgresql-13.3.tar.bz2) = 40e9645e8c1cd2776daaa70fa54ea62024d34527 +SHA512 (postgresql-13.3.tar.bz2) = 1560cc766982a9ea9d33c77835b20e33e11b03acb77fc75d905c565883935a7dbcd27b9b2ab6a0ecdb815261f7c259865cb3dac85c10a3181c3fcaeb4d28bf60 +Size (postgresql-13.3.tar.bz2) = 21119109 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.6 pkgsrc/databases/postgresql13/Makefile.common:1.7 --- pkgsrc/databases/postgresql13/Makefile.common:1.6 Fri May 7 06:58:56 2021 +++ pkgsrc/databases/postgresql13/Makefile.common Tue May 18 11:56:19 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.6 2021/05/07 06:58:56 nia Exp $ +# $NetBSD: Makefile.common,v 1.7 2021/05/18 11:56:19 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.2 +DISTNAME= postgresql-13.3 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.7 pkgsrc/databases/postgresql13-client/Makefile:1.8 --- pkgsrc/databases/postgresql13-client/Makefile:1.7 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-client/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/05/18 11:56:19 adam Exp $ PKGNAME= ${DISTNAME:S/-/13-client-/} -PKGREVISION= 1 COMMENT= PostgreSQL database client programs .include "../../databases/postgresql13/Makefile.common" Index: pkgsrc/databases/postgresql13-client/PLIST diff -u pkgsrc/databases/postgresql13-client/PLIST:1.3 pkgsrc/databases/postgresql13-client/PLIST:1.4 --- pkgsrc/databases/postgresql13-client/PLIST:1.3 Mon Feb 15 18:58:39 2021 +++ pkgsrc/databases/postgresql13-client/PLIST Tue May 18 11:56:19 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2021/02/15 18:58:39 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/05/18 11:56:19 adam Exp $ bin/clusterdb bin/createdb bin/createuser @@ -1001,7 +1001,16 @@ ${PLIST.nls}share/locale/pl/LC_MESSAGES/ ${PLIST.nls}share/locale/pl/LC_MESSAGES/pg_test_timing-13.mo ${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpg-13.mo ${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/ecpglib6-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/initdb-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_archivecleanup-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_checksums-13.mo ${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_config-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_controldata-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_ctl-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_resetwal-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_test_fsync-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pg_test_timing-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pgscripts-13.mo ${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpg-13.mo ${PLIST.nls}share/locale/ru/LC_MESSAGES/ecpglib6-13.mo ${PLIST.nls}share/locale/ru/LC_MESSAGES/initdb-13.mo Index: pkgsrc/databases/postgresql13-contrib/Makefile diff -u pkgsrc/databases/postgresql13-contrib/Makefile:1.7 pkgsrc/databases/postgresql13-contrib/Makefile:1.8 --- pkgsrc/databases/postgresql13-contrib/Makefile:1.7 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-contrib/Makefile Tue May 18 11:56:19 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/05/18 11:56:19 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.4 pkgsrc/databases/postgresql13-docs/Makefile:1.5 --- pkgsrc/databases/postgresql13-docs/Makefile:1.4 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-docs/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.5 2021/05/18 11:56:20 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.3 pkgsrc/databases/postgresql13-docs/PLIST:1.4 --- pkgsrc/databases/postgresql13-docs/PLIST:1.3 Mon Feb 15 18:58:40 2021 +++ pkgsrc/databases/postgresql13-docs/PLIST Tue May 18 11:56:20 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2021/02/15 18:58:40 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2021/05/18 11:56:20 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createuser.1 @@ -309,8 +309,10 @@ share/doc/postgresql/html/app-pgconfig.h share/doc/postgresql/html/app-pgcontroldata.html share/doc/postgresql/html/app-pgdump.html share/doc/postgresql/html/app-pgreceivewal.html +share/doc/postgresql/html/app-pgreceivexlog.html share/doc/postgresql/html/app-pgrecvlogical.html share/doc/postgresql/html/app-pgresetwal.html +share/doc/postgresql/html/app-pgresetxlog.html share/doc/postgresql/html/app-pgrestore.html share/doc/postgresql/html/app-pgrewind.html share/doc/postgresql/html/app-pgverifybackup.html @@ -319,6 +321,7 @@ share/doc/postgresql/html/app-postmaster share/doc/postgresql/html/app-psql.html share/doc/postgresql/html/app-reindexdb.html share/doc/postgresql/html/app-vacuumdb.html +share/doc/postgresql/html/appendix-obsolete.html share/doc/postgresql/html/appendixes.html share/doc/postgresql/html/applevel-consistency.html share/doc/postgresql/html/arrays.html @@ -493,6 +496,7 @@ share/doc/postgresql/html/datetime-appen share/doc/postgresql/html/datetime-config-files.html share/doc/postgresql/html/datetime-input-rules.html share/doc/postgresql/html/datetime-invalid-input.html +share/doc/postgresql/html/datetime-julian-dates.html share/doc/postgresql/html/datetime-keywords.html share/doc/postgresql/html/datetime-posix-timezone-specs.html share/doc/postgresql/html/datetime-units-history.html @@ -870,6 +874,7 @@ share/doc/postgresql/html/pgtrgm.html share/doc/postgresql/html/pgupgrade.html share/doc/postgresql/html/pgvisibility.html share/doc/postgresql/html/pgwaldump.html +share/doc/postgresql/html/pgxlogdump.html share/doc/postgresql/html/planner-optimizer.html share/doc/postgresql/html/planner-stats-details.html share/doc/postgresql/html/planner-stats-security.html @@ -951,6 +956,7 @@ share/doc/postgresql/html/queries.html share/doc/postgresql/html/query-path.html share/doc/postgresql/html/querytree.html share/doc/postgresql/html/rangetypes.html +share/doc/postgresql/html/recovery-config.html share/doc/postgresql/html/reference-client.html share/doc/postgresql/html/reference-server.html share/doc/postgresql/html/reference.html @@ -962,6 +968,7 @@ share/doc/postgresql/html/regress-varian share/doc/postgresql/html/regress.html share/doc/postgresql/html/release-13-1.html share/doc/postgresql/html/release-13-2.html +share/doc/postgresql/html/release-13-3.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.6 pkgsrc/databases/postgresql13-plperl/Makefile:1.7 --- pkgsrc/databases/postgresql13-plperl/Makefile:1.6 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-plperl/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.6 2021/04/21 11:41:17 adam Exp $ +#$ $NetBSD: Makefile,v 1.7 2021/05/18 11:56:20 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.7 pkgsrc/databases/postgresql13-plpython/Makefile:1.8 --- pkgsrc/databases/postgresql13-plpython/Makefile:1.7 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-plpython/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.8 2021/05/18 11:56:20 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.6 pkgsrc/databases/postgresql13-pltcl/Makefile:1.7 --- pkgsrc/databases/postgresql13-pltcl/Makefile:1.6 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-pltcl/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.7 2021/05/18 11:56:20 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-pltcl/PLIST diff -u pkgsrc/databases/postgresql13-pltcl/PLIST:1.1 pkgsrc/databases/postgresql13-pltcl/PLIST:1.2 --- pkgsrc/databases/postgresql13-pltcl/PLIST:1.1 Sun Oct 18 09:24:03 2020 +++ pkgsrc/databases/postgresql13-pltcl/PLIST Tue May 18 11:56:20 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2020/10/18 09:24:03 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2021/05/18 11:56:20 adam Exp $ lib/postgresql/pltcl.so ${PLIST.nls}share/locale/cs/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/de/LC_MESSAGES/pltcl-13.mo @@ -8,6 +8,7 @@ ${PLIST.nls}share/locale/it/LC_MESSAGES/ ${PLIST.nls}share/locale/ja/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/ko/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/pl/LC_MESSAGES/pltcl-13.mo +${PLIST.nls}share/locale/pt_BR/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/ru/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/sv/LC_MESSAGES/pltcl-13.mo ${PLIST.nls}share/locale/tr/LC_MESSAGES/pltcl-13.mo Index: pkgsrc/databases/postgresql13-server/Makefile diff -u pkgsrc/databases/postgresql13-server/Makefile:1.6 pkgsrc/databases/postgresql13-server/Makefile:1.7 --- pkgsrc/databases/postgresql13-server/Makefile:1.6 Wed Apr 21 11:41:17 2021 +++ pkgsrc/databases/postgresql13-server/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2021/04/21 11:41:17 adam Exp $ +# $NetBSD: Makefile,v 1.7 2021/05/18 11:56:20 adam Exp $ PKGNAME= ${DISTNAME:S/-/13-server-/} -PKGREVISION= 1 COMMENT= PostgreSQL database server programs # mips has no TAS implementation Index: pkgsrc/databases/postgresql95/Makefile diff -u pkgsrc/databases/postgresql95/Makefile:1.15 pkgsrc/databases/postgresql95/Makefile:1.16 --- pkgsrc/databases/postgresql95/Makefile:1.15 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.16 2021/05/18 11:56:20 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-/} -PKGREVISION= 1 COMMENT= Robust, next generation, object-relational DBMS DEPENDS+= postgresql95-client>=${PKGVERSION_NOREV}:../../databases/postgresql95-client Index: pkgsrc/databases/postgresql95-client/Makefile diff -u pkgsrc/databases/postgresql95-client/Makefile:1.20 pkgsrc/databases/postgresql95-client/Makefile:1.21 --- pkgsrc/databases/postgresql95-client/Makefile:1.20 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-client/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.20 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.21 2021/05/18 11:56:20 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-client-/} -PKGREVISION= 1 COMMENT= PostgreSQL database client programs .include "../../databases/postgresql95/Makefile.common" Index: pkgsrc/databases/postgresql95-contrib/Makefile diff -u pkgsrc/databases/postgresql95-contrib/Makefile:1.18 pkgsrc/databases/postgresql95-contrib/Makefile:1.19 --- pkgsrc/databases/postgresql95-contrib/Makefile:1.18 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-contrib/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.19 2021/05/18 11:56:20 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-contrib-/} -PKGREVISION= 1 COMMENT= Contrib subtree of tools and plug-ins .include "../../databases/postgresql95/Makefile.common" Index: pkgsrc/databases/postgresql95-docs/Makefile diff -u pkgsrc/databases/postgresql95-docs/Makefile:1.12 pkgsrc/databases/postgresql95-docs/Makefile:1.13 --- pkgsrc/databases/postgresql95-docs/Makefile:1.12 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-docs/Makefile Tue May 18 11:56:20 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.13 2021/05/18 11:56:20 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-docs-/} -PKGREVISION= 1 COMMENT= PostgreSQL database documentation .include "../../databases/postgresql95/Makefile.common" Index: pkgsrc/databases/postgresql95-plperl/Makefile diff -u pkgsrc/databases/postgresql95-plperl/Makefile:1.17 pkgsrc/databases/postgresql95-plperl/Makefile:1.18 --- pkgsrc/databases/postgresql95-plperl/Makefile:1.17 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-plperl/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.17 2021/04/21 11:41:18 adam Exp $ +#$ $NetBSD: Makefile,v 1.18 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-plperl-/} -PKGREVISION= 1 COMMENT= PL/Perl procedural language for the PostgreSQL backend DEPENDS+= postgresql95-server>=${PKGVERSION_NOREV}:../../databases/postgresql95-server Index: pkgsrc/databases/postgresql95-plpython/Makefile diff -u pkgsrc/databases/postgresql95-plpython/Makefile:1.19 pkgsrc/databases/postgresql95-plpython/Makefile:1.20 --- pkgsrc/databases/postgresql95-plpython/Makefile:1.19 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-plpython/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.20 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-plpython-/} -PKGREVISION= 1 COMMENT= PL/Python procedural language for the PostgreSQL backend DEPENDS+= postgresql95-server>=${PKGVERSION_NOREV}:../../databases/postgresql95-server Index: pkgsrc/databases/postgresql95-pltcl/Makefile diff -u pkgsrc/databases/postgresql95-pltcl/Makefile:1.16 pkgsrc/databases/postgresql95-pltcl/Makefile:1.17 --- pkgsrc/databases/postgresql95-pltcl/Makefile:1.16 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-pltcl/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.17 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-pltcl-/} -PKGREVISION= 1 COMMENT= PL/Tcl procedural language for the PostgreSQL backend DEPENDS+= postgresql95-server>=${PKGVERSION_NOREV}:../../databases/postgresql95-server Index: pkgsrc/databases/postgresql95-server/Makefile diff -u pkgsrc/databases/postgresql95-server/Makefile:1.19 pkgsrc/databases/postgresql95-server/Makefile:1.20 --- pkgsrc/databases/postgresql95-server/Makefile:1.19 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql95-server/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.20 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/95-server-/} -PKGREVISION= 1 COMMENT= PostgreSQL database server programs # mips has no TAS implementation Index: pkgsrc/databases/postgresql96/Makefile diff -u pkgsrc/databases/postgresql96/Makefile:1.11 pkgsrc/databases/postgresql96/Makefile:1.12 --- pkgsrc/databases/postgresql96/Makefile:1.11 Wed Apr 21 11:41:18 2021 +++ pkgsrc/databases/postgresql96/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2021/04/21 11:41:18 adam Exp $ +# $NetBSD: Makefile,v 1.12 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-/} -PKGREVISION= 1 COMMENT= Robust, next generation, object-relational DBMS DEPENDS+= postgresql96-client>=${PKGVERSION_NOREV}:../../databases/postgresql96-client Index: pkgsrc/databases/postgresql96/Makefile.common diff -u pkgsrc/databases/postgresql96/Makefile.common:1.32 pkgsrc/databases/postgresql96/Makefile.common:1.33 --- pkgsrc/databases/postgresql96/Makefile.common:1.32 Fri May 7 06:58:56 2021 +++ pkgsrc/databases/postgresql96/Makefile.common Tue May 18 11:56:21 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.32 2021/05/07 06:58:56 nia Exp $ +# $NetBSD: Makefile.common,v 1.33 2021/05/18 11:56: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/postgresql96-pltcl/Makefile # used by databases/postgresql96-server/Makefile -DISTNAME= postgresql-9.6.21 +DISTNAME= postgresql-9.6.22 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.24 pkgsrc/databases/postgresql96/distinfo:1.25 --- pkgsrc/databases/postgresql96/distinfo:1.24 Thu Mar 18 15:04:56 2021 +++ pkgsrc/databases/postgresql96/distinfo Tue May 18 11:56:21 2021 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.24 2021/03/18 15:04:56 adam Exp $ +$NetBSD: distinfo,v 1.25 2021/05/18 11:56:21 adam Exp $ -SHA1 (postgresql-9.6.21.tar.bz2) = e24333824d361968958613f546ae06011d9d1dfc -RMD160 (postgresql-9.6.21.tar.bz2) = a8352cb850f0168ae3c42a33dc0191b71d74a966 -SHA512 (postgresql-9.6.21.tar.bz2) = 6fba42171cbe4ec24ed250c32cc8f35be70ddfbc6d1ef0df733bbd094b29174ef198db351f6679a26170effe1fed44269dbe9dbdd619bb18be87f5b539f74475 -Size (postgresql-9.6.21.tar.bz2) = 18990266 bytes +SHA1 (postgresql-9.6.22.tar.bz2) = e56f90d8c25443d61c09226c011ae53eaff58bd8 +RMD160 (postgresql-9.6.22.tar.bz2) = 061b411626270ecdb68c2459bd837433bbe9c850 +SHA512 (postgresql-9.6.22.tar.bz2) = 371f85f2d02a8a3b888396440149e9b432f91e106a7feb8a163b275a0586843683124281a0965abf3c1215cb68e2002976913f88c75e35e52ac5f78d4145fd7b +Size (postgresql-9.6.22.tar.bz2) = 19003741 bytes SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c SHA1 (patch-configure) = db34614cef013a91dc229be319e5f09c657c3f24 Index: pkgsrc/databases/postgresql96-client/Makefile diff -u pkgsrc/databases/postgresql96-client/Makefile:1.19 pkgsrc/databases/postgresql96-client/Makefile:1.20 --- pkgsrc/databases/postgresql96-client/Makefile:1.19 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-client/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.20 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-client-/} -PKGREVISION= 1 COMMENT= PostgreSQL database client programs .include "../../databases/postgresql96/Makefile.common" Index: pkgsrc/databases/postgresql96-contrib/Makefile diff -u pkgsrc/databases/postgresql96-contrib/Makefile:1.18 pkgsrc/databases/postgresql96-contrib/Makefile:1.19 --- pkgsrc/databases/postgresql96-contrib/Makefile:1.18 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-contrib/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.19 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-contrib-/} -PKGREVISION= 1 COMMENT= Contrib subtree of tools and plug-ins .include "../../databases/postgresql96/Makefile.common" Index: pkgsrc/databases/postgresql96-docs/Makefile diff -u pkgsrc/databases/postgresql96-docs/Makefile:1.10 pkgsrc/databases/postgresql96-docs/Makefile:1.11 --- pkgsrc/databases/postgresql96-docs/Makefile:1.10 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-docs/Makefile Tue May 18 11:56:21 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.11 2021/05/18 11:56:21 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-docs-/} -PKGREVISION= 1 COMMENT= PostgreSQL database documentation .include "../../databases/postgresql96/Makefile.common" Index: pkgsrc/databases/postgresql96-docs/PLIST diff -u pkgsrc/databases/postgresql96-docs/PLIST:1.21 pkgsrc/databases/postgresql96-docs/PLIST:1.22 --- pkgsrc/databases/postgresql96-docs/PLIST:1.21 Mon Feb 15 18:58:42 2021 +++ pkgsrc/databases/postgresql96-docs/PLIST Tue May 18 11:56:21 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.21 2021/02/15 18:58:42 adam Exp $ +@comment $NetBSD: PLIST,v 1.22 2021/05/18 11:56:21 adam Exp $ man/man1/clusterdb.1 man/man1/createdb.1 man/man1/createlang.1 @@ -444,6 +444,7 @@ share/doc/postgresql/html/datetime-appen share/doc/postgresql/html/datetime-config-files.html share/doc/postgresql/html/datetime-input-rules.html share/doc/postgresql/html/datetime-invalid-input.html +share/doc/postgresql/html/datetime-julian-dates.html share/doc/postgresql/html/datetime-keywords.html share/doc/postgresql/html/datetime-posix-timezone-specs.html share/doc/postgresql/html/datetime-units-history.html @@ -896,6 +897,7 @@ share/doc/postgresql/html/release-9-6-19 share/doc/postgresql/html/release-9-6-2.html share/doc/postgresql/html/release-9-6-20.html 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-3.html share/doc/postgresql/html/release-9-6-4.html share/doc/postgresql/html/release-9-6-5.html Index: pkgsrc/databases/postgresql96-plperl/Makefile diff -u pkgsrc/databases/postgresql96-plperl/Makefile:1.13 pkgsrc/databases/postgresql96-plperl/Makefile:1.14 --- pkgsrc/databases/postgresql96-plperl/Makefile:1.13 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-plperl/Makefile Tue May 18 11:56:22 2021 @@ -1,7 +1,6 @@ -#$ $NetBSD: Makefile,v 1.13 2021/04/21 11:41:19 adam Exp $ +#$ $NetBSD: Makefile,v 1.14 2021/05/18 11:56:22 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-plperl-/} -PKGREVISION= 1 COMMENT= PL/Perl procedural language for the PostgreSQL backend DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server Index: pkgsrc/databases/postgresql96-plpython/Makefile diff -u pkgsrc/databases/postgresql96-plpython/Makefile:1.17 pkgsrc/databases/postgresql96-plpython/Makefile:1.18 --- pkgsrc/databases/postgresql96-plpython/Makefile:1.17 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-plpython/Makefile Tue May 18 11:56:22 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.18 2021/05/18 11:56:22 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-plpython-/} -PKGREVISION= 1 COMMENT= PL/Python procedural language for the PostgreSQL backend DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server Index: pkgsrc/databases/postgresql96-pltcl/Makefile diff -u pkgsrc/databases/postgresql96-pltcl/Makefile:1.14 pkgsrc/databases/postgresql96-pltcl/Makefile:1.15 --- pkgsrc/databases/postgresql96-pltcl/Makefile:1.14 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-pltcl/Makefile Tue May 18 11:56:22 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.15 2021/05/18 11:56:22 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-pltcl-/} -PKGREVISION= 1 COMMENT= PL/Tcl procedural language for the PostgreSQL backend DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server Index: pkgsrc/databases/postgresql96-server/Makefile diff -u pkgsrc/databases/postgresql96-server/Makefile:1.16 pkgsrc/databases/postgresql96-server/Makefile:1.17 --- pkgsrc/databases/postgresql96-server/Makefile:1.16 Wed Apr 21 11:41:19 2021 +++ pkgsrc/databases/postgresql96-server/Makefile Tue May 18 11:56:22 2021 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2021/04/21 11:41:19 adam Exp $ +# $NetBSD: Makefile,v 1.17 2021/05/18 11:56:22 adam Exp $ PKGNAME= ${DISTNAME:S/-/96-server-/} -PKGREVISION= 1 COMMENT= PostgreSQL database server programs # mips has no TAS implementation --_----------=_1621338983183770--