Thu May 12 19:02:47 2022 UTC ()
postgresqlNN: updated to 14.3, 13.7, 12.11, 11.16, and 10.21

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

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

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

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

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

Bug Fixes and Improvements

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

Included in this release:

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


(adam)
diff -r1.30 -r1.31 pkgsrc/databases/postgresql10/Makefile
diff -r1.32 -r1.33 pkgsrc/databases/postgresql10/Makefile.common
diff -r1.26 -r1.27 pkgsrc/databases/postgresql10/distinfo
diff -r1.24 -r1.25 pkgsrc/databases/postgresql10-client/Makefile
diff -r1.23 -r1.24 pkgsrc/databases/postgresql10-contrib/Makefile
diff -r1.16 -r1.17 pkgsrc/databases/postgresql10-docs/Makefile
diff -r1.21 -r1.22 pkgsrc/databases/postgresql10-docs/PLIST
diff -r1.19 -r1.20 pkgsrc/databases/postgresql10-plperl/Makefile
diff -r1.23 -r1.24 pkgsrc/databases/postgresql10-plpython/Makefile
diff -r1.20 -r1.21 pkgsrc/databases/postgresql10-pltcl/Makefile
diff -r1.24 -r1.25 pkgsrc/databases/postgresql10-server/Makefile
diff -r1.22 -r1.23 pkgsrc/databases/postgresql11/Makefile
diff -r1.22 -r1.23 pkgsrc/databases/postgresql11/distinfo
diff -r1.25 -r1.26 pkgsrc/databases/postgresql11/Makefile.common
diff -r1.20 -r1.21 pkgsrc/databases/postgresql11-client/Makefile
diff -r1.20 -r1.21 pkgsrc/databases/postgresql11-contrib/Makefile
diff -r1.14 -r1.15 pkgsrc/databases/postgresql11-docs/Makefile
diff -r1.16 -r1.17 pkgsrc/databases/postgresql11-docs/PLIST
diff -r1.17 -r1.18 pkgsrc/databases/postgresql11-plperl/Makefile
diff -r1.21 -r1.22 pkgsrc/databases/postgresql11-plpython/Makefile
diff -r1.18 -r1.19 pkgsrc/databases/postgresql11-pltcl/Makefile
diff -r1.21 -r1.22 pkgsrc/databases/postgresql11-server/Makefile
diff -r1.21 -r1.22 pkgsrc/databases/postgresql12/Makefile
diff -r1.18 -r1.19 pkgsrc/databases/postgresql12/Makefile.common
diff -r1.15 -r1.16 pkgsrc/databases/postgresql12/distinfo
diff -r1.22 -r1.23 pkgsrc/databases/postgresql12-client/Makefile
diff -r1.20 -r1.21 pkgsrc/databases/postgresql12-contrib/Makefile
diff -r1.14 -r1.15 pkgsrc/databases/postgresql12-docs/Makefile
diff -r1.11 -r1.12 pkgsrc/databases/postgresql12-docs/PLIST
diff -r1.17 -r1.18 pkgsrc/databases/postgresql12-plperl/Makefile
diff -r1.19 -r1.20 pkgsrc/databases/postgresql12-plpython/Makefile
diff -r1.18 -r1.19 pkgsrc/databases/postgresql12-pltcl/Makefile
diff -r1.20 -r1.21 pkgsrc/databases/postgresql12-server/Makefile
diff -r1.12 -r1.13 pkgsrc/databases/postgresql13/Makefile
diff -r1.12 -r1.13 pkgsrc/databases/postgresql13/distinfo
diff -r1.11 -r1.12 pkgsrc/databases/postgresql13/Makefile.common
diff -r1.14 -r1.15 pkgsrc/databases/postgresql13-client/Makefile
diff -r1.13 -r1.14 pkgsrc/databases/postgresql13-contrib/Makefile
diff -r1.10 -r1.11 pkgsrc/databases/postgresql13-docs/Makefile
diff -r1.7 -r1.8 pkgsrc/databases/postgresql13-docs/PLIST
diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-plperl/Makefile
diff -r1.13 -r1.14 pkgsrc/databases/postgresql13-plpython/Makefile
diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-pltcl/Makefile
diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-server/Makefile
diff -r1.7 -r1.8 pkgsrc/databases/postgresql14/Makefile
diff -r1.3 -r1.4 pkgsrc/databases/postgresql14/Makefile.common
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14/distinfo
diff -r1.6 -r1.7 pkgsrc/databases/postgresql14-client/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-contrib/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-docs/Makefile
diff -r1.3 -r1.4 pkgsrc/databases/postgresql14-docs/PLIST
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-plperl/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-plpython/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-pltcl/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-server/Makefile

cvs diff -r1.30 -r1.31 pkgsrc/databases/postgresql10/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/Makefile 2022/04/18 19:10:39 1.30
+++ pkgsrc/databases/postgresql10/Attic/Makefile 2022/05/12 19:02:42 1.31
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.30 2022/04/18 19:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.31 2022/05/12 19:02:42 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-/} 3PKGNAME= ${DISTNAME:S/-/10-/}
4PKGREVISION= 1 
5COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
6 5
7DEPENDS+= postgresql10-client>=${PKGVERSION_NOREV}:../../databases/postgresql10-client 6DEPENDS+= postgresql10-client>=${PKGVERSION_NOREV}:../../databases/postgresql10-client
8DEPENDS+= postgresql10-docs>=${PKGVERSION_NOREV}:../../databases/postgresql10-docs 7DEPENDS+= postgresql10-docs>=${PKGVERSION_NOREV}:../../databases/postgresql10-docs
9DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server 8DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
10 9
11META_PACKAGE= yes 10META_PACKAGE= yes
12 11
13.include "Makefile.common" 12.include "Makefile.common"
14 13
15.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.32 -r1.33 pkgsrc/databases/postgresql10/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/Makefile.common 2022/02/11 08:31:20 1.32
+++ pkgsrc/databases/postgresql10/Attic/Makefile.common 2022/05/12 19:02:42 1.33
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.32 2022/02/11 08:31:20 adam Exp $ 1# $NetBSD: Makefile.common,v 1.33 2022/05/12 19:02:42 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql10-client/Makefile 11# used by databases/postgresql10-client/Makefile
12# used by databases/postgresql10-contrib/Makefile 12# used by databases/postgresql10-contrib/Makefile
13# used by databases/postgresql10-docs/Makefile 13# used by databases/postgresql10-docs/Makefile
14# used by databases/postgresql10-plperl/Makefile 14# used by databases/postgresql10-plperl/Makefile
15# used by databases/postgresql10-plpython/Makefile 15# used by databases/postgresql10-plpython/Makefile
16# used by databases/postgresql10-pltcl/Makefile 16# used by databases/postgresql10-pltcl/Makefile
17# used by databases/postgresql10-server/Makefile 17# used by databases/postgresql10-server/Makefile
18 18
19DISTNAME= postgresql-10.20 19DISTNAME= postgresql-10.21
20CATEGORIES= databases 20CATEGORIES= databases
21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} 21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
22EXTRACT_SUFX= .tar.bz2 22EXTRACT_SUFX= .tar.bz2
23 23
24MAINTAINER?= adam@NetBSD.org 24MAINTAINER?= adam@NetBSD.org
25HOMEPAGE= https://www.postgresql.org/ 25HOMEPAGE= https://www.postgresql.org/
26LICENSE= postgresql-license 26LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}

cvs diff -r1.26 -r1.27 pkgsrc/databases/postgresql10/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/distinfo 2022/02/11 08:31:20 1.26
+++ pkgsrc/databases/postgresql10/Attic/distinfo 2022/05/12 19:02:42 1.27
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.26 2022/02/11 08:31:20 adam Exp $ 1$NetBSD: distinfo,v 1.27 2022/05/12 19:02:42 adam Exp $
2 2
3BLAKE2s (postgresql-10.20.tar.bz2) = 3bdc7eed893b1e73b7170e527b12699ada8f90a844e876bb029ad4026bf95a55 3BLAKE2s (postgresql-10.21.tar.bz2) = ed1e2be52212a5b0f5e4b657421a3b9618227c3f049b8f80da8c948f77b9b169
4SHA512 (postgresql-10.20.tar.bz2) = 44cfca541947d58c70593b767d3c2423f20cc6904f3d4cea8f63c1802ccbc569130c4a2a15f1af152285926f6a200e13d59c21584295dafd6f6e74bd38251428 4SHA512 (postgresql-10.21.tar.bz2) = 1053e15505c0448df491119c9aad1617889b66118628a2155e3ec87e6648b2071a0a54e10d8fbbe00161b2aa86d1a6194d932a8cf5808c626e7972d135bb05c5
5Size (postgresql-10.20.tar.bz2) = 19371473 bytes 5Size (postgresql-10.21.tar.bz2) = 19409454 bytes
6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd 8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af 10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af
11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e 11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e
12SHA1 (patch-src_Makefile.shlib) = 74ab026a457a4789a1aa1d6423d88ce4a2db7a2e 12SHA1 (patch-src_Makefile.shlib) = 74ab026a457a4789a1aa1d6423d88ce4a2db7a2e
13SHA1 (patch-src_backend_Makefile) = 480ac63f07fec2eaacffdbee5c5aa104081d0ee4 13SHA1 (patch-src_backend_Makefile) = 480ac63f07fec2eaacffdbee5c5aa104081d0ee4
14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289 14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289
15SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = a15012ae34d4ecd1eb2bc29e4d2c40098ea236fd 15SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = a15012ae34d4ecd1eb2bc29e4d2c40098ea236fd
16SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 16SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
17SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 17SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
18SHA1 (patch-src_pl_plperl_GNUmakefile) = 6ee3e431f46ce5c2a94df499504b2b8bd458bbef 18SHA1 (patch-src_pl_plperl_GNUmakefile) = 6ee3e431f46ce5c2a94df499504b2b8bd458bbef

cvs diff -r1.24 -r1.25 pkgsrc/databases/postgresql10-client/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-client/Attic/Makefile 2022/05/05 08:22:37 1.24
+++ pkgsrc/databases/postgresql10-client/Attic/Makefile 2022/05/12 19:02:42 1.25
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.24 2022/05/05 08:22:37 nia Exp $ 1# $NetBSD: Makefile,v 1.25 2022/05/12 19:02:42 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-client-/} 3PKGNAME= ${DISTNAME:S/-/10-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql10/Makefile.common" 6.include "../../databases/postgresql10/Makefile.common"
8 7
9USE_TOOLS+= gzip msgfmt tar 8USE_TOOLS+= gzip msgfmt tar
10TOOLS_BROKEN+= perl 9TOOLS_BROKEN+= perl
11CONFIGURE_ARGS+= --with-openssl 10CONFIGURE_ARGS+= --with-openssl
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# Override INSTALL script to avoid unprivileged user/group 13# Override INSTALL script to avoid unprivileged user/group
15# leaking into the binary package 14# leaking into the binary package
16CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
17 16

cvs diff -r1.23 -r1.24 pkgsrc/databases/postgresql10-contrib/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-contrib/Attic/Makefile 2022/04/18 19:10:39 1.23
+++ pkgsrc/databases/postgresql10-contrib/Attic/Makefile 2022/05/12 19:02:42 1.24
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.23 2022/04/18 19:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.24 2022/05/12 19:02:42 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-contrib-/} 3PKGNAME= ${DISTNAME:S/-/10-contrib-/}
4PKGREVISION= 1 
5COMMENT= Contrib subtree of tools and plug-ins 4COMMENT= Contrib subtree of tools and plug-ins
6 5
7.include "../../databases/postgresql10/Makefile.common" 6.include "../../databases/postgresql10/Makefile.common"
8 7
9DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server 8DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
10 9
11BUILD_MAKE_FLAGS= USE_PGXS=1 10BUILD_MAKE_FLAGS= USE_PGXS=1
12 11
13BUILD_DIRS+= contrib/adminpack 12BUILD_DIRS+= contrib/adminpack
14BUILD_DIRS+= contrib/auth_delay 13BUILD_DIRS+= contrib/auth_delay
15BUILD_DIRS+= contrib/auto_explain 14BUILD_DIRS+= contrib/auto_explain
16BUILD_DIRS+= contrib/btree_gin 15BUILD_DIRS+= contrib/btree_gin
17BUILD_DIRS+= contrib/btree_gist 16BUILD_DIRS+= contrib/btree_gist

cvs diff -r1.16 -r1.17 pkgsrc/databases/postgresql10-docs/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-docs/Attic/Makefile 2022/04/18 19:10:39 1.16
+++ pkgsrc/databases/postgresql10-docs/Attic/Makefile 2022/05/12 19:02:42 1.17
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.16 2022/04/18 19:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.17 2022/05/12 19:02:42 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-docs-/} 3PKGNAME= ${DISTNAME:S/-/10-docs-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql10/Makefile.common" 6.include "../../databases/postgresql10/Makefile.common"
8 7
9BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml 8BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml
10BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl 9BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl
11BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular 10BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular
12BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879 11BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879
13BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade 12BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade
14BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt 13BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
15 14
16USE_TOOLS+= gzip tar perl:build 15USE_TOOLS+= gzip tar perl:build
17CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share 16CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share

cvs diff -r1.21 -r1.22 pkgsrc/databases/postgresql10-docs/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-docs/Attic/PLIST 2022/02/11 08:31:20 1.21
+++ pkgsrc/databases/postgresql10-docs/Attic/PLIST 2022/05/12 19:02:42 1.22
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.21 2022/02/11 08:31:20 adam Exp $ 1@comment $NetBSD: PLIST,v 1.22 2022/05/12 19:02:42 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createuser.1 4man/man1/createuser.1
5man/man1/dropdb.1 5man/man1/dropdb.1
6man/man1/dropuser.1 6man/man1/dropuser.1
7man/man1/ecpg.1 7man/man1/ecpg.1
8man/man1/initdb.1 8man/man1/initdb.1
9man/man1/oid2name.1 9man/man1/oid2name.1
10man/man1/pg_archivecleanup.1 10man/man1/pg_archivecleanup.1
11man/man1/pg_basebackup.1 11man/man1/pg_basebackup.1
12man/man1/pg_config.1 12man/man1/pg_config.1
13man/man1/pg_controldata.1 13man/man1/pg_controldata.1
14man/man1/pg_ctl.1 14man/man1/pg_ctl.1
@@ -920,26 +920,27 @@ share/doc/postgresql/html/regress.html @@ -920,26 +920,27 @@ share/doc/postgresql/html/regress.html
920share/doc/postgresql/html/release-10-1.html 920share/doc/postgresql/html/release-10-1.html
921share/doc/postgresql/html/release-10-10.html 921share/doc/postgresql/html/release-10-10.html
922share/doc/postgresql/html/release-10-11.html 922share/doc/postgresql/html/release-10-11.html
923share/doc/postgresql/html/release-10-12.html 923share/doc/postgresql/html/release-10-12.html
924share/doc/postgresql/html/release-10-13.html 924share/doc/postgresql/html/release-10-13.html
925share/doc/postgresql/html/release-10-14.html 925share/doc/postgresql/html/release-10-14.html
926share/doc/postgresql/html/release-10-15.html 926share/doc/postgresql/html/release-10-15.html
927share/doc/postgresql/html/release-10-16.html 927share/doc/postgresql/html/release-10-16.html
928share/doc/postgresql/html/release-10-17.html 928share/doc/postgresql/html/release-10-17.html
929share/doc/postgresql/html/release-10-18.html 929share/doc/postgresql/html/release-10-18.html
930share/doc/postgresql/html/release-10-19.html 930share/doc/postgresql/html/release-10-19.html
931share/doc/postgresql/html/release-10-2.html 931share/doc/postgresql/html/release-10-2.html
932share/doc/postgresql/html/release-10-20.html 932share/doc/postgresql/html/release-10-20.html
 933share/doc/postgresql/html/release-10-21.html
933share/doc/postgresql/html/release-10-3.html 934share/doc/postgresql/html/release-10-3.html
934share/doc/postgresql/html/release-10-4.html 935share/doc/postgresql/html/release-10-4.html
935share/doc/postgresql/html/release-10-5.html 936share/doc/postgresql/html/release-10-5.html
936share/doc/postgresql/html/release-10-6.html 937share/doc/postgresql/html/release-10-6.html
937share/doc/postgresql/html/release-10-7.html 938share/doc/postgresql/html/release-10-7.html
938share/doc/postgresql/html/release-10-8.html 939share/doc/postgresql/html/release-10-8.html
939share/doc/postgresql/html/release-10-9.html 940share/doc/postgresql/html/release-10-9.html
940share/doc/postgresql/html/release-10.html 941share/doc/postgresql/html/release-10.html
941share/doc/postgresql/html/release-prior.html 942share/doc/postgresql/html/release-prior.html
942share/doc/postgresql/html/release.html 943share/doc/postgresql/html/release.html
943share/doc/postgresql/html/replication-origins.html 944share/doc/postgresql/html/replication-origins.html
944share/doc/postgresql/html/resources.html 945share/doc/postgresql/html/resources.html
945share/doc/postgresql/html/role-attributes.html 946share/doc/postgresql/html/role-attributes.html

cvs diff -r1.19 -r1.20 pkgsrc/databases/postgresql10-plperl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-plperl/Attic/Makefile 2022/04/18 19:10:39 1.19
+++ pkgsrc/databases/postgresql10-plperl/Attic/Makefile 2022/05/12 19:02:42 1.20
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1#$ $NetBSD: Makefile,v 1.19 2022/04/18 19:10:39 adam Exp $ 1#$ $NetBSD: Makefile,v 1.20 2022/05/12 19:02:42 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-plperl-/} 3PKGNAME= ${DISTNAME:S/-/10-plperl-/}
4PKGREVISION= 1 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server 6DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
8 7
9.include "../../databases/postgresql10/Makefile.common" 8.include "../../databases/postgresql10/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12PERL5_CONFIGURE= no 11PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 12CONFIGURE_ARGS+= --with-perl
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plperl 15BUILD_DIRS= src/pl/plperl
17MAKE_FILE= GNUmakefile 16MAKE_FILE= GNUmakefile

cvs diff -r1.23 -r1.24 pkgsrc/databases/postgresql10-plpython/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-plpython/Attic/Makefile 2022/04/18 19:10:39 1.23
+++ pkgsrc/databases/postgresql10-plpython/Attic/Makefile 2022/05/12 19:02:43 1.24
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.23 2022/04/18 19:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.24 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-plpython-/} 3PKGNAME= ${DISTNAME:S/-/10-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server 6DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
8 7
9.include "../../databases/postgresql10/Makefile.common" 8.include "../../databases/postgresql10/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-python 11CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
17 16

cvs diff -r1.20 -r1.21 pkgsrc/databases/postgresql10-pltcl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-pltcl/Attic/Makefile 2022/04/18 19:10:39 1.20
+++ pkgsrc/databases/postgresql10-pltcl/Attic/Makefile 2022/05/12 19:02:43 1.21
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:39 adam Exp $ 1# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-pltcl-/} 3PKGNAME= ${DISTNAME:S/-/10-pltcl-/}
4PKGREVISION= 1 
5COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server 6DEPENDS+= postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
8 7
9.include "../../databases/postgresql10/Makefile.common" 8.include "../../databases/postgresql10/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-tcl 11CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 12CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 13CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 14TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16BUILD_MAKE_FLAGS= PGXS=1 15BUILD_MAKE_FLAGS= PGXS=1
17 16

cvs diff -r1.24 -r1.25 pkgsrc/databases/postgresql10-server/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-server/Attic/Makefile 2022/04/18 19:10:40 1.24
+++ pkgsrc/databases/postgresql10-server/Attic/Makefile 2022/05/12 19:02:43 1.25
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.24 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.25 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/10-server-/} 3PKGNAME= ${DISTNAME:S/-/10-server-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
6 5
7# mips has no TAS implementation 6# mips has no TAS implementation
8BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
9 8
10.include "../../databases/postgresql10/Makefile.common" 9.include "../../databases/postgresql10/Makefile.common"
11 10
12TOOLS_BROKEN+= perl 11TOOLS_BROKEN+= perl
13CONFIGURE_ARGS+= --with-openssl 12CONFIGURE_ARGS+= --with-openssl
14 13
15INSTALL_DIRS= src/backend 14INSTALL_DIRS= src/backend
16INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 15INSTALL_DIRS+= src/backend/replication/libpqwalreceiver
17INSTALL_DIRS+= src/backend/replication/pgoutput 16INSTALL_DIRS+= src/backend/replication/pgoutput

cvs diff -r1.22 -r1.23 pkgsrc/databases/postgresql11/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11/Makefile 2022/04/18 19:10:40 1.22
+++ pkgsrc/databases/postgresql11/Makefile 2022/05/12 19:02:43 1.23
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.22 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.23 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-/} 3PKGNAME= ${DISTNAME:S/-/11-/}
4PKGREVISION= 1 
5COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
6 5
7DEPENDS+= postgresql11-client>=${PKGVERSION_NOREV}:../../databases/postgresql11-client 6DEPENDS+= postgresql11-client>=${PKGVERSION_NOREV}:../../databases/postgresql11-client
8DEPENDS+= postgresql11-docs>=${PKGVERSION_NOREV}:../../databases/postgresql11-docs 7DEPENDS+= postgresql11-docs>=${PKGVERSION_NOREV}:../../databases/postgresql11-docs
9DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server 8DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
10 9
11META_PACKAGE= yes 10META_PACKAGE= yes
12 11
13.include "Makefile.common" 12.include "Makefile.common"
14 13
15.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.22 -r1.23 pkgsrc/databases/postgresql11/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11/distinfo 2022/02/25 15:39:57 1.22
+++ pkgsrc/databases/postgresql11/distinfo 2022/05/12 19:02:43 1.23
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.22 2022/02/25 15:39:57 jperkin Exp $ 1$NetBSD: distinfo,v 1.23 2022/05/12 19:02:43 adam Exp $
2 2
3BLAKE2s (postgresql-11.15.tar.bz2) = e6f70c1693bba23c70127b0234494d2d7a43b4e5a0f80f26477090e4fff6e4fa 3BLAKE2s (postgresql-11.16.tar.bz2) = 3e04ff94021dba90a1d48316b214d997d42eb4f806ec10f0aab99fe524df46b4
4SHA512 (postgresql-11.15.tar.bz2) = 1eba7bddee1edf034617102c1d61ad0aa1b58927dad63de1d054817966c4c9a1d7d3fa6f6896af3fe5a6880b09a6ec86be298256ee6ecc3705ff2654d3d00c74 4SHA512 (postgresql-11.16.tar.bz2) = e1b6be0a97e60cdd95cd0ebc756b1de6abf2f33f41f6a80da3dff25483a30146fb6bf750ab787bb5bb4f2a04718946c7429e71f891cbd491001e9f9c2ea8e63c
5Size (postgresql-11.15.tar.bz2) = 20245750 bytes 5Size (postgresql-11.16.tar.bz2) = 20347100 bytes
6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd 8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af 10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af
11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e 11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e
12SHA1 (patch-src_Makefile.shlib) = 4e093c79345add008a56c10d1c1bc8574f7a38e1 12SHA1 (patch-src_Makefile.shlib) = 4e093c79345add008a56c10d1c1bc8574f7a38e1
13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911 13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911
14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289 14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289
15SHA1 (patch-src_fe__utils_Makefile) = 3c3b373cda88368c9198f3df7ef9cfebe74e33d5 15SHA1 (patch-src_fe__utils_Makefile) = 3c3b373cda88368c9198f3df7ef9cfebe74e33d5
16SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 16SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
17SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 17SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
18SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d 18SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d

cvs diff -r1.25 -r1.26 pkgsrc/databases/postgresql11/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11/Makefile.common 2022/02/11 08:31:21 1.25
+++ pkgsrc/databases/postgresql11/Makefile.common 2022/05/12 19:02:43 1.26
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.25 2022/02/11 08:31:21 adam Exp $ 1# $NetBSD: Makefile.common,v 1.26 2022/05/12 19:02:43 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql11-client/Makefile 11# used by databases/postgresql11-client/Makefile
12# used by databases/postgresql11-contrib/Makefile 12# used by databases/postgresql11-contrib/Makefile
13# used by databases/postgresql11-docs/Makefile 13# used by databases/postgresql11-docs/Makefile
14# used by databases/postgresql11-plperl/Makefile 14# used by databases/postgresql11-plperl/Makefile
15# used by databases/postgresql11-plpython/Makefile 15# used by databases/postgresql11-plpython/Makefile
16# used by databases/postgresql11-pltcl/Makefile 16# used by databases/postgresql11-pltcl/Makefile
17# used by databases/postgresql11-server/Makefile 17# used by databases/postgresql11-server/Makefile
18 18
19DISTNAME= postgresql-11.15 19DISTNAME= postgresql-11.16
20CATEGORIES= databases 20CATEGORIES= databases
21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} 21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
22EXTRACT_SUFX= .tar.bz2 22EXTRACT_SUFX= .tar.bz2
23 23
24MAINTAINER?= adam@NetBSD.org 24MAINTAINER?= adam@NetBSD.org
25HOMEPAGE= https://www.postgresql.org/ 25HOMEPAGE= https://www.postgresql.org/
26LICENSE= postgresql-license 26LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}

cvs diff -r1.20 -r1.21 pkgsrc/databases/postgresql11-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-client/Makefile 2022/05/05 08:22:37 1.20
+++ pkgsrc/databases/postgresql11-client/Makefile 2022/05/12 19:02:43 1.21
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.20 2022/05/05 08:22:37 nia Exp $ 1# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-client-/} 3PKGNAME= ${DISTNAME:S/-/11-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql11/Makefile.common" 6.include "../../databases/postgresql11/Makefile.common"
8 7
9USE_TOOLS+= gzip msgfmt tar 8USE_TOOLS+= gzip msgfmt tar
10TOOLS_BROKEN+= perl 9TOOLS_BROKEN+= perl
11CONFIGURE_ARGS+= --with-openssl 10CONFIGURE_ARGS+= --with-openssl
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# Override INSTALL script to avoid unprivileged user/group 13# Override INSTALL script to avoid unprivileged user/group
15# leaking into the binary package 14# leaking into the binary package
16CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
17 16

cvs diff -r1.20 -r1.21 pkgsrc/databases/postgresql11-contrib/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-contrib/Makefile 2022/04/18 19:10:40 1.20
+++ pkgsrc/databases/postgresql11-contrib/Makefile 2022/05/12 19:02:43 1.21
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-contrib-/} 3PKGNAME= ${DISTNAME:S/-/11-contrib-/}
4PKGREVISION= 1 
5COMMENT= Contrib subtree of tools and plug-ins 4COMMENT= Contrib subtree of tools and plug-ins
6 5
7.include "../../databases/postgresql11/Makefile.common" 6.include "../../databases/postgresql11/Makefile.common"
8 7
9DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server 8DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
10 9
11BUILD_MAKE_FLAGS= USE_PGXS=1 10BUILD_MAKE_FLAGS= USE_PGXS=1
12 11
13BUILD_DIRS+= contrib/adminpack 12BUILD_DIRS+= contrib/adminpack
14BUILD_DIRS+= contrib/auth_delay 13BUILD_DIRS+= contrib/auth_delay
15BUILD_DIRS+= contrib/auto_explain 14BUILD_DIRS+= contrib/auto_explain
16BUILD_DIRS+= contrib/btree_gin 15BUILD_DIRS+= contrib/btree_gin
17BUILD_DIRS+= contrib/btree_gist 16BUILD_DIRS+= contrib/btree_gist

cvs diff -r1.14 -r1.15 pkgsrc/databases/postgresql11-docs/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-docs/Makefile 2022/04/18 19:10:40 1.14
+++ pkgsrc/databases/postgresql11-docs/Makefile 2022/05/12 19:02:43 1.15
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.14 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-docs-/} 3PKGNAME= ${DISTNAME:S/-/11-docs-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql11/Makefile.common" 6.include "../../databases/postgresql11/Makefile.common"
8 7
9BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml 8BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml
10BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl 9BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl
11BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular 10BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular
12BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879 11BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879
13BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade 12BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade
14BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt 13BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
15 14
16USE_TOOLS+= gzip tar perl:build 15USE_TOOLS+= gzip tar perl:build
17CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share 16CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share

cvs diff -r1.16 -r1.17 pkgsrc/databases/postgresql11-docs/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-docs/PLIST 2022/02/11 08:31:21 1.16
+++ pkgsrc/databases/postgresql11-docs/PLIST 2022/05/12 19:02:43 1.17
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.16 2022/02/11 08:31:21 adam Exp $ 1@comment $NetBSD: PLIST,v 1.17 2022/05/12 19:02:43 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createuser.1 4man/man1/createuser.1
5man/man1/dropdb.1 5man/man1/dropdb.1
6man/man1/dropuser.1 6man/man1/dropuser.1
7man/man1/ecpg.1 7man/man1/ecpg.1
8man/man1/initdb.1 8man/man1/initdb.1
9man/man1/oid2name.1 9man/man1/oid2name.1
10man/man1/pg_archivecleanup.1 10man/man1/pg_archivecleanup.1
11man/man1/pg_basebackup.1 11man/man1/pg_basebackup.1
12man/man1/pg_config.1 12man/man1/pg_config.1
13man/man1/pg_controldata.1 13man/man1/pg_controldata.1
14man/man1/pg_ctl.1 14man/man1/pg_ctl.1
@@ -950,26 +950,27 @@ share/doc/postgresql/html/reference.html @@ -950,26 +950,27 @@ share/doc/postgresql/html/reference.html
950share/doc/postgresql/html/regress-coverage.html 950share/doc/postgresql/html/regress-coverage.html
951share/doc/postgresql/html/regress-evaluation.html 951share/doc/postgresql/html/regress-evaluation.html
952share/doc/postgresql/html/regress-run.html 952share/doc/postgresql/html/regress-run.html
953share/doc/postgresql/html/regress-tap.html 953share/doc/postgresql/html/regress-tap.html
954share/doc/postgresql/html/regress-variant.html 954share/doc/postgresql/html/regress-variant.html
955share/doc/postgresql/html/regress.html 955share/doc/postgresql/html/regress.html
956share/doc/postgresql/html/release-11-1.html 956share/doc/postgresql/html/release-11-1.html
957share/doc/postgresql/html/release-11-10.html 957share/doc/postgresql/html/release-11-10.html
958share/doc/postgresql/html/release-11-11.html 958share/doc/postgresql/html/release-11-11.html
959share/doc/postgresql/html/release-11-12.html 959share/doc/postgresql/html/release-11-12.html
960share/doc/postgresql/html/release-11-13.html 960share/doc/postgresql/html/release-11-13.html
961share/doc/postgresql/html/release-11-14.html 961share/doc/postgresql/html/release-11-14.html
962share/doc/postgresql/html/release-11-15.html 962share/doc/postgresql/html/release-11-15.html
 963share/doc/postgresql/html/release-11-16.html
963share/doc/postgresql/html/release-11-2.html 964share/doc/postgresql/html/release-11-2.html
964share/doc/postgresql/html/release-11-3.html 965share/doc/postgresql/html/release-11-3.html
965share/doc/postgresql/html/release-11-4.html 966share/doc/postgresql/html/release-11-4.html
966share/doc/postgresql/html/release-11-5.html 967share/doc/postgresql/html/release-11-5.html
967share/doc/postgresql/html/release-11-6.html 968share/doc/postgresql/html/release-11-6.html
968share/doc/postgresql/html/release-11-7.html 969share/doc/postgresql/html/release-11-7.html
969share/doc/postgresql/html/release-11-8.html 970share/doc/postgresql/html/release-11-8.html
970share/doc/postgresql/html/release-11-9.html 971share/doc/postgresql/html/release-11-9.html
971share/doc/postgresql/html/release-11.html 972share/doc/postgresql/html/release-11.html
972share/doc/postgresql/html/release-prior.html 973share/doc/postgresql/html/release-prior.html
973share/doc/postgresql/html/release.html 974share/doc/postgresql/html/release.html
974share/doc/postgresql/html/replication-origins.html 975share/doc/postgresql/html/replication-origins.html
975share/doc/postgresql/html/resources.html 976share/doc/postgresql/html/resources.html

cvs diff -r1.17 -r1.18 pkgsrc/databases/postgresql11-plperl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-plperl/Makefile 2022/04/18 19:10:40 1.17
+++ pkgsrc/databases/postgresql11-plperl/Makefile 2022/05/12 19:02:43 1.18
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1#$ $NetBSD: Makefile,v 1.17 2022/04/18 19:10:40 adam Exp $ 1#$ $NetBSD: Makefile,v 1.18 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-plperl-/} 3PKGNAME= ${DISTNAME:S/-/11-plperl-/}
4PKGREVISION= 1 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server 6DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
8 7
9.include "../../databases/postgresql11/Makefile.common" 8.include "../../databases/postgresql11/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12PERL5_CONFIGURE= no 11PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 12CONFIGURE_ARGS+= --with-perl
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plperl 15BUILD_DIRS= src/pl/plperl
17MAKE_FILE= GNUmakefile 16MAKE_FILE= GNUmakefile

cvs diff -r1.21 -r1.22 pkgsrc/databases/postgresql11-plpython/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-plpython/Makefile 2022/04/18 19:10:40 1.21
+++ pkgsrc/databases/postgresql11-plpython/Makefile 2022/05/12 19:02:43 1.22
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:43 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-plpython-/} 3PKGNAME= ${DISTNAME:S/-/11-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server 6DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
8 7
9.include "../../databases/postgresql11/Makefile.common" 8.include "../../databases/postgresql11/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-python 11CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
17 16

cvs diff -r1.18 -r1.19 pkgsrc/databases/postgresql11-pltcl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-pltcl/Makefile 2022/04/18 19:10:40 1.18
+++ pkgsrc/databases/postgresql11-pltcl/Makefile 2022/05/12 19:02:44 1.19
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.18 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.19 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-pltcl-/} 3PKGNAME= ${DISTNAME:S/-/11-pltcl-/}
4PKGREVISION= 1 
5COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server 6DEPENDS+= postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
8 7
9.include "../../databases/postgresql11/Makefile.common" 8.include "../../databases/postgresql11/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12CONFIGURE_ARGS+= --with-tcl 11CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 12CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 13CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 14TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16BUILD_MAKE_FLAGS= PGXS=1 15BUILD_MAKE_FLAGS= PGXS=1
17 16

cvs diff -r1.21 -r1.22 pkgsrc/databases/postgresql11-server/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-server/Makefile 2022/04/18 19:10:40 1.21
+++ pkgsrc/databases/postgresql11-server/Makefile 2022/05/12 19:02:44 1.22
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:40 adam Exp $ 1# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/11-server-/} 3PKGNAME= ${DISTNAME:S/-/11-server-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
6 5
7# mips has no TAS implementation 6# mips has no TAS implementation
8BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
9 8
10.include "../../databases/postgresql11/Makefile.common" 9.include "../../databases/postgresql11/Makefile.common"
11 10
12TOOLS_BROKEN+= perl 11TOOLS_BROKEN+= perl
13CONFIGURE_ARGS+= --with-openssl 12CONFIGURE_ARGS+= --with-openssl
14 13
15INSTALL_DIRS= src/backend 14INSTALL_DIRS= src/backend
16INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 15INSTALL_DIRS+= src/backend/replication/libpqwalreceiver
17INSTALL_DIRS+= src/backend/replication/pgoutput 16INSTALL_DIRS+= src/backend/replication/pgoutput

cvs diff -r1.21 -r1.22 pkgsrc/databases/postgresql12/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12/Makefile 2022/04/18 19:10:41 1.21
+++ pkgsrc/databases/postgresql12/Makefile 2022/05/12 19:02:44 1.22
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.21 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.22 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-/} 3PKGNAME= ${DISTNAME:S/-/12-/}
4PKGREVISION= 1 
5COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
6 5
7DEPENDS+= postgresql12-client>=${PKGVERSION_NOREV}:../../databases/postgresql12-client 6DEPENDS+= postgresql12-client>=${PKGVERSION_NOREV}:../../databases/postgresql12-client
8DEPENDS+= postgresql12-docs>=${PKGVERSION_NOREV}:../../databases/postgresql12-docs 7DEPENDS+= postgresql12-docs>=${PKGVERSION_NOREV}:../../databases/postgresql12-docs
9DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server 8DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server
10 9
11META_PACKAGE= yes 10META_PACKAGE= yes
12 11
13.include "Makefile.common" 12.include "Makefile.common"
14 13
15.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.18 -r1.19 pkgsrc/databases/postgresql12/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12/Makefile.common 2022/02/11 08:31:22 1.18
+++ pkgsrc/databases/postgresql12/Makefile.common 2022/05/12 19:02:44 1.19
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.18 2022/02/11 08:31:22 adam Exp $ 1# $NetBSD: Makefile.common,v 1.19 2022/05/12 19:02:44 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql12-client/Makefile 11# used by databases/postgresql12-client/Makefile
12# used by databases/postgresql12-contrib/Makefile 12# used by databases/postgresql12-contrib/Makefile
13# used by databases/postgresql12-docs/Makefile 13# used by databases/postgresql12-docs/Makefile
14# used by databases/postgresql12-plperl/Makefile 14# used by databases/postgresql12-plperl/Makefile
15# used by databases/postgresql12-plpython/Makefile 15# used by databases/postgresql12-plpython/Makefile
16# used by databases/postgresql12-pltcl/Makefile 16# used by databases/postgresql12-pltcl/Makefile
17# used by databases/postgresql12-server/Makefile 17# used by databases/postgresql12-server/Makefile
18 18
19DISTNAME= postgresql-12.10 19DISTNAME= postgresql-12.11
20CATEGORIES= databases 20CATEGORIES= databases
21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} 21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
22EXTRACT_SUFX= .tar.bz2 22EXTRACT_SUFX= .tar.bz2
23 23
24MAINTAINER?= adam@NetBSD.org 24MAINTAINER?= adam@NetBSD.org
25HOMEPAGE= https://www.postgresql.org/ 25HOMEPAGE= https://www.postgresql.org/
26LICENSE= postgresql-license 26LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}

cvs diff -r1.15 -r1.16 pkgsrc/databases/postgresql12/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12/distinfo 2022/02/11 08:31:22 1.15
+++ pkgsrc/databases/postgresql12/distinfo 2022/05/12 19:02:44 1.16
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1$NetBSD: distinfo,v 1.15 2022/02/11 08:31:22 adam Exp $ 1$NetBSD: distinfo,v 1.16 2022/05/12 19:02:44 adam Exp $
2 2
3BLAKE2s (postgresql-12.10.tar.bz2) = a8e9dac32b8460b4112e2ce2eb04ba7a5a7541b053dafda7d23a5dcc18b6f402 3BLAKE2s (postgresql-12.11.tar.bz2) = 3b4a4bf765d658a603e7c54d2a6436918b842084780750db7bfb5accb970bf81
4SHA512 (postgresql-12.10.tar.bz2) = befedb14320aa033dc55bbb93bbbec4e67d9cfced63be0e4f631c7495a0fbc6fe280bd6d2fb941d7a2e6b2ac570b7f40d8db7f07a192a81bd9cd63c6c244a9c5 4SHA512 (postgresql-12.11.tar.bz2) = 705e9e1ccf8202062cce61069b5ddb7db5f804dd0736c620640ce5622b9e42fdcbc1417771e77d51aa54beb4562a09b4307f2ff7dec135bd0e31f4941ca36ac8
5Size (postgresql-12.10.tar.bz2) = 20990621 bytes 5Size (postgresql-12.11.tar.bz2) = 21086745 bytes
6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd 8SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af 10SHA1 (patch-contrib_uuid-ossp_Makefile) = 2eff5d539a4501dda45d23bc094a5099a456e0af
11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e 11SHA1 (patch-src_Makefile.global.in) = 335b57afff23a9684ab0a09257665810c1ba2d1e
12SHA1 (patch-src_Makefile.shlib) = 4e093c79345add008a56c10d1c1bc8574f7a38e1 12SHA1 (patch-src_Makefile.shlib) = 4e093c79345add008a56c10d1c1bc8574f7a38e1
13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911 13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911
14SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 14SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
15SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192 15SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192
16SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d 16SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d
17SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae 17SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae

cvs diff -r1.22 -r1.23 pkgsrc/databases/postgresql12-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-client/Makefile 2022/05/05 08:22:38 1.22
+++ pkgsrc/databases/postgresql12-client/Makefile 2022/05/12 19:02:44 1.23
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.22 2022/05/05 08:22:38 nia Exp $ 1# $NetBSD: Makefile,v 1.23 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-client-/} 3PKGNAME= ${DISTNAME:S/-/12-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql12/Makefile.common" 6.include "../../databases/postgresql12/Makefile.common"
8 7
9USE_TOOLS+= gzip msgfmt tar 8USE_TOOLS+= gzip msgfmt tar
10TOOLS_BROKEN+= perl 9TOOLS_BROKEN+= perl
11CONFIGURE_ARGS+= --with-openssl 10CONFIGURE_ARGS+= --with-openssl
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# Override INSTALL script to avoid unprivileged user/group 13# Override INSTALL script to avoid unprivileged user/group
15# leaking into the binary package 14# leaking into the binary package
16CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
17 16

cvs diff -r1.20 -r1.21 pkgsrc/databases/postgresql12-contrib/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-contrib/Makefile 2022/04/18 19:10:41 1.20
+++ pkgsrc/databases/postgresql12-contrib/Makefile 2022/05/12 19:02:44 1.21
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-contrib-/} 3PKGNAME= ${DISTNAME:S/-/12-contrib-/}
4PKGREVISION= 1 
5COMMENT= Contrib subtree of tools and plug-ins 4COMMENT= Contrib subtree of tools and plug-ins
6 5
7.include "../../databases/postgresql12/Makefile.common" 6.include "../../databases/postgresql12/Makefile.common"
8 7
9DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server 8DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server
10 9
11BUILD_MAKE_FLAGS= USE_PGXS=1 10BUILD_MAKE_FLAGS= USE_PGXS=1
12 11
13BUILD_DIRS+= contrib/adminpack 12BUILD_DIRS+= contrib/adminpack
14BUILD_DIRS+= contrib/auth_delay 13BUILD_DIRS+= contrib/auth_delay
15BUILD_DIRS+= contrib/auto_explain 14BUILD_DIRS+= contrib/auto_explain
16BUILD_DIRS+= contrib/btree_gin 15BUILD_DIRS+= contrib/btree_gin
17BUILD_DIRS+= contrib/btree_gist 16BUILD_DIRS+= contrib/btree_gist

cvs diff -r1.14 -r1.15 pkgsrc/databases/postgresql12-docs/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-docs/Makefile 2022/04/18 19:10:41 1.14
+++ pkgsrc/databases/postgresql12-docs/Makefile 2022/05/12 19:02:44 1.15
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.14 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-docs-/} 3PKGNAME= ${DISTNAME:S/-/12-docs-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql12/Makefile.common" 6.include "../../databases/postgresql12/Makefile.common"
8 7
9BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml 8BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml
10BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl 9BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl
11BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular 10BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular
12BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879 11BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879
13BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade 12BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade
14BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt 13BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
15 14
16USE_TOOLS+= gzip tar perl:build 15USE_TOOLS+= gzip tar perl:build
17CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share 16CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share

cvs diff -r1.11 -r1.12 pkgsrc/databases/postgresql12-docs/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-docs/PLIST 2022/02/11 08:31:22 1.11
+++ pkgsrc/databases/postgresql12-docs/PLIST 2022/05/12 19:02:44 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.11 2022/02/11 08:31:22 adam Exp $ 1@comment $NetBSD: PLIST,v 1.12 2022/05/12 19:02:44 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createuser.1 4man/man1/createuser.1
5man/man1/dropdb.1 5man/man1/dropdb.1
6man/man1/dropuser.1 6man/man1/dropuser.1
7man/man1/ecpg.1 7man/man1/ecpg.1
8man/man1/initdb.1 8man/man1/initdb.1
9man/man1/oid2name.1 9man/man1/oid2name.1
10man/man1/pg_archivecleanup.1 10man/man1/pg_archivecleanup.1
11man/man1/pg_basebackup.1 11man/man1/pg_basebackup.1
12man/man1/pg_checksums.1 12man/man1/pg_checksums.1
13man/man1/pg_config.1 13man/man1/pg_config.1
14man/man1/pg_controldata.1 14man/man1/pg_controldata.1
@@ -953,26 +953,27 @@ share/doc/postgresql/html/querytree.html @@ -953,26 +953,27 @@ share/doc/postgresql/html/querytree.html
953share/doc/postgresql/html/rangetypes.html 953share/doc/postgresql/html/rangetypes.html
954share/doc/postgresql/html/recovery-config.html 954share/doc/postgresql/html/recovery-config.html
955share/doc/postgresql/html/reference-client.html 955share/doc/postgresql/html/reference-client.html
956share/doc/postgresql/html/reference-server.html 956share/doc/postgresql/html/reference-server.html
957share/doc/postgresql/html/reference.html 957share/doc/postgresql/html/reference.html
958share/doc/postgresql/html/regress-coverage.html 958share/doc/postgresql/html/regress-coverage.html
959share/doc/postgresql/html/regress-evaluation.html 959share/doc/postgresql/html/regress-evaluation.html
960share/doc/postgresql/html/regress-run.html 960share/doc/postgresql/html/regress-run.html
961share/doc/postgresql/html/regress-tap.html 961share/doc/postgresql/html/regress-tap.html
962share/doc/postgresql/html/regress-variant.html 962share/doc/postgresql/html/regress-variant.html
963share/doc/postgresql/html/regress.html 963share/doc/postgresql/html/regress.html
964share/doc/postgresql/html/release-12-1.html 964share/doc/postgresql/html/release-12-1.html
965share/doc/postgresql/html/release-12-10.html 965share/doc/postgresql/html/release-12-10.html
 966share/doc/postgresql/html/release-12-11.html
966share/doc/postgresql/html/release-12-2.html 967share/doc/postgresql/html/release-12-2.html
967share/doc/postgresql/html/release-12-3.html 968share/doc/postgresql/html/release-12-3.html
968share/doc/postgresql/html/release-12-4.html 969share/doc/postgresql/html/release-12-4.html
969share/doc/postgresql/html/release-12-5.html 970share/doc/postgresql/html/release-12-5.html
970share/doc/postgresql/html/release-12-6.html 971share/doc/postgresql/html/release-12-6.html
971share/doc/postgresql/html/release-12-7.html 972share/doc/postgresql/html/release-12-7.html
972share/doc/postgresql/html/release-12-8.html 973share/doc/postgresql/html/release-12-8.html
973share/doc/postgresql/html/release-12-9.html 974share/doc/postgresql/html/release-12-9.html
974share/doc/postgresql/html/release-12.html 975share/doc/postgresql/html/release-12.html
975share/doc/postgresql/html/release-prior.html 976share/doc/postgresql/html/release-prior.html
976share/doc/postgresql/html/release.html 977share/doc/postgresql/html/release.html
977share/doc/postgresql/html/replication-origins.html 978share/doc/postgresql/html/replication-origins.html
978share/doc/postgresql/html/resources.html 979share/doc/postgresql/html/resources.html

cvs diff -r1.17 -r1.18 pkgsrc/databases/postgresql12-plperl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-plperl/Makefile 2022/04/18 19:10:41 1.17
+++ pkgsrc/databases/postgresql12-plperl/Makefile 2022/05/12 19:02:44 1.18
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1#$ $NetBSD: Makefile,v 1.17 2022/04/18 19:10:41 adam Exp $ 1#$ $NetBSD: Makefile,v 1.18 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-plperl-/} 3PKGNAME= ${DISTNAME:S/-/12-plperl-/}
4PKGREVISION= 1 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server 6DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server
8 7
9.include "../../databases/postgresql12/Makefile.common" 8.include "../../databases/postgresql12/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12PERL5_CONFIGURE= no 11PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 12CONFIGURE_ARGS+= --with-perl
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plperl 15BUILD_DIRS= src/pl/plperl
17MAKE_FILE= GNUmakefile 16MAKE_FILE= GNUmakefile

cvs diff -r1.19 -r1.20 pkgsrc/databases/postgresql12-plpython/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-plpython/Makefile 2022/04/18 19:10:41 1.19
+++ pkgsrc/databases/postgresql12-plpython/Makefile 2022/05/12 19:02:44 1.20
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.19 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.20 2022/05/12 19:02:44 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-plpython-/} 3PKGNAME= ${DISTNAME:S/-/12-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server 6DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server
8 7
9.include "../../databases/postgresql12/Makefile.common" 8.include "../../databases/postgresql12/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-python 11CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
17 16

cvs diff -r1.18 -r1.19 pkgsrc/databases/postgresql12-pltcl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-pltcl/Makefile 2022/04/18 19:10:41 1.18
+++ pkgsrc/databases/postgresql12-pltcl/Makefile 2022/05/12 19:02:45 1.19
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.18 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.19 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-pltcl-/} 3PKGNAME= ${DISTNAME:S/-/12-pltcl-/}
4PKGREVISION= 1 
5COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server 6DEPENDS+= postgresql12-server>=${PKGVERSION_NOREV}:../../databases/postgresql12-server
8 7
9.include "../../databases/postgresql12/Makefile.common" 8.include "../../databases/postgresql12/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-tcl 11CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 12CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 13CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 14TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16BUILD_MAKE_FLAGS= PGXS=1 15BUILD_MAKE_FLAGS= PGXS=1
17 16

cvs diff -r1.20 -r1.21 pkgsrc/databases/postgresql12-server/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql12-server/Makefile 2022/04/18 19:10:41 1.20
+++ pkgsrc/databases/postgresql12-server/Makefile 2022/05/12 19:02:45 1.21
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.20 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.21 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/12-server-/} 3PKGNAME= ${DISTNAME:S/-/12-server-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
6 5
7# mips has no TAS implementation 6# mips has no TAS implementation
8BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
9 8
10.include "../../databases/postgresql12/Makefile.common" 9.include "../../databases/postgresql12/Makefile.common"
11 10
12USE_TOOLS+= msgfmt 11USE_TOOLS+= msgfmt
13TOOLS_BROKEN+= perl 12TOOLS_BROKEN+= perl
14CONFIGURE_ARGS+= --with-openssl 13CONFIGURE_ARGS+= --with-openssl
15 14
16INSTALL_DIRS= src/backend 15INSTALL_DIRS= src/backend
17INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 16INSTALL_DIRS+= src/backend/replication/libpqwalreceiver

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql13/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13/Makefile 2022/04/18 19:10:41 1.12
+++ pkgsrc/databases/postgresql13/Makefile 2022/05/12 19:02:45 1.13
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:41 adam Exp $ 1# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-/} 3PKGNAME= ${DISTNAME:S/-/13-/}
4PKGREVISION= 1 
5COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
6 5
7DEPENDS+= postgresql13-client>=${PKGVERSION_NOREV}:../../databases/postgresql13-client 6DEPENDS+= postgresql13-client>=${PKGVERSION_NOREV}:../../databases/postgresql13-client
8DEPENDS+= postgresql13-docs>=${PKGVERSION_NOREV}:../../databases/postgresql13-docs 7DEPENDS+= postgresql13-docs>=${PKGVERSION_NOREV}:../../databases/postgresql13-docs
9DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server 8DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server
10 9
11META_PACKAGE= yes 10META_PACKAGE= yes
12 11
13.include "Makefile.common" 12.include "Makefile.common"
14 13
15.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql13/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13/distinfo 2022/02/11 08:31:23 1.12
+++ pkgsrc/databases/postgresql13/distinfo 2022/05/12 19:02:45 1.13
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.12 2022/02/11 08:31:23 adam Exp $ 1$NetBSD: distinfo,v 1.13 2022/05/12 19:02:45 adam Exp $
2 2
3BLAKE2s (postgresql-13.6.tar.bz2) = 9441445ed8495e6f19955d8051829b471279dad9a1ecb8b59aed81786498a473 3BLAKE2s (postgresql-13.7.tar.bz2) = 093828d075b411a73a1a8112697e9b5e2841ffc7e70951bf90c8daff47e29d8f
4SHA512 (postgresql-13.6.tar.bz2) = 2852726a3031b8d469f1c38f3019af02fc5afe40ec27b22288a29acefd30c63a98806bce88a214d0c2f9177f547b0b5010ad64e70bcbe2c2f1d97a27ae1984f8 4SHA512 (postgresql-13.7.tar.bz2) = 9254f21519c8d4e926f70082503bb5593c91064a3d2a4ea18ac503dfd9aa94751d6f01ce00fca9fec9b2b7af40caf8d0951b661dd8be4d6aa87c1e35b6fa7a41
5Size (postgresql-13.6.tar.bz2) = 21257213 bytes 5Size (postgresql-13.7.tar.bz2) = 21364433 bytes
6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
8SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9 8SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9
9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
10SHA1 (patch-contrib_uuid-ossp_Makefile) = 65e975c16f2604a44961ce0ef80be28f13b798c3 10SHA1 (patch-contrib_uuid-ossp_Makefile) = 65e975c16f2604a44961ce0ef80be28f13b798c3
11SHA1 (patch-src_Makefile.global.in) = 9690bd0e4e967dbb0f83376a9c9848e34efed74c 11SHA1 (patch-src_Makefile.global.in) = 9690bd0e4e967dbb0f83376a9c9848e34efed74c
12SHA1 (patch-src_Makefile.shlib) = 3bcdbd0d9e3c0609743e72c3cafb83b74c0e412f 12SHA1 (patch-src_Makefile.shlib) = 3bcdbd0d9e3c0609743e72c3cafb83b74c0e412f
13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911 13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911
14SHA1 (patch-src_fe__utils_Makefile) = 9d73d39d8a275f5c488f7cb46f05e1d0320c7e77 14SHA1 (patch-src_fe__utils_Makefile) = 9d73d39d8a275f5c488f7cb46f05e1d0320c7e77
15SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 15SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
16SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192 16SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192
17SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d 17SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d
18SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae 18SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae

cvs diff -r1.11 -r1.12 pkgsrc/databases/postgresql13/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13/Makefile.common 2022/02/11 08:31:23 1.11
+++ pkgsrc/databases/postgresql13/Makefile.common 2022/05/12 19:02:45 1.12
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.11 2022/02/11 08:31:23 adam Exp $ 1# $NetBSD: Makefile.common,v 1.12 2022/05/12 19:02:45 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql13-client/Makefile 11# used by databases/postgresql13-client/Makefile
12# used by databases/postgresql13-contrib/Makefile 12# used by databases/postgresql13-contrib/Makefile
13# used by databases/postgresql13-docs/Makefile 13# used by databases/postgresql13-docs/Makefile
14# used by databases/postgresql13-plperl/Makefile 14# used by databases/postgresql13-plperl/Makefile
15# used by databases/postgresql13-plpython/Makefile 15# used by databases/postgresql13-plpython/Makefile
16# used by databases/postgresql13-pltcl/Makefile 16# used by databases/postgresql13-pltcl/Makefile
17# used by databases/postgresql13-server/Makefile 17# used by databases/postgresql13-server/Makefile
18 18
19DISTNAME= postgresql-13.6 19DISTNAME= postgresql-13.7
20CATEGORIES= databases 20CATEGORIES= databases
21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} 21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
22EXTRACT_SUFX= .tar.bz2 22EXTRACT_SUFX= .tar.bz2
23 23
24MAINTAINER?= adam@NetBSD.org 24MAINTAINER?= adam@NetBSD.org
25HOMEPAGE= https://www.postgresql.org/ 25HOMEPAGE= https://www.postgresql.org/
26LICENSE= postgresql-license 26LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}

cvs diff -r1.14 -r1.15 pkgsrc/databases/postgresql13-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-client/Makefile 2022/05/05 08:22:38 1.14
+++ pkgsrc/databases/postgresql13-client/Makefile 2022/05/12 19:02:45 1.15
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.14 2022/05/05 08:22:38 nia Exp $ 1# $NetBSD: Makefile,v 1.15 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-client-/} 3PKGNAME= ${DISTNAME:S/-/13-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql13/Makefile.common" 6.include "../../databases/postgresql13/Makefile.common"
8 7
9USE_TOOLS+= gzip msgfmt tar 8USE_TOOLS+= gzip msgfmt tar
10TOOLS_BROKEN+= perl 9TOOLS_BROKEN+= perl
11CONFIGURE_ARGS+= --with-openssl 10CONFIGURE_ARGS+= --with-openssl
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# Override INSTALL script to avoid unprivileged user/group 13# Override INSTALL script to avoid unprivileged user/group
15# leaking into the binary package 14# leaking into the binary package
16CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
17 16

cvs diff -r1.13 -r1.14 pkgsrc/databases/postgresql13-contrib/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-contrib/Makefile 2022/04/18 19:10:42 1.13
+++ pkgsrc/databases/postgresql13-contrib/Makefile 2022/05/12 19:02:45 1.14
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.13 2022/04/18 19:10:42 adam Exp $ 1# $NetBSD: Makefile,v 1.14 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-contrib-/} 3PKGNAME= ${DISTNAME:S/-/13-contrib-/}
4PKGREVISION= 1 
5COMMENT= Contrib subtree of tools and plug-ins 4COMMENT= Contrib subtree of tools and plug-ins
6 5
7.include "../../databases/postgresql13/Makefile.common" 6.include "../../databases/postgresql13/Makefile.common"
8 7
9DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server 8DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server
10 9
11BUILD_MAKE_FLAGS= USE_PGXS=1 10BUILD_MAKE_FLAGS= USE_PGXS=1
12 11
13BUILD_DIRS+= contrib/adminpack 12BUILD_DIRS+= contrib/adminpack
14BUILD_DIRS+= contrib/auth_delay 13BUILD_DIRS+= contrib/auth_delay
15BUILD_DIRS+= contrib/auto_explain 14BUILD_DIRS+= contrib/auto_explain
16BUILD_DIRS+= contrib/btree_gin 15BUILD_DIRS+= contrib/btree_gin
17BUILD_DIRS+= contrib/btree_gist 16BUILD_DIRS+= contrib/btree_gist

cvs diff -r1.10 -r1.11 pkgsrc/databases/postgresql13-docs/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-docs/Makefile 2022/04/18 19:10:42 1.10
+++ pkgsrc/databases/postgresql13-docs/Makefile 2022/05/12 19:02:45 1.11
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.10 2022/04/18 19:10:42 adam Exp $ 1# $NetBSD: Makefile,v 1.11 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-docs-/} 3PKGNAME= ${DISTNAME:S/-/13-docs-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql13/Makefile.common" 6.include "../../databases/postgresql13/Makefile.common"
8 7
9BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml 8BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml
10BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl 9BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl
11BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular 10BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular
12BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879 11BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879
13BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade 12BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade
14BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt 13BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
15 14
16USE_TOOLS+= gzip tar perl:build 15USE_TOOLS+= gzip tar perl:build
17CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share 16CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share

cvs diff -r1.7 -r1.8 pkgsrc/databases/postgresql13-docs/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-docs/PLIST 2022/02/11 08:31:23 1.7
+++ pkgsrc/databases/postgresql13-docs/PLIST 2022/05/12 19:02:45 1.8
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.7 2022/02/11 08:31:23 adam Exp $ 1@comment $NetBSD: PLIST,v 1.8 2022/05/12 19:02:45 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createuser.1 4man/man1/createuser.1
5man/man1/dropdb.1 5man/man1/dropdb.1
6man/man1/dropuser.1 6man/man1/dropuser.1
7man/man1/ecpg.1 7man/man1/ecpg.1
8man/man1/initdb.1 8man/man1/initdb.1
9man/man1/oid2name.1 9man/man1/oid2name.1
10man/man1/pg_archivecleanup.1 10man/man1/pg_archivecleanup.1
11man/man1/pg_basebackup.1 11man/man1/pg_basebackup.1
12man/man1/pg_checksums.1 12man/man1/pg_checksums.1
13man/man1/pg_config.1 13man/man1/pg_config.1
14man/man1/pg_controldata.1 14man/man1/pg_controldata.1
@@ -965,26 +965,27 @@ share/doc/postgresql/html/reference-serv @@ -965,26 +965,27 @@ share/doc/postgresql/html/reference-serv
965share/doc/postgresql/html/reference.html 965share/doc/postgresql/html/reference.html
966share/doc/postgresql/html/regress-coverage.html 966share/doc/postgresql/html/regress-coverage.html
967share/doc/postgresql/html/regress-evaluation.html 967share/doc/postgresql/html/regress-evaluation.html
968share/doc/postgresql/html/regress-run.html 968share/doc/postgresql/html/regress-run.html
969share/doc/postgresql/html/regress-tap.html 969share/doc/postgresql/html/regress-tap.html
970share/doc/postgresql/html/regress-variant.html 970share/doc/postgresql/html/regress-variant.html
971share/doc/postgresql/html/regress.html 971share/doc/postgresql/html/regress.html
972share/doc/postgresql/html/release-13-1.html 972share/doc/postgresql/html/release-13-1.html
973share/doc/postgresql/html/release-13-2.html 973share/doc/postgresql/html/release-13-2.html
974share/doc/postgresql/html/release-13-3.html 974share/doc/postgresql/html/release-13-3.html
975share/doc/postgresql/html/release-13-4.html 975share/doc/postgresql/html/release-13-4.html
976share/doc/postgresql/html/release-13-5.html 976share/doc/postgresql/html/release-13-5.html
977share/doc/postgresql/html/release-13-6.html 977share/doc/postgresql/html/release-13-6.html
 978share/doc/postgresql/html/release-13-7.html
978share/doc/postgresql/html/release-13.html 979share/doc/postgresql/html/release-13.html
979share/doc/postgresql/html/release-prior.html 980share/doc/postgresql/html/release-prior.html
980share/doc/postgresql/html/release.html 981share/doc/postgresql/html/release.html
981share/doc/postgresql/html/replication-origins.html 982share/doc/postgresql/html/replication-origins.html
982share/doc/postgresql/html/resources.html 983share/doc/postgresql/html/resources.html
983share/doc/postgresql/html/role-attributes.html 984share/doc/postgresql/html/role-attributes.html
984share/doc/postgresql/html/role-membership.html 985share/doc/postgresql/html/role-membership.html
985share/doc/postgresql/html/role-removal.html 986share/doc/postgresql/html/role-removal.html
986share/doc/postgresql/html/routine-reindex.html 987share/doc/postgresql/html/routine-reindex.html
987share/doc/postgresql/html/routine-vacuuming.html 988share/doc/postgresql/html/routine-vacuuming.html
988share/doc/postgresql/html/row-estimation-examples.html 989share/doc/postgresql/html/row-estimation-examples.html
989share/doc/postgresql/html/rowtypes.html 990share/doc/postgresql/html/rowtypes.html
990share/doc/postgresql/html/rule-system.html 991share/doc/postgresql/html/rule-system.html

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-plperl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-plperl/Makefile 2022/04/18 19:10:42 1.12
+++ pkgsrc/databases/postgresql13-plperl/Makefile 2022/05/12 19:02:45 1.13
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1#$ $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $ 1#$ $NetBSD: Makefile,v 1.13 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-plperl-/} 3PKGNAME= ${DISTNAME:S/-/13-plperl-/}
4PKGREVISION= 1 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server 6DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server
8 7
9.include "../../databases/postgresql13/Makefile.common" 8.include "../../databases/postgresql13/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12PERL5_CONFIGURE= no 11PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 12CONFIGURE_ARGS+= --with-perl
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plperl 15BUILD_DIRS= src/pl/plperl
17MAKE_FILE= GNUmakefile 16MAKE_FILE= GNUmakefile

cvs diff -r1.13 -r1.14 pkgsrc/databases/postgresql13-plpython/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-plpython/Makefile 2022/04/18 19:10:42 1.13
+++ pkgsrc/databases/postgresql13-plpython/Makefile 2022/05/12 19:02:45 1.14
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.13 2022/04/18 19:10:42 adam Exp $ 1# $NetBSD: Makefile,v 1.14 2022/05/12 19:02:45 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-plpython-/} 3PKGNAME= ${DISTNAME:S/-/13-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server 6DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server
8 7
9.include "../../databases/postgresql13/Makefile.common" 8.include "../../databases/postgresql13/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-python 11CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
17 16

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-pltcl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-pltcl/Makefile 2022/04/18 19:10:42 1.12
+++ pkgsrc/databases/postgresql13-pltcl/Makefile 2022/05/12 19:02:46 1.13
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $ 1# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-pltcl-/} 3PKGNAME= ${DISTNAME:S/-/13-pltcl-/}
4PKGREVISION= 1 
5COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server 6DEPENDS+= postgresql13-server>=${PKGVERSION_NOREV}:../../databases/postgresql13-server
8 7
9.include "../../databases/postgresql13/Makefile.common" 8.include "../../databases/postgresql13/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-tcl 11CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 12CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 13CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 14TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16BUILD_MAKE_FLAGS= PGXS=1 15BUILD_MAKE_FLAGS= PGXS=1
17 16

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql13-server/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql13-server/Makefile 2022/04/18 19:10:42 1.12
+++ pkgsrc/databases/postgresql13-server/Makefile 2022/05/12 19:02:46 1.13
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.12 2022/04/18 19:10:42 adam Exp $ 1# $NetBSD: Makefile,v 1.13 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/13-server-/} 3PKGNAME= ${DISTNAME:S/-/13-server-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
6 5
7# mips has no TAS implementation 6# mips has no TAS implementation
8BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
9 8
10.include "../../databases/postgresql13/Makefile.common" 9.include "../../databases/postgresql13/Makefile.common"
11 10
12USE_TOOLS+= msgfmt 11USE_TOOLS+= msgfmt
13TOOLS_BROKEN+= perl 12TOOLS_BROKEN+= perl
14CONFIGURE_ARGS+= --with-openssl 13CONFIGURE_ARGS+= --with-openssl
15 14
16INSTALL_DIRS= src/backend 15INSTALL_DIRS= src/backend
17INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 16INSTALL_DIRS+= src/backend/replication/libpqwalreceiver

cvs diff -r1.7 -r1.8 pkgsrc/databases/postgresql14/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14/Makefile 2022/05/12 13:03:57 1.7
+++ pkgsrc/databases/postgresql14/Makefile 2022/05/12 19:02:46 1.8
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.7 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.8 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-/} 3PKGNAME= ${DISTNAME:S/-/14-/}
4PKGREVISION= 2 
5COMMENT= Robust, next generation, object-relational DBMS 4COMMENT= Robust, next generation, object-relational DBMS
6 5
7DEPENDS+= postgresql14-client>=${PKGVERSION_NOREV}:../../databases/postgresql14-client 6DEPENDS+= postgresql14-client>=${PKGVERSION_NOREV}:../../databases/postgresql14-client
8DEPENDS+= postgresql14-docs>=${PKGVERSION_NOREV}:../../databases/postgresql14-docs 7DEPENDS+= postgresql14-docs>=${PKGVERSION_NOREV}:../../databases/postgresql14-docs
9DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server 8DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server
10 9
11META_PACKAGE= yes 10META_PACKAGE= yes
12 11
13.include "Makefile.common" 12.include "Makefile.common"
14 13
15.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql14/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14/Makefile.common 2022/02/11 08:31:24 1.3
+++ pkgsrc/databases/postgresql14/Makefile.common 2022/05/12 19:02:46 1.4
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.3 2022/02/11 08:31:24 adam Exp $ 1# $NetBSD: Makefile.common,v 1.4 2022/05/12 19:02:46 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# <lang>-postgresql client-side interface to PostgreSQL 8# <lang>-postgresql client-side interface to PostgreSQL
9# postgresql-<lang> server-side module for PostgreSQL backend 9# postgresql-<lang> server-side module for PostgreSQL backend
10# 10#
11# used by databases/postgresql14-client/Makefile 11# used by databases/postgresql14-client/Makefile
12# used by databases/postgresql14-contrib/Makefile 12# used by databases/postgresql14-contrib/Makefile
13# used by databases/postgresql14-docs/Makefile 13# used by databases/postgresql14-docs/Makefile
14# used by databases/postgresql14-plperl/Makefile 14# used by databases/postgresql14-plperl/Makefile
15# used by databases/postgresql14-plpython/Makefile 15# used by databases/postgresql14-plpython/Makefile
16# used by databases/postgresql14-pltcl/Makefile 16# used by databases/postgresql14-pltcl/Makefile
17# used by databases/postgresql14-server/Makefile 17# used by databases/postgresql14-server/Makefile
18 18
19DISTNAME= postgresql-14.2 19DISTNAME= postgresql-14.3
20CATEGORIES= databases 20CATEGORIES= databases
21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/} 21MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
22EXTRACT_SUFX= .tar.bz2 22EXTRACT_SUFX= .tar.bz2
23 23
24MAINTAINER?= adam@NetBSD.org 24MAINTAINER?= adam@NetBSD.org
25HOMEPAGE= https://www.postgresql.org/ 25HOMEPAGE= https://www.postgresql.org/
26LICENSE= postgresql-license 26LICENSE= postgresql-license
27 27
28CONFLICTS+= postgresql-[0-9]* 28CONFLICTS+= postgresql-[0-9]*
29CONFLICTS+= postgresql[2-9][0-9]-[0-9]* 29CONFLICTS+= postgresql[2-9][0-9]-[0-9]*
30 30
31.if !empty(PKGNAME:M*-*-*) 31.if !empty(PKGNAME:M*-*-*)
32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 32module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14/distinfo 2022/02/11 08:31:24 1.5
+++ pkgsrc/databases/postgresql14/distinfo 2022/05/12 19:02:46 1.6
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1$NetBSD: distinfo,v 1.5 2022/02/11 08:31:24 adam Exp $ 1$NetBSD: distinfo,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3BLAKE2s (postgresql-14.2.tar.bz2) = 065346daa76b51cabcb161b800f5dbd44399525598868e8e0cafb431f4e2650e 3BLAKE2s (postgresql-14.3.tar.bz2) = 70e8f4efa10e09ac9904b039c977a868ff5a3472453925faa7971d49fc9f4ae0
4SHA512 (postgresql-14.2.tar.bz2) = 19aeb6528605dbcf5df84048b2eed8f54b202576134d3fe3900bb8f073179c4258d2581acd745887e7e6fa86ebdb5f7b159ffaa0a645d601efee7c5f7730456b 4SHA512 (postgresql-14.3.tar.bz2) = 70e6f67b5729a23f80b92b04e3fad2e09596b939660e3ddebf499d06af946459a45a019279e05413673e7b65d09a28a0440ed3c2ae565068466ed37e2d4f6f17
5Size (postgresql-14.2.tar.bz2) = 21964841 bytes 5Size (postgresql-14.3.tar.bz2) = 22092190 bytes
6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 6SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 7SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
8SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9 8SHA1 (patch-configure) = 142ba9dc85a2408802e4b9e4943b775312d577c9
9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 9SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
10SHA1 (patch-contrib_uuid-ossp_Makefile) = 65e975c16f2604a44961ce0ef80be28f13b798c3 10SHA1 (patch-contrib_uuid-ossp_Makefile) = 65e975c16f2604a44961ce0ef80be28f13b798c3
11SHA1 (patch-src_Makefile.global.in) = 9690bd0e4e967dbb0f83376a9c9848e34efed74c 11SHA1 (patch-src_Makefile.global.in) = 9690bd0e4e967dbb0f83376a9c9848e34efed74c
12SHA1 (patch-src_Makefile.shlib) = 3bcdbd0d9e3c0609743e72c3cafb83b74c0e412f 12SHA1 (patch-src_Makefile.shlib) = 3bcdbd0d9e3c0609743e72c3cafb83b74c0e412f
13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911 13SHA1 (patch-src_backend_Makefile) = 736ff7db09faf167c6e40a45a1099836f3e98911
14SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 14SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
15SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192 15SHA1 (patch-src_makefiles_Makefile.solaris) = 10bf43bee54a6a1b6086c1652076544b05bf0192
16SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d 16SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d
17SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae 17SHA1 (patch-src_pl_plperl_plperl.h) = 4ea16bbb0f9f98a609e67ceb858f22cc77be89ae

cvs diff -r1.6 -r1.7 pkgsrc/databases/postgresql14-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-client/Makefile 2022/05/12 13:03:57 1.6
+++ pkgsrc/databases/postgresql14-client/Makefile 2022/05/12 19:02:46 1.7
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.7 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-client-/} 3PKGNAME= ${DISTNAME:S/-/14-client-/}
4PKGREVISION= 2 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql14/Makefile.common" 6.include "../../databases/postgresql14/Makefile.common"
8 7
9USE_TOOLS+= gzip msgfmt tar 8USE_TOOLS+= gzip msgfmt tar
10TOOLS_BROKEN+= perl 9TOOLS_BROKEN+= perl
11CONFIGURE_ARGS+= --with-openssl 10CONFIGURE_ARGS+= --with-openssl
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# Override INSTALL script to avoid unprivileged user/group 13# Override INSTALL script to avoid unprivileged user/group
15# leaking into the binary package 14# leaking into the binary package
16CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
17 16

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-contrib/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-contrib/Makefile 2022/05/12 13:03:57 1.5
+++ pkgsrc/databases/postgresql14-contrib/Makefile 2022/05/12 19:02:46 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-contrib-/} 3PKGNAME= ${DISTNAME:S/-/14-contrib-/}
4PKGREVISION= 2 
5COMMENT= Contrib subtree of tools and plug-ins 4COMMENT= Contrib subtree of tools and plug-ins
6 5
7.include "../../databases/postgresql14/Makefile.common" 6.include "../../databases/postgresql14/Makefile.common"
8 7
9DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server 8DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server
10 9
11BUILD_MAKE_FLAGS= USE_PGXS=1 10BUILD_MAKE_FLAGS= USE_PGXS=1
12 11
13BUILD_DIRS+= contrib/adminpack 12BUILD_DIRS+= contrib/adminpack
14BUILD_DIRS+= contrib/auth_delay 13BUILD_DIRS+= contrib/auth_delay
15BUILD_DIRS+= contrib/auto_explain 14BUILD_DIRS+= contrib/auto_explain
16BUILD_DIRS+= contrib/btree_gin 15BUILD_DIRS+= contrib/btree_gin
17BUILD_DIRS+= contrib/btree_gist 16BUILD_DIRS+= contrib/btree_gist

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-docs/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-docs/Makefile 2022/05/12 13:03:57 1.5
+++ pkgsrc/databases/postgresql14-docs/Makefile 2022/05/12 19:02:46 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-docs-/} 3PKGNAME= ${DISTNAME:S/-/14-docs-/}
4PKGREVISION= 2 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql14/Makefile.common" 6.include "../../databases/postgresql14/Makefile.common"
8 7
9BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml 8BUILD_DEPENDS+= docbook-xml>=4.5:../../textproc/docbook-xml
10BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl 9BUILD_DEPENDS+= docbook-xsl>=1.75.2:../../textproc/docbook-xsl
11BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular 10BUILD_DEPENDS+= dsssl-docbook-modular>=1.79:../../textproc/dsssl-docbook-modular
12BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879 11BUILD_DEPENDS+= iso8879>=1986:../../textproc/iso8879
13BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade 12BUILD_DEPENDS+= openjade>=1.3.2:../../textproc/openjade
14BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt 13BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
15 14
16USE_TOOLS+= gzip tar perl:build 15USE_TOOLS+= gzip tar perl:build
17CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share 16CONFIGURE_ARGS+= --datarootdir=${PREFIX}/share

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql14-docs/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-docs/PLIST 2022/02/11 08:31:24 1.3
+++ pkgsrc/databases/postgresql14-docs/PLIST 2022/05/12 19:02:46 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2022/02/11 08:31:24 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2022/05/12 19:02:46 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createuser.1 4man/man1/createuser.1
5man/man1/dropdb.1 5man/man1/dropdb.1
6man/man1/dropuser.1 6man/man1/dropuser.1
7man/man1/ecpg.1 7man/man1/ecpg.1
8man/man1/initdb.1 8man/man1/initdb.1
9man/man1/oid2name.1 9man/man1/oid2name.1
10man/man1/pg_amcheck.1 10man/man1/pg_amcheck.1
11man/man1/pg_archivecleanup.1 11man/man1/pg_archivecleanup.1
12man/man1/pg_basebackup.1 12man/man1/pg_basebackup.1
13man/man1/pg_checksums.1 13man/man1/pg_checksums.1
14man/man1/pg_config.1 14man/man1/pg_config.1
@@ -977,26 +977,27 @@ share/doc/postgresql/html/querytree.html @@ -977,26 +977,27 @@ share/doc/postgresql/html/querytree.html
977share/doc/postgresql/html/rangetypes.html 977share/doc/postgresql/html/rangetypes.html
978share/doc/postgresql/html/recovery-config.html 978share/doc/postgresql/html/recovery-config.html
979share/doc/postgresql/html/reference-client.html 979share/doc/postgresql/html/reference-client.html
980share/doc/postgresql/html/reference-server.html 980share/doc/postgresql/html/reference-server.html
981share/doc/postgresql/html/reference.html 981share/doc/postgresql/html/reference.html
982share/doc/postgresql/html/regress-coverage.html 982share/doc/postgresql/html/regress-coverage.html
983share/doc/postgresql/html/regress-evaluation.html 983share/doc/postgresql/html/regress-evaluation.html
984share/doc/postgresql/html/regress-run.html 984share/doc/postgresql/html/regress-run.html
985share/doc/postgresql/html/regress-tap.html 985share/doc/postgresql/html/regress-tap.html
986share/doc/postgresql/html/regress-variant.html 986share/doc/postgresql/html/regress-variant.html
987share/doc/postgresql/html/regress.html 987share/doc/postgresql/html/regress.html
988share/doc/postgresql/html/release-14-1.html 988share/doc/postgresql/html/release-14-1.html
989share/doc/postgresql/html/release-14-2.html 989share/doc/postgresql/html/release-14-2.html
 990share/doc/postgresql/html/release-14-3.html
990share/doc/postgresql/html/release-14.html 991share/doc/postgresql/html/release-14.html
991share/doc/postgresql/html/release-prior.html 992share/doc/postgresql/html/release-prior.html
992share/doc/postgresql/html/release.html 993share/doc/postgresql/html/release.html
993share/doc/postgresql/html/replication-origins.html 994share/doc/postgresql/html/replication-origins.html
994share/doc/postgresql/html/resources.html 995share/doc/postgresql/html/resources.html
995share/doc/postgresql/html/role-attributes.html 996share/doc/postgresql/html/role-attributes.html
996share/doc/postgresql/html/role-membership.html 997share/doc/postgresql/html/role-membership.html
997share/doc/postgresql/html/role-removal.html 998share/doc/postgresql/html/role-removal.html
998share/doc/postgresql/html/routine-reindex.html 999share/doc/postgresql/html/routine-reindex.html
999share/doc/postgresql/html/routine-vacuuming.html 1000share/doc/postgresql/html/routine-vacuuming.html
1000share/doc/postgresql/html/row-estimation-examples.html 1001share/doc/postgresql/html/row-estimation-examples.html
1001share/doc/postgresql/html/rowtypes.html 1002share/doc/postgresql/html/rowtypes.html
1002share/doc/postgresql/html/rule-system.html 1003share/doc/postgresql/html/rule-system.html

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-plperl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-plperl/Makefile 2022/05/12 13:03:57 1.5
+++ pkgsrc/databases/postgresql14-plperl/Makefile 2022/05/12 19:02:46 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1#$ $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $ 1#$ $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-plperl-/} 3PKGNAME= ${DISTNAME:S/-/14-plperl-/}
4PKGREVISION= 2 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server 6DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server
8 7
9.include "../../databases/postgresql14/Makefile.common" 8.include "../../databases/postgresql14/Makefile.common"
10 9
11USE_TOOLS+= perl 10USE_TOOLS+= perl
12PERL5_CONFIGURE= no 11PERL5_CONFIGURE= no
13CONFIGURE_ARGS+= --with-perl 12CONFIGURE_ARGS+= --with-perl
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plperl 15BUILD_DIRS= src/pl/plperl
17MAKE_FILE= GNUmakefile 16MAKE_FILE= GNUmakefile

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-plpython/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-plpython/Makefile 2022/05/12 13:03:57 1.5
+++ pkgsrc/databases/postgresql14-plpython/Makefile 2022/05/12 19:02:46 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-plpython-/} 3PKGNAME= ${DISTNAME:S/-/14-plpython-/}
4PKGREVISION= 2 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server 6DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server
8 7
9.include "../../databases/postgresql14/Makefile.common" 8.include "../../databases/postgresql14/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-python 11CONFIGURE_ARGS+= --with-python
13CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
14BUILD_MAKE_FLAGS= PGXS=1 13BUILD_MAKE_FLAGS= PGXS=1
15 14
16BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
17 16

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-pltcl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-pltcl/Makefile 2022/05/12 13:03:57 1.5
+++ pkgsrc/databases/postgresql14-pltcl/Makefile 2022/05/12 19:02:46 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:57 abs Exp $ 1# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:46 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-pltcl-/} 3PKGNAME= ${DISTNAME:S/-/14-pltcl-/}
4PKGREVISION= 2 
5COMMENT= PL/Tcl procedural language for the PostgreSQL backend 4COMMENT= PL/Tcl procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server 6DEPENDS+= postgresql14-server>=${PKGVERSION_NOREV}:../../databases/postgresql14-server
8 7
9.include "../../databases/postgresql14/Makefile.common" 8.include "../../databases/postgresql14/Makefile.common"
10 9
11TOOLS_BROKEN+= perl 10TOOLS_BROKEN+= perl
12CONFIGURE_ARGS+= --with-tcl 11CONFIGURE_ARGS+= --with-tcl
13CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib" 12CONFIGURE_ARGS+= --with-tclconfig="${BUILDLINK_PREFIX.tcl}/lib"
14CONFIGURE_ENV+= TCLSH="${TCLSH}" 13CONFIGURE_ENV+= TCLSH="${TCLSH}"
15TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh 14TCLSH= ${BUILDLINK_PREFIX.tcl}/bin/tclsh
16BUILD_MAKE_FLAGS= PGXS=1 15BUILD_MAKE_FLAGS= PGXS=1
17 16

cvs diff -r1.5 -r1.6 pkgsrc/databases/postgresql14-server/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql14-server/Makefile 2022/05/12 13:03:58 1.5
+++ pkgsrc/databases/postgresql14-server/Makefile 2022/05/12 19:02:47 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2022/05/12 13:03:58 abs Exp $ 1# $NetBSD: Makefile,v 1.6 2022/05/12 19:02:47 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/14-server-/} 3PKGNAME= ${DISTNAME:S/-/14-server-/}
4PKGREVISION= 2 
5COMMENT= PostgreSQL database server programs 4COMMENT= PostgreSQL database server programs
6 5
7# mips has no TAS implementation 6# mips has no TAS implementation
8BROKEN_ON_PLATFORM= *-*-mips 7BROKEN_ON_PLATFORM= *-*-mips
9 8
10.include "../../databases/postgresql14/Makefile.common" 9.include "../../databases/postgresql14/Makefile.common"
11 10
12USE_TOOLS+= msgfmt 11USE_TOOLS+= msgfmt
13TOOLS_BROKEN+= perl 12TOOLS_BROKEN+= perl
14CONFIGURE_ARGS+= --with-openssl 13CONFIGURE_ARGS+= --with-openssl
15 14
16INSTALL_DIRS= src/backend 15INSTALL_DIRS= src/backend
17INSTALL_DIRS+= src/backend/replication/libpqwalreceiver 16INSTALL_DIRS+= src/backend/replication/libpqwalreceiver