Mon May 13 20:38:13 2019 UTC ()
postgresqlNN: updated to the latest

PostgreSQL 11.3, 10.8, 9.6.13, 9.5.17, and 9.4.22 Released!
The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 11.3, 10.8, 9.6.13, 9.5.17, and 9.4.22. This release fixes two security issues in the PostgreSQL server, a security issue found in two of the PostgreSQL Windows installers, and over 60 bugs reported over the last three months.

Security Issues

Four security vulnerabilities have been closed by this release:

CVE-2019-10127: BigSQL Windows installer does not clear permissive ACL entries
CVE-2019-10128: EnterpriseDB Windows installer does not clear permissive ACL entries
Due to both the EnterpriseDB and BigSQL Windows installers not locking down the permissions of the PostgreSQL binary installation directory and the data directory, an unprivileged Windows user account and an unprivileged PostgreSQL account could cause the PostgreSQL service account to execute arbitrary code.

This vulnerability is present in all supported versions of PostgreSQL for these installers, and possibly exists in older versions. Both sets of installers have fixed the permissions for these directories for both new and existing installations. If you have installed PostgreSQL on Windows using other methods, we advise that you check that your PostgreSQL binary directories are writable only to trusted users and that your data directories are only accessible to trusted users.

The PostgreSQL project thanks Conner Jones for reporting this problem.

CVE-2019-10129: Memory disclosure in partition routing
Prior to this release, a user running PostgreSQL 11 can read arbitrary bytes of server memory by executing a purpose-crafted INSERT statement to a partitioned table.

CVE-2019-10130: Selectivity estimators bypass row security policies
PostgreSQL maintains statistics for tables by sampling data available in columns; this data is consulted during the query planning process. Prior to this release, a user able to execute SQL queries with permissions to read a given column could craft a leaky operator that could read whatever data had been sampled from that column. If this happened to include values from rows that the user is forbidden to see by a row security policy, the user could effectively bypass the policy. This is fixed by only allowing a non-leakproof operator to use this data if there are no relevant row security policies for the table.

This issue is present in PostgreSQL 9.5, 9.6, 10, and 11. The PostgreSQL project thanks Dean Rasheed for reporting this problem.

Bug Fixes and Improvements

This update also fixes over 60 bugs that were reported in the last several months. Some of these issues affect only version 11, but many affect all supported versions.

Some of these fixes include:

Several catalog corruption fixes, including one related to running ALTER TABLE on a partitioned table
Several fixes for partitioning
Avoid server crash when an error occurs while trying to persist a cursor query across a transaction commit
Avoid O(N^2) performance issue when rolling back a transaction that created many tables
Fix possible ���could not access status of transaction��� failures in txid_status()
Fix updatable views to handle explicit DEFAULT items in INSERT .. VALUES statements where there are multiple VALUES rows
Fix CREATE VIEW to allow zero-column views
Add missing support for the CREATE TABLE IF NOT EXISTS .. AS EXECUTE .. statement
Ensure that sub-SELECTs appearing in row-level-security policy expressions are executed with the correct user's permissions
Accept XML documents as valid values of type xml when xmloption is set to content, as required by SQL:2006 and later
Fix incompatibility of GIN-index WAL records that were introduced in 11.2, 10.7, 9.6.12, 9.5.16, and 9.4.21 that affected replica servers running these versions reading in changes to GIN indexes from primary servers of older versions
Several memory leak fixes as well as fixes to management of dynamic shared memory
Relax panics on fsync and sync_file_range failures for certain cases where a failure indicated "operation not supported"
Several fixes to the query planner, several of which should lead to planning improvements
Fix race condition in which a hot-standby postmaster could fail to shut down after receiving a smart-shutdown request
Several fixes for SCRAM authentication
Fix handling of lc_time settings that imply an encoding different from the database's encoding
Create the current_logfiles file with the same permissions as other files in the server's data directory
Several ecpg fixes
Make pg_verify_checksums verify that the data directory it's pointed at is of the right PostgreSQL version
Several fixes for contrib/postgres_fdw, including one for remote partitions where an UPDATE could lead to incorrect results or a crash
Several Windows fixes
This update also contains tzdata release 2019a for DST law changes in Palestine and Metlakatla, plus historical corrections for Israel. Etc/UCT is now a backward-compatibility link to Etc/UTC, instead of being a separate zone that generates the abbreviation UCT, which nowadays is typically a typo. PostgreSQL will still accept UCT as an input zone abbreviation, but it won't output it.


(adam)
diff -r1.11 -r1.12 pkgsrc/databases/postgresql10/Makefile
diff -r1.11 -r1.12 pkgsrc/databases/postgresql10/Makefile.common
diff -r1.9 -r1.10 pkgsrc/databases/postgresql10/distinfo
diff -r1.6 -r1.7 pkgsrc/databases/postgresql10-client/PLIST
diff -r1.8 -r1.9 pkgsrc/databases/postgresql10-docs/PLIST
diff -r1.4 -r1.5 pkgsrc/databases/postgresql10-plpython/Makefile
diff -r1.4 -r1.5 pkgsrc/databases/postgresql11/Makefile
diff -r1.3 -r1.4 pkgsrc/databases/postgresql11/Makefile.common
diff -r1.3 -r1.4 pkgsrc/databases/postgresql11/distinfo
diff -r1.2 -r1.3 pkgsrc/databases/postgresql11-client/PLIST
diff -r1.3 -r1.4 pkgsrc/databases/postgresql11-docs/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/postgresql11-plpython/Makefile
diff -r1.29 -r1.30 pkgsrc/databases/postgresql94/Makefile.common
diff -r1.25 -r1.26 pkgsrc/databases/postgresql94/distinfo
diff -r1.23 -r1.24 pkgsrc/databases/postgresql94-docs/PLIST
diff -r1.6 -r1.7 pkgsrc/databases/postgresql94-plpython/Makefile
diff -r1.23 -r1.24 pkgsrc/databases/postgresql95/Makefile.common
diff -r1.18 -r1.19 pkgsrc/databases/postgresql95/distinfo
diff -r1.16 -r1.17 pkgsrc/databases/postgresql95-docs/PLIST
diff -r1.6 -r1.7 pkgsrc/databases/postgresql95-plpython/Makefile
diff -r1.17 -r1.18 pkgsrc/databases/postgresql96/Makefile.common
diff -r1.14 -r1.15 pkgsrc/databases/postgresql96/distinfo
diff -r1.12 -r1.13 pkgsrc/databases/postgresql96-docs/PLIST
diff -r1.4 -r1.5 pkgsrc/databases/postgresql96-plpython/Makefile

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

--- pkgsrc/databases/postgresql10/Attic/Makefile 2019/04/03 00:32:31 1.11
+++ pkgsrc/databases/postgresql10/Attic/Makefile 2019/05/13 20:38:11 1.12
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.11 2019/04/03 00:32:31 ryoon Exp $ 1# $NetBSD: Makefile,v 1.12 2019/05/13 20:38:11 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/10-/} 3PKGNAME= ${DISTNAME:C/-/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.11 -r1.12 pkgsrc/databases/postgresql10/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/Makefile.common 2019/02/17 08:26:11 1.11
+++ pkgsrc/databases/postgresql10/Attic/Makefile.common 2019/05/13 20:38:11 1.12
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.11 2019/02/17 08:26:11 adam Exp $ 1# $NetBSD: Makefile.common,v 1.12 2019/05/13 20:38:11 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.7 19DISTNAME= postgresql-10.8
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.9 -r1.10 pkgsrc/databases/postgresql10/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10/Attic/distinfo 2019/02/17 08:26:11 1.9
+++ pkgsrc/databases/postgresql10/Attic/distinfo 2019/05/13 20:38:11 1.10
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.9 2019/02/17 08:26:11 adam Exp $ 1$NetBSD: distinfo,v 1.10 2019/05/13 20:38:11 adam Exp $
2 2
3SHA1 (postgresql-10.7.tar.bz2) = 38823c81209f2722ce77d7b6cf6a109d14028598 3SHA1 (postgresql-10.8.tar.bz2) = ae18d37852ff0b2c4262da606e1178b8666f3269
4RMD160 (postgresql-10.7.tar.bz2) = 78fa48868219b84728ba97d6ab9795e7f0b0d027 4RMD160 (postgresql-10.8.tar.bz2) = 0536828acedd4e2786456a4d2fac510fabb2acf5
5SHA512 (postgresql-10.7.tar.bz2) = 2fa8194e9ef540930eecc2a43907a77f7f185590046350d48fd625bdb1ab459095c4e2e0d2faac846935d7231ac672ace760633deeee365572768da619458ba9 5SHA512 (postgresql-10.8.tar.bz2) = c9cd0298f553e13e32d4315e17e9e61c1fd011391c5203282d9040f26fd08c85f749e6f2cea3bcc42d1ca153a1272bcd773196ef3bf2bdfb74cd12c5f523b7ca
6Size (postgresql-10.7.tar.bz2) = 18940030 bytes 6Size (postgresql-10.8.tar.bz2) = 18958913 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 8SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
9SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd 9SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
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) = 91aa620b3a26f3da66c22aef78611a352a8793b6 13SHA1 (patch-src_backend_Makefile) = 91aa620b3a26f3da66c22aef78611a352a8793b6
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
19SHA1 (patch-src_pl_plperl_plperl.h) = 64d5b891362c114bde5ec48e48bc4855b56ab516 19SHA1 (patch-src_pl_plperl_plperl.h) = 64d5b891362c114bde5ec48e48bc4855b56ab516

cvs diff -r1.6 -r1.7 pkgsrc/databases/postgresql10-client/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-client/Attic/PLIST 2019/02/17 08:26:11 1.6
+++ pkgsrc/databases/postgresql10-client/Attic/PLIST 2019/05/13 20:38:11 1.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.6 2019/02/17 08:26:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.7 2019/05/13 20:38:11 adam Exp $
2bin/clusterdb 2bin/clusterdb
3bin/createdb 3bin/createdb
4bin/createuser 4bin/createuser
5bin/dropdb 5bin/dropdb
6bin/dropuser 6bin/dropuser
7bin/ecpg 7bin/ecpg
8bin/initdb 8bin/initdb
9bin/pg_archivecleanup 9bin/pg_archivecleanup
10bin/pg_basebackup 10bin/pg_basebackup
11bin/pg_config 11bin/pg_config
12bin/pg_controldata 12bin/pg_controldata
13bin/pg_ctl 13bin/pg_ctl
14bin/pg_dump 14bin/pg_dump
@@ -788,26 +788,27 @@ share/locale/es/LC_MESSAGES/ecpg-10.mo @@ -788,26 +788,27 @@ share/locale/es/LC_MESSAGES/ecpg-10.mo
788share/locale/es/LC_MESSAGES/ecpglib6-10.mo 788share/locale/es/LC_MESSAGES/ecpglib6-10.mo
789share/locale/es/LC_MESSAGES/initdb-10.mo 789share/locale/es/LC_MESSAGES/initdb-10.mo
790share/locale/es/LC_MESSAGES/libpq5-10.mo 790share/locale/es/LC_MESSAGES/libpq5-10.mo
791share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo 791share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo
792share/locale/es/LC_MESSAGES/pg_basebackup-10.mo 792share/locale/es/LC_MESSAGES/pg_basebackup-10.mo
793share/locale/es/LC_MESSAGES/pg_config-10.mo 793share/locale/es/LC_MESSAGES/pg_config-10.mo
794share/locale/es/LC_MESSAGES/pg_controldata-10.mo 794share/locale/es/LC_MESSAGES/pg_controldata-10.mo
795share/locale/es/LC_MESSAGES/pg_ctl-10.mo 795share/locale/es/LC_MESSAGES/pg_ctl-10.mo
796share/locale/es/LC_MESSAGES/pg_dump-10.mo 796share/locale/es/LC_MESSAGES/pg_dump-10.mo
797share/locale/es/LC_MESSAGES/pg_resetwal-10.mo 797share/locale/es/LC_MESSAGES/pg_resetwal-10.mo
798share/locale/es/LC_MESSAGES/pg_rewind-10.mo 798share/locale/es/LC_MESSAGES/pg_rewind-10.mo
799share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo 799share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo
800share/locale/es/LC_MESSAGES/pg_test_timing-10.mo 800share/locale/es/LC_MESSAGES/pg_test_timing-10.mo
 801share/locale/es/LC_MESSAGES/pg_upgrade-10.mo
801share/locale/es/LC_MESSAGES/pg_waldump-10.mo 802share/locale/es/LC_MESSAGES/pg_waldump-10.mo
802share/locale/es/LC_MESSAGES/pgscripts-10.mo 803share/locale/es/LC_MESSAGES/pgscripts-10.mo
803share/locale/es/LC_MESSAGES/psql-10.mo 804share/locale/es/LC_MESSAGES/psql-10.mo
804share/locale/fr/LC_MESSAGES/ecpg-10.mo 805share/locale/fr/LC_MESSAGES/ecpg-10.mo
805share/locale/fr/LC_MESSAGES/ecpglib6-10.mo 806share/locale/fr/LC_MESSAGES/ecpglib6-10.mo
806share/locale/fr/LC_MESSAGES/initdb-10.mo 807share/locale/fr/LC_MESSAGES/initdb-10.mo
807share/locale/fr/LC_MESSAGES/libpq5-10.mo 808share/locale/fr/LC_MESSAGES/libpq5-10.mo
808share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo 809share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo
809share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo 810share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo
810share/locale/fr/LC_MESSAGES/pg_config-10.mo 811share/locale/fr/LC_MESSAGES/pg_config-10.mo
811share/locale/fr/LC_MESSAGES/pg_controldata-10.mo 812share/locale/fr/LC_MESSAGES/pg_controldata-10.mo
812share/locale/fr/LC_MESSAGES/pg_ctl-10.mo 813share/locale/fr/LC_MESSAGES/pg_ctl-10.mo
813share/locale/fr/LC_MESSAGES/pg_dump-10.mo 814share/locale/fr/LC_MESSAGES/pg_dump-10.mo

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

--- pkgsrc/databases/postgresql10-docs/Attic/PLIST 2019/02/17 08:26:11 1.8
+++ pkgsrc/databases/postgresql10-docs/Attic/PLIST 2019/05/13 20:38:11 1.9
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.8 2019/02/17 08:26:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.9 2019/05/13 20:38:11 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
@@ -905,26 +905,27 @@ share/doc/postgresql/html/reference.html @@ -905,26 +905,27 @@ share/doc/postgresql/html/reference.html
905share/doc/postgresql/html/regress-coverage.html 905share/doc/postgresql/html/regress-coverage.html
906share/doc/postgresql/html/regress-evaluation.html 906share/doc/postgresql/html/regress-evaluation.html
907share/doc/postgresql/html/regress-run.html 907share/doc/postgresql/html/regress-run.html
908share/doc/postgresql/html/regress-tap.html 908share/doc/postgresql/html/regress-tap.html
909share/doc/postgresql/html/regress-variant.html 909share/doc/postgresql/html/regress-variant.html
910share/doc/postgresql/html/regress.html 910share/doc/postgresql/html/regress.html
911share/doc/postgresql/html/release-10-1.html 911share/doc/postgresql/html/release-10-1.html
912share/doc/postgresql/html/release-10-2.html 912share/doc/postgresql/html/release-10-2.html
913share/doc/postgresql/html/release-10-3.html 913share/doc/postgresql/html/release-10-3.html
914share/doc/postgresql/html/release-10-4.html 914share/doc/postgresql/html/release-10-4.html
915share/doc/postgresql/html/release-10-5.html 915share/doc/postgresql/html/release-10-5.html
916share/doc/postgresql/html/release-10-6.html 916share/doc/postgresql/html/release-10-6.html
917share/doc/postgresql/html/release-10-7.html 917share/doc/postgresql/html/release-10-7.html
 918share/doc/postgresql/html/release-10-8.html
918share/doc/postgresql/html/release-10.html 919share/doc/postgresql/html/release-10.html
919share/doc/postgresql/html/release-prior.html 920share/doc/postgresql/html/release-prior.html
920share/doc/postgresql/html/release.html 921share/doc/postgresql/html/release.html
921share/doc/postgresql/html/replication-origins.html 922share/doc/postgresql/html/replication-origins.html
922share/doc/postgresql/html/resources.html 923share/doc/postgresql/html/resources.html
923share/doc/postgresql/html/role-attributes.html 924share/doc/postgresql/html/role-attributes.html
924share/doc/postgresql/html/role-membership.html 925share/doc/postgresql/html/role-membership.html
925share/doc/postgresql/html/role-removal.html 926share/doc/postgresql/html/role-removal.html
926share/doc/postgresql/html/routine-reindex.html 927share/doc/postgresql/html/routine-reindex.html
927share/doc/postgresql/html/routine-vacuuming.html 928share/doc/postgresql/html/routine-vacuuming.html
928share/doc/postgresql/html/row-estimation-examples.html 929share/doc/postgresql/html/row-estimation-examples.html
929share/doc/postgresql/html/rowtypes.html 930share/doc/postgresql/html/rowtypes.html
930share/doc/postgresql/html/rule-system.html 931share/doc/postgresql/html/rule-system.html

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

--- pkgsrc/databases/postgresql10-plpython/Attic/Makefile 2019/04/25 07:32:41 1.4
+++ pkgsrc/databases/postgresql10-plpython/Attic/Makefile 2019/05/13 20:38:11 1.5
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.4 2019/04/25 07:32:41 maya Exp $ 1# $NetBSD: Makefile,v 1.5 2019/05/13 20:38:11 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/10-plpython-/} 3PKGNAME= ${DISTNAME:C/-/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
11CONFIGURE_ARGS+= --with-python 10CONFIGURE_ARGS+= --with-python
12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 11CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
13BUILD_MAKE_FLAGS= PGXS=1 12BUILD_MAKE_FLAGS= PGXS=1
14 13
15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 14BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
16 15
17.include "../../databases/postgresql10-client/buildlink3.mk" 16.include "../../databases/postgresql10-client/buildlink3.mk"

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

--- pkgsrc/databases/postgresql11/Makefile 2019/04/03 00:32:31 1.4
+++ pkgsrc/databases/postgresql11/Makefile 2019/05/13 20:38:11 1.5
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.4 2019/04/03 00:32:31 ryoon Exp $ 1# $NetBSD: Makefile,v 1.5 2019/05/13 20:38:11 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/11-/} 3PKGNAME= ${DISTNAME:C/-/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.3 -r1.4 pkgsrc/databases/postgresql11/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11/Makefile.common 2019/02/17 08:26:11 1.3
+++ pkgsrc/databases/postgresql11/Makefile.common 2019/05/13 20:38:11 1.4
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.3 2019/02/17 08:26:11 adam Exp $ 1# $NetBSD: Makefile.common,v 1.4 2019/05/13 20:38:11 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.2 19DISTNAME= postgresql-11.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.3 -r1.4 pkgsrc/databases/postgresql11/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11/distinfo 2019/02/17 08:26:11 1.3
+++ pkgsrc/databases/postgresql11/distinfo 2019/05/13 20:38:11 1.4
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.3 2019/02/17 08:26:11 adam Exp $ 1$NetBSD: distinfo,v 1.4 2019/05/13 20:38:11 adam Exp $
2 2
3SHA1 (postgresql-11.2.tar.bz2) = 21fd2f0c08dc69514e86a6b25d56059bb0418a62 3SHA1 (postgresql-11.3.tar.bz2) = 99b54b4ec4b519c9617f942348d5be328f916773
4RMD160 (postgresql-11.2.tar.bz2) = 6b092d1e0695ee14fa1363ce931fa0f179c11b2d 4RMD160 (postgresql-11.3.tar.bz2) = ea1ca7da67da585ad22c87fa9bd7d40f962978e1
5SHA512 (postgresql-11.2.tar.bz2) = dae00a543fdeed36bc338abd4ccfd9fe9a8b6b2b7eaa00b1078e4f27802de75a461c27da2800bc9dd64e658681e5787bd03764bde79940656cae1e8c8716f011 5SHA512 (postgresql-11.3.tar.bz2) = 03269bb88f44f3a81d5e3a8ca2fe59f63f784436840f08870b2e539755629cbde8ac288e0bb4472ee93294a88b37b814ddff48444254c1a3f7a10b4bb64f7133
6Size (postgresql-11.2.tar.bz2) = 19714229 bytes 6Size (postgresql-11.3.tar.bz2) = 19718775 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb 8SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
9SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd 9SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
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) = 209f4cfb1670381838e7f25ead7ab9f0f671f89c 13SHA1 (patch-src_backend_Makefile) = 209f4cfb1670381838e7f25ead7ab9f0f671f89c
14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289 14SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289
15SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c 15SHA1 (patch-src_interfaces_libpq_Makefile) = 61bcf84eb69b6ec9faabab0b61913766f4b20f8c
16SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 16SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
17SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d 17SHA1 (patch-src_pl_plperl_GNUmakefile) = 161a8f7af61b3a33b255fdee9fa7d4918decde7d
18SHA1 (patch-src_pl_plperl_plperl.h) = 2be5cbb71e5c5662a58b90058800ed67da0fb851 18SHA1 (patch-src_pl_plperl_plperl.h) = 2be5cbb71e5c5662a58b90058800ed67da0fb851

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql11-client/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql11-client/PLIST 2019/02/17 08:26:11 1.2
+++ pkgsrc/databases/postgresql11-client/PLIST 2019/05/13 20:38:11 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.2 2019/02/17 08:26:11 adam Exp $ 1@comment $NetBSD: PLIST,v 1.3 2019/05/13 20:38:11 adam Exp $
2bin/clusterdb 2bin/clusterdb
3bin/createdb 3bin/createdb
4bin/createuser 4bin/createuser
5bin/dropdb 5bin/dropdb
6bin/dropuser 6bin/dropuser
7bin/ecpg 7bin/ecpg
8bin/initdb 8bin/initdb
9bin/pg_archivecleanup 9bin/pg_archivecleanup
10bin/pg_basebackup 10bin/pg_basebackup
11bin/pg_config 11bin/pg_config
12bin/pg_controldata 12bin/pg_controldata
13bin/pg_ctl 13bin/pg_ctl
14bin/pg_dump 14bin/pg_dump
@@ -865,26 +865,28 @@ share/locale/es/LC_MESSAGES/ecpg-11.mo @@ -865,26 +865,28 @@ share/locale/es/LC_MESSAGES/ecpg-11.mo
865share/locale/es/LC_MESSAGES/ecpglib6-11.mo 865share/locale/es/LC_MESSAGES/ecpglib6-11.mo
866share/locale/es/LC_MESSAGES/initdb-11.mo 866share/locale/es/LC_MESSAGES/initdb-11.mo
867share/locale/es/LC_MESSAGES/libpq5-11.mo 867share/locale/es/LC_MESSAGES/libpq5-11.mo
868share/locale/es/LC_MESSAGES/pg_archivecleanup-11.mo 868share/locale/es/LC_MESSAGES/pg_archivecleanup-11.mo
869share/locale/es/LC_MESSAGES/pg_basebackup-11.mo 869share/locale/es/LC_MESSAGES/pg_basebackup-11.mo
870share/locale/es/LC_MESSAGES/pg_config-11.mo 870share/locale/es/LC_MESSAGES/pg_config-11.mo
871share/locale/es/LC_MESSAGES/pg_controldata-11.mo 871share/locale/es/LC_MESSAGES/pg_controldata-11.mo
872share/locale/es/LC_MESSAGES/pg_ctl-11.mo 872share/locale/es/LC_MESSAGES/pg_ctl-11.mo
873share/locale/es/LC_MESSAGES/pg_dump-11.mo 873share/locale/es/LC_MESSAGES/pg_dump-11.mo
874share/locale/es/LC_MESSAGES/pg_resetwal-11.mo 874share/locale/es/LC_MESSAGES/pg_resetwal-11.mo
875share/locale/es/LC_MESSAGES/pg_rewind-11.mo 875share/locale/es/LC_MESSAGES/pg_rewind-11.mo
876share/locale/es/LC_MESSAGES/pg_test_fsync-11.mo 876share/locale/es/LC_MESSAGES/pg_test_fsync-11.mo
877share/locale/es/LC_MESSAGES/pg_test_timing-11.mo 877share/locale/es/LC_MESSAGES/pg_test_timing-11.mo
 878share/locale/es/LC_MESSAGES/pg_upgrade-11.mo
 879share/locale/es/LC_MESSAGES/pg_verify_checksums-11.mo
878share/locale/es/LC_MESSAGES/pg_waldump-11.mo 880share/locale/es/LC_MESSAGES/pg_waldump-11.mo
879share/locale/es/LC_MESSAGES/pgscripts-11.mo 881share/locale/es/LC_MESSAGES/pgscripts-11.mo
880share/locale/es/LC_MESSAGES/psql-11.mo 882share/locale/es/LC_MESSAGES/psql-11.mo
881share/locale/fr/LC_MESSAGES/ecpg-11.mo 883share/locale/fr/LC_MESSAGES/ecpg-11.mo
882share/locale/fr/LC_MESSAGES/ecpglib6-11.mo 884share/locale/fr/LC_MESSAGES/ecpglib6-11.mo
883share/locale/fr/LC_MESSAGES/initdb-11.mo 885share/locale/fr/LC_MESSAGES/initdb-11.mo
884share/locale/fr/LC_MESSAGES/libpq5-11.mo 886share/locale/fr/LC_MESSAGES/libpq5-11.mo
885share/locale/fr/LC_MESSAGES/pg_archivecleanup-11.mo 887share/locale/fr/LC_MESSAGES/pg_archivecleanup-11.mo
886share/locale/fr/LC_MESSAGES/pg_basebackup-11.mo 888share/locale/fr/LC_MESSAGES/pg_basebackup-11.mo
887share/locale/fr/LC_MESSAGES/pg_config-11.mo 889share/locale/fr/LC_MESSAGES/pg_config-11.mo
888share/locale/fr/LC_MESSAGES/pg_controldata-11.mo 890share/locale/fr/LC_MESSAGES/pg_controldata-11.mo
889share/locale/fr/LC_MESSAGES/pg_ctl-11.mo 891share/locale/fr/LC_MESSAGES/pg_ctl-11.mo
890share/locale/fr/LC_MESSAGES/pg_dump-11.mo 892share/locale/fr/LC_MESSAGES/pg_dump-11.mo
@@ -1045,24 +1047,31 @@ share/locale/vi/LC_MESSAGES/ecpg-11.mo @@ -1045,24 +1047,31 @@ share/locale/vi/LC_MESSAGES/ecpg-11.mo
1045share/locale/vi/LC_MESSAGES/ecpglib6-11.mo 1047share/locale/vi/LC_MESSAGES/ecpglib6-11.mo
1046share/locale/vi/LC_MESSAGES/initdb-11.mo 1048share/locale/vi/LC_MESSAGES/initdb-11.mo
1047share/locale/vi/LC_MESSAGES/pg_archivecleanup-11.mo 1049share/locale/vi/LC_MESSAGES/pg_archivecleanup-11.mo
1048share/locale/vi/LC_MESSAGES/pg_basebackup-11.mo 1050share/locale/vi/LC_MESSAGES/pg_basebackup-11.mo
1049share/locale/vi/LC_MESSAGES/pg_config-11.mo 1051share/locale/vi/LC_MESSAGES/pg_config-11.mo
1050share/locale/vi/LC_MESSAGES/pg_controldata-11.mo 1052share/locale/vi/LC_MESSAGES/pg_controldata-11.mo
1051share/locale/vi/LC_MESSAGES/pg_test_fsync-11.mo 1053share/locale/vi/LC_MESSAGES/pg_test_fsync-11.mo
1052share/locale/vi/LC_MESSAGES/pg_test_timing-11.mo 1054share/locale/vi/LC_MESSAGES/pg_test_timing-11.mo
1053share/locale/vi/LC_MESSAGES/pg_waldump-11.mo 1055share/locale/vi/LC_MESSAGES/pg_waldump-11.mo
1054share/locale/zh_CN/LC_MESSAGES/ecpg-11.mo 1056share/locale/zh_CN/LC_MESSAGES/ecpg-11.mo
1055share/locale/zh_CN/LC_MESSAGES/ecpglib6-11.mo 1057share/locale/zh_CN/LC_MESSAGES/ecpglib6-11.mo
1056share/locale/zh_CN/LC_MESSAGES/initdb-11.mo 1058share/locale/zh_CN/LC_MESSAGES/initdb-11.mo
1057share/locale/zh_CN/LC_MESSAGES/libpq5-11.mo 1059share/locale/zh_CN/LC_MESSAGES/libpq5-11.mo
 1060share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-11.mo
 1061share/locale/zh_CN/LC_MESSAGES/pg_basebackup-11.mo
1058share/locale/zh_CN/LC_MESSAGES/pg_config-11.mo 1062share/locale/zh_CN/LC_MESSAGES/pg_config-11.mo
1059share/locale/zh_CN/LC_MESSAGES/pg_controldata-11.mo 1063share/locale/zh_CN/LC_MESSAGES/pg_controldata-11.mo
1060share/locale/zh_CN/LC_MESSAGES/pg_ctl-11.mo 1064share/locale/zh_CN/LC_MESSAGES/pg_ctl-11.mo
1061share/locale/zh_CN/LC_MESSAGES/pg_dump-11.mo 1065share/locale/zh_CN/LC_MESSAGES/pg_dump-11.mo
 1066share/locale/zh_CN/LC_MESSAGES/pg_resetwal-11.mo
1062share/locale/zh_CN/LC_MESSAGES/pg_rewind-11.mo 1067share/locale/zh_CN/LC_MESSAGES/pg_rewind-11.mo
 1068share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-11.mo
 1069share/locale/zh_CN/LC_MESSAGES/pg_test_timing-11.mo
 1070share/locale/zh_CN/LC_MESSAGES/pg_upgrade-11.mo
 1071share/locale/zh_CN/LC_MESSAGES/pg_verify_checksums-11.mo
1063share/locale/zh_CN/LC_MESSAGES/pgscripts-11.mo 1072share/locale/zh_CN/LC_MESSAGES/pgscripts-11.mo
1064share/locale/zh_CN/LC_MESSAGES/psql-11.mo 1073share/locale/zh_CN/LC_MESSAGES/psql-11.mo
1065share/locale/zh_TW/LC_MESSAGES/ecpg-11.mo 1074share/locale/zh_TW/LC_MESSAGES/ecpg-11.mo
1066share/locale/zh_TW/LC_MESSAGES/pg_config-11.mo 1075share/locale/zh_TW/LC_MESSAGES/pg_config-11.mo
1067share/postgresql/pg_service.conf.sample 1076share/postgresql/pg_service.conf.sample
1068share/postgresql/psqlrc.sample 1077share/postgresql/psqlrc.sample

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

--- pkgsrc/databases/postgresql11-docs/PLIST 2019/02/17 08:26:12 1.3
+++ pkgsrc/databases/postgresql11-docs/PLIST 2019/05/13 20:38:11 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2019/02/17 08:26:12 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2019/05/13 20:38:11 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
@@ -936,26 +936,27 @@ share/doc/postgresql/html/rangetypes.htm @@ -936,26 +936,27 @@ share/doc/postgresql/html/rangetypes.htm
936share/doc/postgresql/html/recovery-config.html 936share/doc/postgresql/html/recovery-config.html
937share/doc/postgresql/html/recovery-target-settings.html 937share/doc/postgresql/html/recovery-target-settings.html
938share/doc/postgresql/html/reference-client.html 938share/doc/postgresql/html/reference-client.html
939share/doc/postgresql/html/reference-server.html 939share/doc/postgresql/html/reference-server.html
940share/doc/postgresql/html/reference.html 940share/doc/postgresql/html/reference.html
941share/doc/postgresql/html/regress-coverage.html 941share/doc/postgresql/html/regress-coverage.html
942share/doc/postgresql/html/regress-evaluation.html 942share/doc/postgresql/html/regress-evaluation.html
943share/doc/postgresql/html/regress-run.html 943share/doc/postgresql/html/regress-run.html
944share/doc/postgresql/html/regress-tap.html 944share/doc/postgresql/html/regress-tap.html
945share/doc/postgresql/html/regress-variant.html 945share/doc/postgresql/html/regress-variant.html
946share/doc/postgresql/html/regress.html 946share/doc/postgresql/html/regress.html
947share/doc/postgresql/html/release-11-1.html 947share/doc/postgresql/html/release-11-1.html
948share/doc/postgresql/html/release-11-2.html 948share/doc/postgresql/html/release-11-2.html
 949share/doc/postgresql/html/release-11-3.html
949share/doc/postgresql/html/release-11.html 950share/doc/postgresql/html/release-11.html
950share/doc/postgresql/html/release-prior.html 951share/doc/postgresql/html/release-prior.html
951share/doc/postgresql/html/release.html 952share/doc/postgresql/html/release.html
952share/doc/postgresql/html/replication-origins.html 953share/doc/postgresql/html/replication-origins.html
953share/doc/postgresql/html/resources.html 954share/doc/postgresql/html/resources.html
954share/doc/postgresql/html/role-attributes.html 955share/doc/postgresql/html/role-attributes.html
955share/doc/postgresql/html/role-membership.html 956share/doc/postgresql/html/role-membership.html
956share/doc/postgresql/html/role-removal.html 957share/doc/postgresql/html/role-removal.html
957share/doc/postgresql/html/routine-reindex.html 958share/doc/postgresql/html/routine-reindex.html
958share/doc/postgresql/html/routine-vacuuming.html 959share/doc/postgresql/html/routine-vacuuming.html
959share/doc/postgresql/html/row-estimation-examples.html 960share/doc/postgresql/html/row-estimation-examples.html
960share/doc/postgresql/html/rowtypes.html 961share/doc/postgresql/html/rowtypes.html
961share/doc/postgresql/html/rule-system.html 962share/doc/postgresql/html/rule-system.html

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

--- pkgsrc/databases/postgresql11-plpython/Makefile 2019/04/25 07:32:41 1.2
+++ pkgsrc/databases/postgresql11-plpython/Makefile 2019/05/13 20:38:12 1.3
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.2 2019/04/25 07:32:41 maya Exp $ 1# $NetBSD: Makefile,v 1.3 2019/05/13 20:38:12 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/11-plpython-/} 3PKGNAME= ${DISTNAME:C/-/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
11CONFIGURE_ARGS+= --with-python 10CONFIGURE_ARGS+= --with-python
12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 11CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
13BUILD_MAKE_FLAGS= PGXS=1 12BUILD_MAKE_FLAGS= PGXS=1
14 13
15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 14BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
16 15
17.include "../../databases/postgresql11-client/buildlink3.mk" 16.include "../../databases/postgresql11-client/buildlink3.mk"

cvs diff -r1.29 -r1.30 pkgsrc/databases/postgresql94/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94/Attic/Makefile.common 2019/02/17 08:26:12 1.29
+++ pkgsrc/databases/postgresql94/Attic/Makefile.common 2019/05/13 20:38:12 1.30
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.29 2019/02/17 08:26:12 adam Exp $ 1# $NetBSD: Makefile.common,v 1.30 2019/05/13 20:38:12 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/postgresql94-client/Makefile 11# used by databases/postgresql94-client/Makefile
12# used by databases/postgresql94-contrib/Makefile 12# used by databases/postgresql94-contrib/Makefile
13# used by databases/postgresql94-docs/Makefile 13# used by databases/postgresql94-docs/Makefile
14# used by databases/postgresql94-plperl/Makefile 14# used by databases/postgresql94-plperl/Makefile
15# used by databases/postgresql94-plpython/Makefile 15# used by databases/postgresql94-plpython/Makefile
16# used by databases/postgresql94-pltcl/Makefile 16# used by databases/postgresql94-pltcl/Makefile
17# used by databases/postgresql94-server/Makefile 17# used by databases/postgresql94-server/Makefile
18 18
19DISTNAME= postgresql-9.4.21 19DISTNAME= postgresql-9.4.22
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[0-8][0-9]-[0-9]* 29CONFLICTS+= postgresql[0-8][0-9]-[0-9]*
30CONFLICTS+= postgresql9[01235-9]-[0-9]* 30CONFLICTS+= postgresql9[01235-9]-[0-9]*
31 31
32.if !empty(PKGNAME:M*-*-*) 32.if !empty(PKGNAME:M*-*-*)

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

--- pkgsrc/databases/postgresql94/Attic/distinfo 2019/02/17 08:26:12 1.25
+++ pkgsrc/databases/postgresql94/Attic/distinfo 2019/05/13 20:38:12 1.26
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.25 2019/02/17 08:26:12 adam Exp $ 1$NetBSD: distinfo,v 1.26 2019/05/13 20:38:12 adam Exp $
2 2
3SHA1 (postgresql-9.4.21.tar.bz2) = 7fdc9574a0479df5e2c623e27e02342efe63f3d5 3SHA1 (postgresql-9.4.22.tar.bz2) = 68ee53f1781442e429e37808973bddb7ecf1a0f5
4RMD160 (postgresql-9.4.21.tar.bz2) = d1f2b89f6f55160e106fd86033f76b585d2f45b7 4RMD160 (postgresql-9.4.22.tar.bz2) = ce13b87c2aabcc4900819c9388c2e43b47c9d3da
5SHA512 (postgresql-9.4.21.tar.bz2) = 850d1f59369457d9a8a42de8f0e4811f60e9164d2e7d7605fdabc04cc5ba2e3794d51e155d709419d06b8e070f214f7d3ef2328c6d37f125264ea008ca18ff5a 5SHA512 (postgresql-9.4.22.tar.bz2) = f11623a89b2320616fd53eda52da544bdfcb63bff08cb78fccde134ef628eee7ee90b3de6952f4e08c10297d356624faabf0e5b181b0105f51797796cd04efef
6Size (postgresql-9.4.21.tar.bz2) = 16871522 bytes 6Size (postgresql-9.4.22.tar.bz2) = 16848787 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c 8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
9SHA1 (patch-configure) = 1c0fee3fb270863eb39118a65769ce170391cfec 9SHA1 (patch-configure) = 1c0fee3fb270863eb39118a65769ce170391cfec
10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
11SHA1 (patch-contrib_uuid-ossp_uuid-ossp.c) = b18da04850bc7c14f8fc80e0c86429ed1cc075c8 11SHA1 (patch-contrib_uuid-ossp_uuid-ossp.c) = b18da04850bc7c14f8fc80e0c86429ed1cc075c8
12SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a 12SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a
13SHA1 (patch-src_Makefile.shlib) = 62533bab4807033780732dfbea7e37d618807b37 13SHA1 (patch-src_Makefile.shlib) = 62533bab4807033780732dfbea7e37d618807b37
14SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca 14SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca
15SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289 15SHA1 (patch-src_backend_utils_adt_datetime.c) = d1ea70986634d3bfb663eff789425252656e1289
16SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = af0971de415b6b44ae3520cfc9bd6ffd5dcdeb62 16SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = af0971de415b6b44ae3520cfc9bd6ffd5dcdeb62
17SHA1 (patch-src_interfaces_libpq_Makefile) = 0066301bc8b31b9e26c79153427537bc3865ef4d 17SHA1 (patch-src_interfaces_libpq_Makefile) = 0066301bc8b31b9e26c79153427537bc3865ef4d
18SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 18SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
19SHA1 (patch-src_pl_plperl_GNUmakefile) = 6ee3e431f46ce5c2a94df499504b2b8bd458bbef 19SHA1 (patch-src_pl_plperl_GNUmakefile) = 6ee3e431f46ce5c2a94df499504b2b8bd458bbef

cvs diff -r1.23 -r1.24 pkgsrc/databases/postgresql94-docs/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94-docs/Attic/PLIST 2019/02/17 08:26:12 1.23
+++ pkgsrc/databases/postgresql94-docs/Attic/PLIST 2019/05/13 20:38:12 1.24
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.23 2019/02/17 08:26:12 adam Exp $ 1@comment $NetBSD: PLIST,v 1.24 2019/05/13 20:38:12 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createlang.1 4man/man1/createlang.1
5man/man1/createuser.1 5man/man1/createuser.1
6man/man1/dropdb.1 6man/man1/dropdb.1
7man/man1/droplang.1 7man/man1/droplang.1
8man/man1/dropuser.1 8man/man1/dropuser.1
9man/man1/ecpg.1 9man/man1/ecpg.1
10man/man1/initdb.1 10man/man1/initdb.1
11man/man1/oid2name.1 11man/man1/oid2name.1
12man/man1/pg_archivecleanup.1 12man/man1/pg_archivecleanup.1
13man/man1/pg_basebackup.1 13man/man1/pg_basebackup.1
14man/man1/pg_config.1 14man/man1/pg_config.1
@@ -850,26 +850,27 @@ share/doc/postgresql/html/release-9-4-1. @@ -850,26 +850,27 @@ share/doc/postgresql/html/release-9-4-1.
850share/doc/postgresql/html/release-9-4-10.html 850share/doc/postgresql/html/release-9-4-10.html
851share/doc/postgresql/html/release-9-4-11.html 851share/doc/postgresql/html/release-9-4-11.html
852share/doc/postgresql/html/release-9-4-12.html 852share/doc/postgresql/html/release-9-4-12.html
853share/doc/postgresql/html/release-9-4-13.html 853share/doc/postgresql/html/release-9-4-13.html
854share/doc/postgresql/html/release-9-4-14.html 854share/doc/postgresql/html/release-9-4-14.html
855share/doc/postgresql/html/release-9-4-15.html 855share/doc/postgresql/html/release-9-4-15.html
856share/doc/postgresql/html/release-9-4-16.html 856share/doc/postgresql/html/release-9-4-16.html
857share/doc/postgresql/html/release-9-4-17.html 857share/doc/postgresql/html/release-9-4-17.html
858share/doc/postgresql/html/release-9-4-18.html 858share/doc/postgresql/html/release-9-4-18.html
859share/doc/postgresql/html/release-9-4-19.html 859share/doc/postgresql/html/release-9-4-19.html
860share/doc/postgresql/html/release-9-4-2.html 860share/doc/postgresql/html/release-9-4-2.html
861share/doc/postgresql/html/release-9-4-20.html 861share/doc/postgresql/html/release-9-4-20.html
862share/doc/postgresql/html/release-9-4-21.html 862share/doc/postgresql/html/release-9-4-21.html
 863share/doc/postgresql/html/release-9-4-22.html
863share/doc/postgresql/html/release-9-4-3.html 864share/doc/postgresql/html/release-9-4-3.html
864share/doc/postgresql/html/release-9-4-4.html 865share/doc/postgresql/html/release-9-4-4.html
865share/doc/postgresql/html/release-9-4-5.html 866share/doc/postgresql/html/release-9-4-5.html
866share/doc/postgresql/html/release-9-4-6.html 867share/doc/postgresql/html/release-9-4-6.html
867share/doc/postgresql/html/release-9-4-7.html 868share/doc/postgresql/html/release-9-4-7.html
868share/doc/postgresql/html/release-9-4-8.html 869share/doc/postgresql/html/release-9-4-8.html
869share/doc/postgresql/html/release-9-4-9.html 870share/doc/postgresql/html/release-9-4-9.html
870share/doc/postgresql/html/release-9-4.html 871share/doc/postgresql/html/release-9-4.html
871share/doc/postgresql/html/release-prior.html 872share/doc/postgresql/html/release-prior.html
872share/doc/postgresql/html/release.html 873share/doc/postgresql/html/release.html
873share/doc/postgresql/html/resources.html 874share/doc/postgresql/html/resources.html
874share/doc/postgresql/html/role-attributes.html 875share/doc/postgresql/html/role-attributes.html
875share/doc/postgresql/html/role-membership.html 876share/doc/postgresql/html/role-membership.html

cvs diff -r1.6 -r1.7 pkgsrc/databases/postgresql94-plpython/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94-plpython/Attic/Makefile 2019/04/25 07:32:41 1.6
+++ pkgsrc/databases/postgresql94-plpython/Attic/Makefile 2019/05/13 20:38:12 1.7
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2019/04/25 07:32:41 maya Exp $ 1# $NetBSD: Makefile,v 1.7 2019/05/13 20:38:12 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/94-plpython-/} 3PKGNAME= ${DISTNAME:C/-/94-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql94-server>=${PKGVERSION_NOREV}:../../databases/postgresql94-server 6DEPENDS+= postgresql94-server>=${PKGVERSION_NOREV}:../../databases/postgresql94-server
8 7
9.include "../../databases/postgresql94/Makefile.common" 8.include "../../databases/postgresql94/Makefile.common"
10 9
11CONFIGURE_ARGS+= --with-python 10CONFIGURE_ARGS+= --with-python
12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 11CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
13BUILD_MAKE_FLAGS= PGXS=1 12BUILD_MAKE_FLAGS= PGXS=1
14 13
15BUILD_DIRS= src/pl/plpython 14BUILD_DIRS= src/pl/plpython
16 15
17.include "../../databases/postgresql94-client/buildlink3.mk" 16.include "../../databases/postgresql94-client/buildlink3.mk"

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

--- pkgsrc/databases/postgresql95/Attic/Makefile.common 2019/02/17 08:26:12 1.23
+++ pkgsrc/databases/postgresql95/Attic/Makefile.common 2019/05/13 20:38:12 1.24
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.23 2019/02/17 08:26:12 adam Exp $ 1# $NetBSD: Makefile.common,v 1.24 2019/05/13 20:38:12 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/postgresql95-client/Makefile 11# used by databases/postgresql95-client/Makefile
12# used by databases/postgresql95-contrib/Makefile 12# used by databases/postgresql95-contrib/Makefile
13# used by databases/postgresql95-docs/Makefile 13# used by databases/postgresql95-docs/Makefile
14# used by databases/postgresql95-plperl/Makefile 14# used by databases/postgresql95-plperl/Makefile
15# used by databases/postgresql95-plpython/Makefile 15# used by databases/postgresql95-plpython/Makefile
16# used by databases/postgresql95-pltcl/Makefile 16# used by databases/postgresql95-pltcl/Makefile
17# used by databases/postgresql95-server/Makefile 17# used by databases/postgresql95-server/Makefile
18 18
19DISTNAME= postgresql-9.5.16 19DISTNAME= postgresql-9.5.17
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[0-8][0-9]-[0-9]* 29CONFLICTS+= postgresql[0-8][0-9]-[0-9]*
30CONFLICTS+= postgresql9[012346-9]-[0-9]* 30CONFLICTS+= postgresql9[012346-9]-[0-9]*
31 31
32.if !empty(PKGNAME:M*-*-*) 32.if !empty(PKGNAME:M*-*-*)

cvs diff -r1.18 -r1.19 pkgsrc/databases/postgresql95/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql95/Attic/distinfo 2019/02/17 08:26:12 1.18
+++ pkgsrc/databases/postgresql95/Attic/distinfo 2019/05/13 20:38:12 1.19
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.18 2019/02/17 08:26:12 adam Exp $ 1$NetBSD: distinfo,v 1.19 2019/05/13 20:38:12 adam Exp $
2 2
3SHA1 (postgresql-9.5.16.tar.bz2) = 5413b1d9e239383cc55d6a1328a42f055405354c 3SHA1 (postgresql-9.5.17.tar.bz2) = 3b70737eedb2f5fc90d420de4c21188c72e50030
4RMD160 (postgresql-9.5.16.tar.bz2) = 7f9c07db733f4b8b61380b9481c2946d06436dd9 4RMD160 (postgresql-9.5.17.tar.bz2) = 9b1557114f5696ea539544757c660f0d48daaca8
5SHA512 (postgresql-9.5.16.tar.bz2) = 4583c825ed00a5ba915863b41c39cd9580492444ff299e44c3856db55fb4f0607d184534fe8977d915fb0730e6d638d8560be11915ce21b9d1f6971e7a285c7c 5SHA512 (postgresql-9.5.17.tar.bz2) = bb468528b1f18166cda0be136f31a632859ffe6e6800233b1cb0e91ce11d2d00d3dc108a74580b5552a4d30b9f1b6849c91576cd497beac788c429815c66eac5
6Size (postgresql-9.5.16.tar.bz2) = 17506874 bytes 6Size (postgresql-9.5.17.tar.bz2) = 17563469 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c 8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
9SHA1 (patch-configure) = 18dd4af7f043b090beda157dfd52531b551eafd0 9SHA1 (patch-configure) = 18dd4af7f043b090beda157dfd52531b551eafd0
10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
11SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a 11SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a
12SHA1 (patch-src_Makefile.shlib) = a809ef756e9314723476fe7408a97d23f83a0311 12SHA1 (patch-src_Makefile.shlib) = a809ef756e9314723476fe7408a97d23f83a0311
13SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca 13SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca
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
19SHA1 (patch-src_pl_plperl_plperl.h) = d31b24a953861703fe4b87d9a7d38d3c90e0411e 19SHA1 (patch-src_pl_plperl_plperl.h) = d31b24a953861703fe4b87d9a7d38d3c90e0411e

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

--- pkgsrc/databases/postgresql95-docs/Attic/PLIST 2019/02/17 08:26:12 1.16
+++ pkgsrc/databases/postgresql95-docs/Attic/PLIST 2019/05/13 20:38:12 1.17
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.16 2019/02/17 08:26:12 adam Exp $ 1@comment $NetBSD: PLIST,v 1.17 2019/05/13 20:38:12 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createlang.1 4man/man1/createlang.1
5man/man1/createuser.1 5man/man1/createuser.1
6man/man1/dropdb.1 6man/man1/dropdb.1
7man/man1/droplang.1 7man/man1/droplang.1
8man/man1/dropuser.1 8man/man1/dropuser.1
9man/man1/ecpg.1 9man/man1/ecpg.1
10man/man1/initdb.1 10man/man1/initdb.1
11man/man1/oid2name.1 11man/man1/oid2name.1
12man/man1/pg_archivecleanup.1 12man/man1/pg_archivecleanup.1
13man/man1/pg_basebackup.1 13man/man1/pg_basebackup.1
14man/man1/pg_config.1 14man/man1/pg_config.1
@@ -865,26 +865,27 @@ share/doc/postgresql/html/regress-covera @@ -865,26 +865,27 @@ share/doc/postgresql/html/regress-covera
865share/doc/postgresql/html/regress-evaluation.html 865share/doc/postgresql/html/regress-evaluation.html
866share/doc/postgresql/html/regress-run.html 866share/doc/postgresql/html/regress-run.html
867share/doc/postgresql/html/regress-tap.html 867share/doc/postgresql/html/regress-tap.html
868share/doc/postgresql/html/regress-variant.html 868share/doc/postgresql/html/regress-variant.html
869share/doc/postgresql/html/regress.html 869share/doc/postgresql/html/regress.html
870share/doc/postgresql/html/release-9-5-1.html 870share/doc/postgresql/html/release-9-5-1.html
871share/doc/postgresql/html/release-9-5-10.html 871share/doc/postgresql/html/release-9-5-10.html
872share/doc/postgresql/html/release-9-5-11.html 872share/doc/postgresql/html/release-9-5-11.html
873share/doc/postgresql/html/release-9-5-12.html 873share/doc/postgresql/html/release-9-5-12.html
874share/doc/postgresql/html/release-9-5-13.html 874share/doc/postgresql/html/release-9-5-13.html
875share/doc/postgresql/html/release-9-5-14.html 875share/doc/postgresql/html/release-9-5-14.html
876share/doc/postgresql/html/release-9-5-15.html 876share/doc/postgresql/html/release-9-5-15.html
877share/doc/postgresql/html/release-9-5-16.html 877share/doc/postgresql/html/release-9-5-16.html
 878share/doc/postgresql/html/release-9-5-17.html
878share/doc/postgresql/html/release-9-5-2.html 879share/doc/postgresql/html/release-9-5-2.html
879share/doc/postgresql/html/release-9-5-3.html 880share/doc/postgresql/html/release-9-5-3.html
880share/doc/postgresql/html/release-9-5-4.html 881share/doc/postgresql/html/release-9-5-4.html
881share/doc/postgresql/html/release-9-5-5.html 882share/doc/postgresql/html/release-9-5-5.html
882share/doc/postgresql/html/release-9-5-6.html 883share/doc/postgresql/html/release-9-5-6.html
883share/doc/postgresql/html/release-9-5-7.html 884share/doc/postgresql/html/release-9-5-7.html
884share/doc/postgresql/html/release-9-5-8.html 885share/doc/postgresql/html/release-9-5-8.html
885share/doc/postgresql/html/release-9-5-9.html 886share/doc/postgresql/html/release-9-5-9.html
886share/doc/postgresql/html/release-9-5.html 887share/doc/postgresql/html/release-9-5.html
887share/doc/postgresql/html/release-prior.html 888share/doc/postgresql/html/release-prior.html
888share/doc/postgresql/html/release.html 889share/doc/postgresql/html/release.html
889share/doc/postgresql/html/replication-origins.html 890share/doc/postgresql/html/replication-origins.html
890share/doc/postgresql/html/resources.html 891share/doc/postgresql/html/resources.html

cvs diff -r1.6 -r1.7 pkgsrc/databases/postgresql95-plpython/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql95-plpython/Attic/Makefile 2019/04/25 07:32:41 1.6
+++ pkgsrc/databases/postgresql95-plpython/Attic/Makefile 2019/05/13 20:38:12 1.7
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2019/04/25 07:32:41 maya Exp $ 1# $NetBSD: Makefile,v 1.7 2019/05/13 20:38:12 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/95-plpython-/} 3PKGNAME= ${DISTNAME:C/-/95-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql95-server>=${PKGVERSION_NOREV}:../../databases/postgresql95-server 6DEPENDS+= postgresql95-server>=${PKGVERSION_NOREV}:../../databases/postgresql95-server
8 7
9.include "../../databases/postgresql95/Makefile.common" 8.include "../../databases/postgresql95/Makefile.common"
10 9
11CONFIGURE_ARGS+= --with-python 10CONFIGURE_ARGS+= --with-python
12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 11CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
13BUILD_MAKE_FLAGS= PGXS=1 12BUILD_MAKE_FLAGS= PGXS=1
14 13
15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 14BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
16 15
17.include "../../databases/postgresql95-client/buildlink3.mk" 16.include "../../databases/postgresql95-client/buildlink3.mk"

cvs diff -r1.17 -r1.18 pkgsrc/databases/postgresql96/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96/Attic/Makefile.common 2019/02/17 08:26:12 1.17
+++ pkgsrc/databases/postgresql96/Attic/Makefile.common 2019/05/13 20:38:12 1.18
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.17 2019/02/17 08:26:12 adam Exp $ 1# $NetBSD: Makefile.common,v 1.18 2019/05/13 20:38:12 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/postgresql96-client/Makefile 11# used by databases/postgresql96-client/Makefile
12# used by databases/postgresql96-contrib/Makefile 12# used by databases/postgresql96-contrib/Makefile
13# used by databases/postgresql96-docs/Makefile 13# used by databases/postgresql96-docs/Makefile
14# used by databases/postgresql96-plperl/Makefile 14# used by databases/postgresql96-plperl/Makefile
15# used by databases/postgresql96-plpython/Makefile 15# used by databases/postgresql96-plpython/Makefile
16# used by databases/postgresql96-pltcl/Makefile 16# used by databases/postgresql96-pltcl/Makefile
17# used by databases/postgresql96-server/Makefile 17# used by databases/postgresql96-server/Makefile
18 18
19DISTNAME= postgresql-9.6.12 19DISTNAME= postgresql-9.6.13
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[0-8][0-9]-[0-9]* 29CONFLICTS+= postgresql[0-8][0-9]-[0-9]*
30CONFLICTS+= postgresql9[012345789]-[0-9]* 30CONFLICTS+= postgresql9[012345789]-[0-9]*
31 31
32.if !empty(PKGNAME:M*-*-*) 32.if !empty(PKGNAME:M*-*-*)

cvs diff -r1.14 -r1.15 pkgsrc/databases/postgresql96/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96/Attic/distinfo 2019/02/17 08:26:12 1.14
+++ pkgsrc/databases/postgresql96/Attic/distinfo 2019/05/13 20:38:12 1.15
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.14 2019/02/17 08:26:12 adam Exp $ 1$NetBSD: distinfo,v 1.15 2019/05/13 20:38:12 adam Exp $
2 2
3SHA1 (postgresql-9.6.12.tar.bz2) = e505868d08b2645d08d87d747c652ac1a62518b8 3SHA1 (postgresql-9.6.13.tar.bz2) = 32b9bd28f68426a42c596d1fcedeb971401aee88
4RMD160 (postgresql-9.6.12.tar.bz2) = 0a638810496adedcea3b672eb9e7cffe4d6909f4 4RMD160 (postgresql-9.6.13.tar.bz2) = 02a09368968a2962791310e94d68bd6380bb2d3d
5SHA512 (postgresql-9.6.12.tar.bz2) = 3a7a96caf682461f1f9bffdbe2b72b1ce00cc6680145e00c139e4af8b9dc8b8679fda1626de65921d6e187fa9290efc930584b98f1fd2aba1ba3d790a741a415 5SHA512 (postgresql-9.6.13.tar.bz2) = 65cc70410ad4a1a738b92855b92eecdbb9efbbca0eb9a45a138d47b696c8f9c9cd19073fbfdf5c80eea7633d0be29b4ed8acbadd38724acf8f18c90bb30f9b26
6Size (postgresql-9.6.12.tar.bz2) = 18759442 bytes 6Size (postgresql-9.6.13.tar.bz2) = 18767279 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c 8SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
9SHA1 (patch-configure) = db34614cef013a91dc229be319e5f09c657c3f24 9SHA1 (patch-configure) = db34614cef013a91dc229be319e5f09c657c3f24
10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 10SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
11SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a 11SHA1 (patch-src_Makefile.global.in) = 2ab3affedc77b202f6749964287438d6179ca23a
12SHA1 (patch-src_Makefile.shlib) = c2b7008ebcee1b7bfec46b9b35e91be2eef287ae 12SHA1 (patch-src_Makefile.shlib) = c2b7008ebcee1b7bfec46b9b35e91be2eef287ae
13SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca 13SHA1 (patch-src_backend_Makefile) = b70b38ea23af6cdde9d2349f2441a429078cfaca
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
19SHA1 (patch-src_pl_plperl_plperl.h) = 4c9c313bbc872802c57f3efd885a2ce6335d5d79 19SHA1 (patch-src_pl_plperl_plperl.h) = 4c9c313bbc872802c57f3efd885a2ce6335d5d79

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql96-docs/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96-docs/Attic/PLIST 2019/02/17 08:26:13 1.12
+++ pkgsrc/databases/postgresql96-docs/Attic/PLIST 2019/05/13 20:38:12 1.13
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.12 2019/02/17 08:26:13 adam Exp $ 1@comment $NetBSD: PLIST,v 1.13 2019/05/13 20:38:12 adam Exp $
2man/man1/clusterdb.1 2man/man1/clusterdb.1
3man/man1/createdb.1 3man/man1/createdb.1
4man/man1/createlang.1 4man/man1/createlang.1
5man/man1/createuser.1 5man/man1/createuser.1
6man/man1/dropdb.1 6man/man1/dropdb.1
7man/man1/droplang.1 7man/man1/droplang.1
8man/man1/dropuser.1 8man/man1/dropuser.1
9man/man1/ecpg.1 9man/man1/ecpg.1
10man/man1/initdb.1 10man/man1/initdb.1
11man/man1/oid2name.1 11man/man1/oid2name.1
12man/man1/pg_archivecleanup.1 12man/man1/pg_archivecleanup.1
13man/man1/pg_basebackup.1 13man/man1/pg_basebackup.1
14man/man1/pg_config.1 14man/man1/pg_config.1
@@ -875,26 +875,27 @@ share/doc/postgresql/html/recovery-targe @@ -875,26 +875,27 @@ share/doc/postgresql/html/recovery-targe
875share/doc/postgresql/html/reference-client.html 875share/doc/postgresql/html/reference-client.html
876share/doc/postgresql/html/reference-server.html 876share/doc/postgresql/html/reference-server.html
877share/doc/postgresql/html/reference.html 877share/doc/postgresql/html/reference.html
878share/doc/postgresql/html/regress-coverage.html 878share/doc/postgresql/html/regress-coverage.html
879share/doc/postgresql/html/regress-evaluation.html 879share/doc/postgresql/html/regress-evaluation.html
880share/doc/postgresql/html/regress-run.html 880share/doc/postgresql/html/regress-run.html
881share/doc/postgresql/html/regress-tap.html 881share/doc/postgresql/html/regress-tap.html
882share/doc/postgresql/html/regress-variant.html 882share/doc/postgresql/html/regress-variant.html
883share/doc/postgresql/html/regress.html 883share/doc/postgresql/html/regress.html
884share/doc/postgresql/html/release-9-6-1.html 884share/doc/postgresql/html/release-9-6-1.html
885share/doc/postgresql/html/release-9-6-10.html 885share/doc/postgresql/html/release-9-6-10.html
886share/doc/postgresql/html/release-9-6-11.html 886share/doc/postgresql/html/release-9-6-11.html
887share/doc/postgresql/html/release-9-6-12.html 887share/doc/postgresql/html/release-9-6-12.html
 888share/doc/postgresql/html/release-9-6-13.html
888share/doc/postgresql/html/release-9-6-2.html 889share/doc/postgresql/html/release-9-6-2.html
889share/doc/postgresql/html/release-9-6-3.html 890share/doc/postgresql/html/release-9-6-3.html
890share/doc/postgresql/html/release-9-6-4.html 891share/doc/postgresql/html/release-9-6-4.html
891share/doc/postgresql/html/release-9-6-5.html 892share/doc/postgresql/html/release-9-6-5.html
892share/doc/postgresql/html/release-9-6-6.html 893share/doc/postgresql/html/release-9-6-6.html
893share/doc/postgresql/html/release-9-6-7.html 894share/doc/postgresql/html/release-9-6-7.html
894share/doc/postgresql/html/release-9-6-8.html 895share/doc/postgresql/html/release-9-6-8.html
895share/doc/postgresql/html/release-9-6-9.html 896share/doc/postgresql/html/release-9-6-9.html
896share/doc/postgresql/html/release-9-6.html 897share/doc/postgresql/html/release-9-6.html
897share/doc/postgresql/html/release-prior.html 898share/doc/postgresql/html/release-prior.html
898share/doc/postgresql/html/release.html 899share/doc/postgresql/html/release.html
899share/doc/postgresql/html/replication-origins.html 900share/doc/postgresql/html/replication-origins.html
900share/doc/postgresql/html/resources.html 901share/doc/postgresql/html/resources.html

cvs diff -r1.4 -r1.5 pkgsrc/databases/postgresql96-plpython/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96-plpython/Attic/Makefile 2019/04/25 07:32:41 1.4
+++ pkgsrc/databases/postgresql96-plpython/Attic/Makefile 2019/05/13 20:38:12 1.5
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.4 2019/04/25 07:32:41 maya Exp $ 1# $NetBSD: Makefile,v 1.5 2019/05/13 20:38:12 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/96-plpython-/} 3PKGNAME= ${DISTNAME:C/-/96-plpython-/}
4PKGREVISION= 1 
5COMMENT= PL/Python procedural language for the PostgreSQL backend 4COMMENT= PL/Python procedural language for the PostgreSQL backend
6 5
7DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server 6DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server
8 7
9.include "../../databases/postgresql96/Makefile.common" 8.include "../../databases/postgresql96/Makefile.common"
10 9
11CONFIGURE_ARGS+= --with-python 10CONFIGURE_ARGS+= --with-python
12CONFIGURE_ENV+= PYTHON="${PYTHONBIN}" 11CONFIGURE_ENV+= PYTHON="${PYTHONBIN}"
13BUILD_MAKE_FLAGS= PGXS=1 12BUILD_MAKE_FLAGS= PGXS=1
14 13
15BUILD_DIRS= src/pl/plpython contrib/hstore_plpython 14BUILD_DIRS= src/pl/plpython contrib/hstore_plpython
16 15
17.include "../../databases/postgresql96-client/buildlink3.mk" 16.include "../../databases/postgresql96-client/buildlink3.mk"