Mon Nov 13 09:33:33 2017 UTC ()
postgresql: updated to the latest

The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 10.1, 9.6.6, 9.5.10, 9.4.15, 9.3.20, and 9.2.24. This release fixes three security issues. This release also fixes issues found in BRIN indexing, logical replication and other bugs reported over the past three months.

All users using the affected versions of PostgreSQL should update as soon as possible. If you use BRIN indexes or contrib/start-scripts, please see the release notes for additional post-upgrade steps.

Security Issues

Three security vulnerabilities have been fixed by this release:

CVE-2017-12172: Start scripts permit database administrator to modify root-owned files
CVE-2017-15098: Memory disclosure in JSON functions
CVE-2017-15099: INSERT ... ON CONFLICT DO UPDATE fails to enforce SELECT privileges

Bug Fixes and Improvements

This update also fixes a number of bugs reported in the last few months. Some of these issues affect only version 10, but many affect all supported versions:

Fix a race condition in BRIN indexing that could cause some rows to not be included in the indexing.
Fix crash when logical decoding is invoked from a PL language function.
Several fixes for logical replication.
Restored behavior for CTEs attached to INSERT/UPDATE/DELETE statements to pre-version 10.
Prevent low-probability crash in processing of nested trigger firings.
Do not evaluate an aggregate function's argument expressions when the conditions in the FILTER clause evaluate to FALSE. This complies with SQL-standard behavior.
Fix incorrect query results when multiple GROUPING SETS columns contain the same simple variable.
Fix memory leak over the lifespan of a query when evaluating a set-returning function from the target list in a SELECT.
Several fixes for parallel query execution, including fixing a crash in the parallel execution of certain queries that contain a certain type of bitmap scan.
Fix json_build_array(), json_build_object(), jsonb_build_array(), and jsonb_build_object() to handle explicit VARIADIC arguments correctly.
Prevent infinite float values from being casted to the numeric type.
Fix autovacuum's ���work item��� logic to prevent possible crashes and silent loss of work items.
Several fixes for VIEWs around adding columns to the end of a view.
Fix for hashability detection of range data types that are created by a user.
Improvements on using extended statistics on columns for the purposes of query planning.
Prevent idle_in_transaction_session_timeout from being ignored when a statement_timeout occurred earlier.
Fix low-probability loss of NOTIFY messages due more than 2 billion transactions processing before any queries are executed in the session.
Several file system interaction fixes.
Correctly restore the umask setting when file creation fails in COPY or lo_export().
Fix pg_dump to ensure that it emits GRANT commands in a valid order.
Fix pg_basebackup's matching of tablespace paths to canonicalize both paths before comparing to help improve Windows compatibility.
Fix libpq to not require user's home directory to exist when trying to read the "~/.pgpass" file.
Several fixes for ecpg.


(adam)
diff -r1.2 -r1.3 pkgsrc/databases/postgresql10/Makefile.common
diff -r1.1 -r1.2 pkgsrc/databases/postgresql10/distinfo
diff -r1.2 -r1.3 pkgsrc/databases/postgresql10-client/Makefile
diff -r1.1 -r1.2 pkgsrc/databases/postgresql10-docs/PLIST
diff -r1.1 -r1.2 pkgsrc/databases/postgresql10-server/PLIST
diff -r1.32 -r1.33 pkgsrc/databases/postgresql92/Makefile.common
diff -r1.25 -r1.26 pkgsrc/databases/postgresql92/distinfo
diff -r1.3 -r1.4 pkgsrc/databases/postgresql92/options.mk
diff -r1.10 -r1.11 pkgsrc/databases/postgresql92-client/Makefile
diff -r1.23 -r1.24 pkgsrc/databases/postgresql92-docs/PLIST
diff -r1.13 -r1.14 pkgsrc/databases/postgresql92-server/PLIST
diff -r1.28 -r1.29 pkgsrc/databases/postgresql93/Makefile.common
diff -r1.25 -r1.26 pkgsrc/databases/postgresql93/distinfo
diff -r1.2 -r1.3 pkgsrc/databases/postgresql93/options.mk
diff -r1.12 -r1.13 pkgsrc/databases/postgresql93-client/Makefile
diff -r1.20 -r1.21 pkgsrc/databases/postgresql93-docs/PLIST
diff -r1.11 -r1.12 pkgsrc/databases/postgresql93-server/PLIST
diff -r1.20 -r1.21 pkgsrc/databases/postgresql94/Makefile.common
diff -r1.17 -r1.18 pkgsrc/databases/postgresql94/distinfo
diff -r1.1 -r1.2 pkgsrc/databases/postgresql94/options.mk
diff -r1.6 -r1.7 pkgsrc/databases/postgresql94-client/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql94-docs/Makefile
diff -r1.15 -r1.16 pkgsrc/databases/postgresql94-docs/PLIST
diff -r1.8 -r1.9 pkgsrc/databases/postgresql94-plperl/Makefile
diff -r1.8 -r1.9 pkgsrc/databases/postgresql94-server/PLIST
diff -r1.2 -r0 pkgsrc/databases/postgresql94/patches/patch-src_timezone_strftime.c
diff -r1.13 -r1.14 pkgsrc/databases/postgresql95/Makefile.common
diff -r1.10 -r1.11 pkgsrc/databases/postgresql95/distinfo
diff -r1.1 -r1.2 pkgsrc/databases/postgresql95/options.mk
diff -r1.6 -r1.7 pkgsrc/databases/postgresql95-client/Makefile
diff -r1.9 -r1.10 pkgsrc/databases/postgresql95-docs/PLIST
diff -r1.6 -r1.7 pkgsrc/databases/postgresql95-server/PLIST
diff -r1.7 -r1.8 pkgsrc/databases/postgresql96/Makefile.common
diff -r1.6 -r1.7 pkgsrc/databases/postgresql96/distinfo
diff -r1.1 -r1.2 pkgsrc/databases/postgresql96/options.mk
diff -r1.4 -r1.5 pkgsrc/databases/postgresql96-client/Makefile
diff -r1.5 -r1.6 pkgsrc/databases/postgresql96-docs/PLIST
diff -r1.3 -r1.4 pkgsrc/databases/postgresql96-server/PLIST

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

--- pkgsrc/databases/postgresql10/Attic/Makefile.common 2017/11/10 14:47:41 1.2
+++ pkgsrc/databases/postgresql10/Attic/Makefile.common 2017/11/13 09:33:31 1.3
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.2 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.3 2017/11/13 09:33:31 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.0 19DISTNAME= postgresql-10.1
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/^.*-//}
@@ -65,42 +65,39 @@ CONFIGURE_ARGS+= --with-template=${PG_TE @@ -65,42 +65,39 @@ CONFIGURE_ARGS+= --with-template=${PG_TE
65CONFIGURE_ARGS+= --enable-nls 65CONFIGURE_ARGS+= --enable-nls
66CONFIGURE_ARGS+= --with-gssapi 66CONFIGURE_ARGS+= --with-gssapi
67CONFIGURE_ARGS+= --with-libxml 67CONFIGURE_ARGS+= --with-libxml
68CONFIGURE_ARGS+= --with-readline 68CONFIGURE_ARGS+= --with-readline
69CONFIGURE_ARGS+= --without-perl 69CONFIGURE_ARGS+= --without-perl
70CONFIGURE_ARGS+= --without-python 70CONFIGURE_ARGS+= --without-python
71CONFIGURE_ARGS+= --without-tcl 71CONFIGURE_ARGS+= --without-tcl
72 72
73# avoid pointing to a wrapper 73# avoid pointing to a wrapper
74CONFIGURE_ENV+= MSGFMT=${TOOLS_PATH.msgfmt} 74CONFIGURE_ENV+= MSGFMT=${TOOLS_PATH.msgfmt}
75 75
76# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 76# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
77# procfs and largefile. 77# procfs and largefile.
78.if ${OPSYS} == "SunOS" 78CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
79CONFIGURE_ENV+= ac_cv_header_sys_ucred_h=no 
80.endif 
81 79
82# pkgsrc silently filters the --as-needed linker arg, but that makes 80# pkgsrc silently filters the --as-needed linker arg, but that makes
83# it leak into the pgxs Makefiles and compromises manual building 81# it leak into the pgxs Makefiles and compromises manual building
84# against PostgreSQL files installed. Disable it here to prevent 82# against PostgreSQL files installed. Disable it here to prevent
85# that from happening. 83# that from happening.
86.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 84.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
87CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 85CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
88.endif 86.endif
89 87
90# configure fails on OpenBSD and MirBSD if thread safety is enabled. 88# configure fails on OpenBSD and MirBSD if thread safety is enabled.
91.if ${OPSYS} == "OpenBSD" || ${OPSYS} == "MirBSD" 89CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
92CONFIGURE_ARGS+= --disable-thread-safety 90CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
93.endif 
94 91
95# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 92# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
96# This also limits the size of a tuple. The valid values are powers 93# This also limits the size of a tuple. The valid values are powers
97# of 2 up to 32768, and the default size is 8196. Please don't change 94# of 2 up to 32768, and the default size is 8196. Please don't change
98# this value unless you know what you are doing. 95# this value unless you know what you are doing.
99BUILD_DEFS+= PGSQL_BLCKSZ 96BUILD_DEFS+= PGSQL_BLCKSZ
100.if defined(PGSQL_BLCKSZ) 97.if defined(PGSQL_BLCKSZ)
101CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 98CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
102.endif 99.endif
103 100
104# PostgreSQL explicitly forbids any use of -ffast-math 101# PostgreSQL explicitly forbids any use of -ffast-math
105BUILDLINK_TRANSFORM+= rm:-ffast-math 102BUILDLINK_TRANSFORM+= rm:-ffast-math
106 103

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

--- pkgsrc/databases/postgresql10/Attic/distinfo 2017/10/23 20:33:49 1.1
+++ pkgsrc/databases/postgresql10/Attic/distinfo 2017/11/13 09:33:31 1.2
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.1 2017/10/23 20:33:49 adam Exp $ 1$NetBSD: distinfo,v 1.2 2017/11/13 09:33:31 adam Exp $
2 2
3SHA1 (postgresql-10.0.tar.bz2) = 4c26f81278f7da12f46f2ff4fda5b0311e191b95 3SHA1 (postgresql-10.1.tar.bz2) = 4adcfd527ec1652ecd7a22eb71541928d3d37277
4RMD160 (postgresql-10.0.tar.bz2) = d8995f0f4072d5bee91274f508e18a2155ef346f 4RMD160 (postgresql-10.1.tar.bz2) = 4238ae067e5e282ee36302d596ea0654dd9e96b8
5SHA512 (postgresql-10.0.tar.bz2) = 88295af13db77a85a604c925aa627d383fdac62c1185119bba87753ce4167a13aed0f055a7a1329b3051f8757c6ba7529baed00a564ef0cfbee685720f282678 5SHA512 (postgresql-10.1.tar.bz2) = 06050d353aa43f32e0de0199d833d8a4652aff893b718b1c40ed31837838f73fe4d977ac0f2164ab97b3eeff4aae3409f440601740898a893877d96bc0ed1882
6Size (postgresql-10.0.tar.bz2) = 19639147 bytes 6Size (postgresql-10.1.tar.bz2) = 19669989 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5 8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632 9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632
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) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3 12SHA1 (patch-src_Makefile.shlib) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3
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) = 0e7daec79a00d7378326e56525e50cfe61cfc174 19SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174

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

--- pkgsrc/databases/postgresql10-client/Attic/Makefile 2017/11/10 14:47:41 1.2
+++ pkgsrc/databases/postgresql10-client/Attic/Makefile 2017/11/13 09:33:31 1.3
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.2 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile,v 1.3 2017/11/13 09:33:31 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/10-client-/} 3PKGNAME= ${DISTNAME:C/-/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 tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-zlib 10CONFIGURE_ARGS+= --with-zlib
12 11
13# Override INSTALL script to avoid unprivileged user/group 12# Override INSTALL script to avoid unprivileged user/group
14# leaking into the binary package 13# leaking into the binary package
15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 14CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
16 15
17.include "../../mk/bsd.prefs.mk" 16.include "../../mk/bsd.prefs.mk"

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

--- pkgsrc/databases/postgresql10-docs/Attic/PLIST 2017/10/23 20:33:49 1.1
+++ pkgsrc/databases/postgresql10-docs/Attic/PLIST 2017/11/13 09:33:31 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.1 2017/10/23 20:33:49 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2017/11/13 09:33:31 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
@@ -904,26 +904,27 @@ share/doc/postgresql/html/reference.html @@ -904,26 +904,27 @@ share/doc/postgresql/html/reference.html
904share/doc/postgresql/html/regress-coverage.html 904share/doc/postgresql/html/regress-coverage.html
905share/doc/postgresql/html/regress-evaluation.html 905share/doc/postgresql/html/regress-evaluation.html
906share/doc/postgresql/html/regress-run.html 906share/doc/postgresql/html/regress-run.html
907share/doc/postgresql/html/regress-tap.html 907share/doc/postgresql/html/regress-tap.html
908share/doc/postgresql/html/regress-variant.html 908share/doc/postgresql/html/regress-variant.html
909share/doc/postgresql/html/regress.html 909share/doc/postgresql/html/regress.html
910share/doc/postgresql/html/release-0-01.html 910share/doc/postgresql/html/release-0-01.html
911share/doc/postgresql/html/release-0-02.html 911share/doc/postgresql/html/release-0-02.html
912share/doc/postgresql/html/release-0-03.html 912share/doc/postgresql/html/release-0-03.html
913share/doc/postgresql/html/release-1-0.html 913share/doc/postgresql/html/release-1-0.html
914share/doc/postgresql/html/release-1-01.html 914share/doc/postgresql/html/release-1-01.html
915share/doc/postgresql/html/release-1-02.html 915share/doc/postgresql/html/release-1-02.html
916share/doc/postgresql/html/release-1-09.html 916share/doc/postgresql/html/release-1-09.html
 917share/doc/postgresql/html/release-10-1.html
917share/doc/postgresql/html/release-10.html 918share/doc/postgresql/html/release-10.html
918share/doc/postgresql/html/release-6-0.html 919share/doc/postgresql/html/release-6-0.html
919share/doc/postgresql/html/release-6-1-1.html 920share/doc/postgresql/html/release-6-1-1.html
920share/doc/postgresql/html/release-6-1.html 921share/doc/postgresql/html/release-6-1.html
921share/doc/postgresql/html/release-6-2-1.html 922share/doc/postgresql/html/release-6-2-1.html
922share/doc/postgresql/html/release-6-2.html 923share/doc/postgresql/html/release-6-2.html
923share/doc/postgresql/html/release-6-3-1.html 924share/doc/postgresql/html/release-6-3-1.html
924share/doc/postgresql/html/release-6-3-2.html 925share/doc/postgresql/html/release-6-3-2.html
925share/doc/postgresql/html/release-6-3.html 926share/doc/postgresql/html/release-6-3.html
926share/doc/postgresql/html/release-6-4-1.html 927share/doc/postgresql/html/release-6-4-1.html
927share/doc/postgresql/html/release-6-4-2.html 928share/doc/postgresql/html/release-6-4-2.html
928share/doc/postgresql/html/release-6-4.html 929share/doc/postgresql/html/release-6-4.html
929share/doc/postgresql/html/release-6-5-1.html 930share/doc/postgresql/html/release-6-5-1.html
@@ -1177,84 +1178,89 @@ share/doc/postgresql/html/release-9-2-11 @@ -1177,84 +1178,89 @@ share/doc/postgresql/html/release-9-2-11
1177share/doc/postgresql/html/release-9-2-12.html 1178share/doc/postgresql/html/release-9-2-12.html
1178share/doc/postgresql/html/release-9-2-13.html 1179share/doc/postgresql/html/release-9-2-13.html
1179share/doc/postgresql/html/release-9-2-14.html 1180share/doc/postgresql/html/release-9-2-14.html
1180share/doc/postgresql/html/release-9-2-15.html 1181share/doc/postgresql/html/release-9-2-15.html
1181share/doc/postgresql/html/release-9-2-16.html 1182share/doc/postgresql/html/release-9-2-16.html
1182share/doc/postgresql/html/release-9-2-17.html 1183share/doc/postgresql/html/release-9-2-17.html
1183share/doc/postgresql/html/release-9-2-18.html 1184share/doc/postgresql/html/release-9-2-18.html
1184share/doc/postgresql/html/release-9-2-19.html 1185share/doc/postgresql/html/release-9-2-19.html
1185share/doc/postgresql/html/release-9-2-2.html 1186share/doc/postgresql/html/release-9-2-2.html
1186share/doc/postgresql/html/release-9-2-20.html 1187share/doc/postgresql/html/release-9-2-20.html
1187share/doc/postgresql/html/release-9-2-21.html 1188share/doc/postgresql/html/release-9-2-21.html
1188share/doc/postgresql/html/release-9-2-22.html 1189share/doc/postgresql/html/release-9-2-22.html
1189share/doc/postgresql/html/release-9-2-23.html 1190share/doc/postgresql/html/release-9-2-23.html
 1191share/doc/postgresql/html/release-9-2-24.html
1190share/doc/postgresql/html/release-9-2-3.html 1192share/doc/postgresql/html/release-9-2-3.html
1191share/doc/postgresql/html/release-9-2-4.html 1193share/doc/postgresql/html/release-9-2-4.html
1192share/doc/postgresql/html/release-9-2-5.html 1194share/doc/postgresql/html/release-9-2-5.html
1193share/doc/postgresql/html/release-9-2-6.html 1195share/doc/postgresql/html/release-9-2-6.html
1194share/doc/postgresql/html/release-9-2-7.html 1196share/doc/postgresql/html/release-9-2-7.html
1195share/doc/postgresql/html/release-9-2-8.html 1197share/doc/postgresql/html/release-9-2-8.html
1196share/doc/postgresql/html/release-9-2-9.html 1198share/doc/postgresql/html/release-9-2-9.html
1197share/doc/postgresql/html/release-9-2.html 1199share/doc/postgresql/html/release-9-2.html
1198share/doc/postgresql/html/release-9-3-1.html 1200share/doc/postgresql/html/release-9-3-1.html
1199share/doc/postgresql/html/release-9-3-10.html 1201share/doc/postgresql/html/release-9-3-10.html
1200share/doc/postgresql/html/release-9-3-11.html 1202share/doc/postgresql/html/release-9-3-11.html
1201share/doc/postgresql/html/release-9-3-12.html 1203share/doc/postgresql/html/release-9-3-12.html
1202share/doc/postgresql/html/release-9-3-13.html 1204share/doc/postgresql/html/release-9-3-13.html
1203share/doc/postgresql/html/release-9-3-14.html 1205share/doc/postgresql/html/release-9-3-14.html
1204share/doc/postgresql/html/release-9-3-15.html 1206share/doc/postgresql/html/release-9-3-15.html
1205share/doc/postgresql/html/release-9-3-16.html 1207share/doc/postgresql/html/release-9-3-16.html
1206share/doc/postgresql/html/release-9-3-17.html 1208share/doc/postgresql/html/release-9-3-17.html
1207share/doc/postgresql/html/release-9-3-18.html 1209share/doc/postgresql/html/release-9-3-18.html
1208share/doc/postgresql/html/release-9-3-19.html 1210share/doc/postgresql/html/release-9-3-19.html
1209share/doc/postgresql/html/release-9-3-2.html 1211share/doc/postgresql/html/release-9-3-2.html
 1212share/doc/postgresql/html/release-9-3-20.html
1210share/doc/postgresql/html/release-9-3-3.html 1213share/doc/postgresql/html/release-9-3-3.html
1211share/doc/postgresql/html/release-9-3-4.html 1214share/doc/postgresql/html/release-9-3-4.html
1212share/doc/postgresql/html/release-9-3-5.html 1215share/doc/postgresql/html/release-9-3-5.html
1213share/doc/postgresql/html/release-9-3-6.html 1216share/doc/postgresql/html/release-9-3-6.html
1214share/doc/postgresql/html/release-9-3-7.html 1217share/doc/postgresql/html/release-9-3-7.html
1215share/doc/postgresql/html/release-9-3-8.html 1218share/doc/postgresql/html/release-9-3-8.html
1216share/doc/postgresql/html/release-9-3-9.html 1219share/doc/postgresql/html/release-9-3-9.html
1217share/doc/postgresql/html/release-9-3.html 1220share/doc/postgresql/html/release-9-3.html
1218share/doc/postgresql/html/release-9-4-1.html 1221share/doc/postgresql/html/release-9-4-1.html
1219share/doc/postgresql/html/release-9-4-10.html 1222share/doc/postgresql/html/release-9-4-10.html
1220share/doc/postgresql/html/release-9-4-11.html 1223share/doc/postgresql/html/release-9-4-11.html
1221share/doc/postgresql/html/release-9-4-12.html 1224share/doc/postgresql/html/release-9-4-12.html
1222share/doc/postgresql/html/release-9-4-13.html 1225share/doc/postgresql/html/release-9-4-13.html
1223share/doc/postgresql/html/release-9-4-14.html 1226share/doc/postgresql/html/release-9-4-14.html
 1227share/doc/postgresql/html/release-9-4-15.html
1224share/doc/postgresql/html/release-9-4-2.html 1228share/doc/postgresql/html/release-9-4-2.html
1225share/doc/postgresql/html/release-9-4-3.html 1229share/doc/postgresql/html/release-9-4-3.html
1226share/doc/postgresql/html/release-9-4-4.html 1230share/doc/postgresql/html/release-9-4-4.html
1227share/doc/postgresql/html/release-9-4-5.html 1231share/doc/postgresql/html/release-9-4-5.html
1228share/doc/postgresql/html/release-9-4-6.html 1232share/doc/postgresql/html/release-9-4-6.html
1229share/doc/postgresql/html/release-9-4-7.html 1233share/doc/postgresql/html/release-9-4-7.html
1230share/doc/postgresql/html/release-9-4-8.html 1234share/doc/postgresql/html/release-9-4-8.html
1231share/doc/postgresql/html/release-9-4-9.html 1235share/doc/postgresql/html/release-9-4-9.html
1232share/doc/postgresql/html/release-9-4.html 1236share/doc/postgresql/html/release-9-4.html
1233share/doc/postgresql/html/release-9-5-1.html 1237share/doc/postgresql/html/release-9-5-1.html
 1238share/doc/postgresql/html/release-9-5-10.html
1234share/doc/postgresql/html/release-9-5-2.html 1239share/doc/postgresql/html/release-9-5-2.html
1235share/doc/postgresql/html/release-9-5-3.html 1240share/doc/postgresql/html/release-9-5-3.html
1236share/doc/postgresql/html/release-9-5-4.html 1241share/doc/postgresql/html/release-9-5-4.html
1237share/doc/postgresql/html/release-9-5-5.html 1242share/doc/postgresql/html/release-9-5-5.html
1238share/doc/postgresql/html/release-9-5-6.html 1243share/doc/postgresql/html/release-9-5-6.html
1239share/doc/postgresql/html/release-9-5-7.html 1244share/doc/postgresql/html/release-9-5-7.html
1240share/doc/postgresql/html/release-9-5-8.html 1245share/doc/postgresql/html/release-9-5-8.html
1241share/doc/postgresql/html/release-9-5-9.html 1246share/doc/postgresql/html/release-9-5-9.html
1242share/doc/postgresql/html/release-9-5.html 1247share/doc/postgresql/html/release-9-5.html
1243share/doc/postgresql/html/release-9-6-1.html 1248share/doc/postgresql/html/release-9-6-1.html
1244share/doc/postgresql/html/release-9-6-2.html 1249share/doc/postgresql/html/release-9-6-2.html
1245share/doc/postgresql/html/release-9-6-3.html 1250share/doc/postgresql/html/release-9-6-3.html
1246share/doc/postgresql/html/release-9-6-4.html 1251share/doc/postgresql/html/release-9-6-4.html
1247share/doc/postgresql/html/release-9-6-5.html 1252share/doc/postgresql/html/release-9-6-5.html
 1253share/doc/postgresql/html/release-9-6-6.html
1248share/doc/postgresql/html/release-9-6.html 1254share/doc/postgresql/html/release-9-6.html
1249share/doc/postgresql/html/release.html 1255share/doc/postgresql/html/release.html
1250share/doc/postgresql/html/replication-origins.html 1256share/doc/postgresql/html/replication-origins.html
1251share/doc/postgresql/html/resources.html 1257share/doc/postgresql/html/resources.html
1252share/doc/postgresql/html/role-attributes.html 1258share/doc/postgresql/html/role-attributes.html
1253share/doc/postgresql/html/role-membership.html 1259share/doc/postgresql/html/role-membership.html
1254share/doc/postgresql/html/role-removal.html 1260share/doc/postgresql/html/role-removal.html
1255share/doc/postgresql/html/routine-reindex.html 1261share/doc/postgresql/html/routine-reindex.html
1256share/doc/postgresql/html/routine-vacuuming.html 1262share/doc/postgresql/html/routine-vacuuming.html
1257share/doc/postgresql/html/row-estimation-examples.html 1263share/doc/postgresql/html/row-estimation-examples.html
1258share/doc/postgresql/html/rowtypes.html 1264share/doc/postgresql/html/rowtypes.html
1259share/doc/postgresql/html/rule-system.html 1265share/doc/postgresql/html/rule-system.html
1260share/doc/postgresql/html/rules-materializedviews.html 1266share/doc/postgresql/html/rules-materializedviews.html

cvs diff -r1.1 -r1.2 pkgsrc/databases/postgresql10-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql10-server/Attic/PLIST 2017/10/23 20:33:50 1.1
+++ pkgsrc/databases/postgresql10-server/Attic/PLIST 2017/11/13 09:33:31 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.1 2017/10/23 20:33:50 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2017/11/13 09:33:31 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout @@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout
432share/postgresql/timezone/Australia/Sydney 432share/postgresql/timezone/Australia/Sydney
433share/postgresql/timezone/Australia/Tasmania 433share/postgresql/timezone/Australia/Tasmania
434share/postgresql/timezone/Australia/Victoria 434share/postgresql/timezone/Australia/Victoria
435share/postgresql/timezone/Australia/West 435share/postgresql/timezone/Australia/West
436share/postgresql/timezone/Australia/Yancowinna 436share/postgresql/timezone/Australia/Yancowinna
437share/postgresql/timezone/Brazil/Acre 437share/postgresql/timezone/Brazil/Acre
438share/postgresql/timezone/Brazil/DeNoronha 438share/postgresql/timezone/Brazil/DeNoronha
439share/postgresql/timezone/Brazil/East 439share/postgresql/timezone/Brazil/East
440share/postgresql/timezone/Brazil/West 440share/postgresql/timezone/Brazil/West
441share/postgresql/timezone/CET 441share/postgresql/timezone/CET
442share/postgresql/timezone/CST6CDT 442share/postgresql/timezone/CST6CDT
443share/postgresql/timezone/Canada/Atlantic 443share/postgresql/timezone/Canada/Atlantic
444share/postgresql/timezone/Canada/Central 444share/postgresql/timezone/Canada/Central
445share/postgresql/timezone/Canada/East-Saskatchewan 
446share/postgresql/timezone/Canada/Eastern 445share/postgresql/timezone/Canada/Eastern
447share/postgresql/timezone/Canada/Mountain 446share/postgresql/timezone/Canada/Mountain
448share/postgresql/timezone/Canada/Newfoundland 447share/postgresql/timezone/Canada/Newfoundland
449share/postgresql/timezone/Canada/Pacific 448share/postgresql/timezone/Canada/Pacific
450share/postgresql/timezone/Canada/Saskatchewan 449share/postgresql/timezone/Canada/Saskatchewan
451share/postgresql/timezone/Canada/Yukon 450share/postgresql/timezone/Canada/Yukon
452share/postgresql/timezone/Chile/Continental 451share/postgresql/timezone/Chile/Continental
453share/postgresql/timezone/Chile/EasterIsland 452share/postgresql/timezone/Chile/EasterIsland
454share/postgresql/timezone/Cuba 453share/postgresql/timezone/Cuba
455share/postgresql/timezone/EET 454share/postgresql/timezone/EET
456share/postgresql/timezone/EST 455share/postgresql/timezone/EST
457share/postgresql/timezone/EST5EDT 456share/postgresql/timezone/EST5EDT
458share/postgresql/timezone/Egypt 457share/postgresql/timezone/Egypt

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

--- pkgsrc/databases/postgresql92/Attic/Makefile.common 2017/11/10 14:47:41 1.32
+++ pkgsrc/databases/postgresql92/Attic/Makefile.common 2017/11/13 09:33:31 1.33
@@ -1,124 +1,131 @@ @@ -1,124 +1,131 @@
1# $NetBSD: Makefile.common,v 1.32 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.33 2017/11/13 09:33:31 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/postgresql92-client/Makefile 11# used by databases/postgresql92-client/Makefile
12# used by databases/postgresql92-contrib/Makefile 12# used by databases/postgresql92-contrib/Makefile
13# used by databases/postgresql92-docs/Makefile 13# used by databases/postgresql92-docs/Makefile
14# used by databases/postgresql92-plperl/Makefile 14# used by databases/postgresql92-plperl/Makefile
15# used by databases/postgresql92-plpython/Makefile 15# used by databases/postgresql92-plpython/Makefile
16# used by databases/postgresql92-pltcl/Makefile 16# used by databases/postgresql92-pltcl/Makefile
17# used by databases/postgresql92-server/Makefile 17# used by databases/postgresql92-server/Makefile
18 18
19DISTNAME= postgresql-9.2.23 19DISTNAME= postgresql-9.2.24
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[013-9]-[0-9]* 30CONFLICTS+= postgresql9[013-9]-[0-9]*
31 31
32.if !empty(PKGNAME:M*-*-*) 32.if !empty(PKGNAME:M*-*-*)
33module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//} 33module= ${PKGNAME:C/-[0-9].*$//:C/^.*-//}
34CONFLICTS+= postgresql[0-8][0-9]-${module}-[0-9]* 34CONFLICTS+= postgresql[0-8][0-9]-${module}-[0-9]*
35CONFLICTS+= postgresql9[013-9]-${module}-[0-9]* 35CONFLICTS+= postgresql9[013-9]-${module}-[0-9]*
36.endif 36.endif
37 37
38DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql92/distinfo 38DISTINFO_FILE?= ${.CURDIR}/../../databases/postgresql92/distinfo
39COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql92/files 39COMMON_FILESDIR?= ${.CURDIR}/../../databases/postgresql92/files
40PATCHDIR?= ${.CURDIR}/../../databases/postgresql92/patches 40PATCHDIR?= ${.CURDIR}/../../databases/postgresql92/patches
41 41
42USE_GCC_RUNTIME= yes 
43USE_PKGLOCALEDIR= yes 42USE_PKGLOCALEDIR= yes
44USE_TOOLS+= bison gmake lex msgfmt 43USE_TOOLS+= bison gmake lex msgfmt
45PKG_SYSCONFSUBDIR= postgresql 44PKG_SYSCONFSUBDIR= postgresql
46 45
47.include "../../mk/bsd.prefs.mk" 46.include "../../mk/bsd.prefs.mk"
48 47
49PG_TEMPLATE.SunOS= solaris 48PG_TEMPLATE.SunOS= solaris
50PG_TEMPLATE.IRIX= irix5 49PG_TEMPLATE.IRIX= irix5
51PG_TEMPLATE.MirBSD= openbsd 50PG_TEMPLATE.MirBSD= openbsd
52.if !defined(PG_TEMPLATE.${OPSYS}) 51.if !defined(PG_TEMPLATE.${OPSYS})
53PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} 52PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
54.endif 53.endif
55 54
56PG_DATA_DIR= ${PREFIX}/share/postgresql 55PG_DATA_DIR= ${PREFIX}/share/postgresql
57PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
58PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
59PG_ETC_DIR= ${PKG_SYSCONFDIR} 58PG_ETC_DIR= ${PKG_SYSCONFDIR}
60 59
61GNU_CONFIGURE= yes 60GNU_CONFIGURE= yes
62CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
63CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
64CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
65CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
66CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
67 66
68CONFIGURE_ARGS+= --enable-nls 67CONFIGURE_ARGS+= --enable-nls
 68CONFIGURE_ARGS+= --with-gssapi
 69CONFIGURE_ARGS+= --with-libxml
 70CONFIGURE_ARGS+= --with-readline
69CONFIGURE_ARGS+= --without-perl 71CONFIGURE_ARGS+= --without-perl
70CONFIGURE_ARGS+= --without-python 72CONFIGURE_ARGS+= --without-python
71CONFIGURE_ARGS+= --without-readline 
72CONFIGURE_ARGS+= --without-tcl 73CONFIGURE_ARGS+= --without-tcl
73CONFIGURE_ARGS+= --without-zlib 
74 74
75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
76# procfs and largefile. 76# procfs and largefile.
77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no 77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
78 78
79# pkgsrc silently filters the --as-needed linker arg, but that makes 79# pkgsrc silently filters the --as-needed linker arg, but that makes
80# it leak into the pgxs Makefiles and compromises manual building 80# it leak into the pgxs Makefiles and compromises manual building
81# against PostgreSQL files installed. Disable it here to prevent 81# against PostgreSQL files installed. Disable it here to prevent
82# that from happening. 82# that from happening.
83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
85.endif 85.endif
86 86
87# configure fails on OpenBSD and MirBSD if thread safety is enabled. 87# configure fails on OpenBSD and MirBSD if thread safety is enabled.
88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety 88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
89CONFIGURE_ARGS.OpenBSD+= --disable-thread-safety 89CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
90 90
91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
92# This also limits the size of a tuple. The valid values are powers 92# This also limits the size of a tuple. The valid values are powers
93# of 2 up to 32768, and the default size is 8196. Please don't change 93# of 2 up to 32768, and the default size is 8196. Please don't change
94# this value unless you know what you are doing. 94# this value unless you know what you are doing.
95BUILD_DEFS+= PGSQL_BLCKSZ 95BUILD_DEFS+= PGSQL_BLCKSZ
96.if defined(PGSQL_BLCKSZ) 96.if defined(PGSQL_BLCKSZ)
97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
98.endif 98.endif
99 99
100# PostgreSQL explicitly forbids any use of -ffast-math 100# PostgreSQL explicitly forbids any use of -ffast-math
101BUILDLINK_TRANSFORM+= rm:-ffast-math 101BUILDLINK_TRANSFORM+= rm:-ffast-math
102 102
103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
104# to provide "dlopen" functionality for the PostgreSQL backend. 104# to provide "dlopen" functionality for the PostgreSQL backend.
105.if ${OPSYS} == "Interix" 105.if ${OPSYS} == "Interix"
106USE_LIBLTDL?= yes 106USE_LIBLTDL?= yes
107.endif 107.endif
108USE_LIBLTDL?= no 108USE_LIBLTDL?= no
109 109
110.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
111LIBS.SunOS+= -lintl 111LIBS.SunOS+= -lintl
 112.include "../../devel/zlib/buildlink3.mk"
 113.include "../../textproc/libxml2/buildlink3.mk"
 114
 115.include "../../mk/readline.buildlink3.mk"
 116.if ${READLINE_TYPE} == "editline"
 117CONFIGURE_ARGS+= --with-libedit-preferred
 118.endif
112 119
113.if !defined(META_PACKAGE) 120.if !defined(META_PACKAGE)
114post-extract: 121post-extract:
115. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 122. if !empty(USE_LIBLTDL:M[yY][eE][sS])
116 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 123 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
117 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 124 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
118 ${ECHO} "static int dummy = 0;" \ 125 ${ECHO} "static int dummy = 0;" \
119 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 126 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
120. endif 127. endif
121 touch ${WRKSRC}/src/template/dragonfly 128 touch ${WRKSRC}/src/template/dragonfly
122 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 129 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
123 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 130 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
124 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 131 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \

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

--- pkgsrc/databases/postgresql92/Attic/distinfo 2017/09/04 19:33:43 1.25
+++ pkgsrc/databases/postgresql92/Attic/distinfo 2017/11/13 09:33:31 1.26
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.25 2017/09/04 19:33:43 adam Exp $ 1$NetBSD: distinfo,v 1.26 2017/11/13 09:33:31 adam Exp $
2 2
3SHA1 (postgresql-9.2.23.tar.bz2) = bdedc8aebb1f1622834b7e5636e2712581c83731 3SHA1 (postgresql-9.2.24.tar.bz2) = 63d6966ccdbab6aae1f9754fdb8e341ada1ef653
4RMD160 (postgresql-9.2.23.tar.bz2) = 4200df89fc85ff1cd3e58cc5dee83bf457ddf1e5 4RMD160 (postgresql-9.2.24.tar.bz2) = 2fc1b9c37cfefd5fae5bd02f974484c5fc680c08
5SHA512 (postgresql-9.2.23.tar.bz2) = 9715cb9aa34921f7d246837c6c516d588f88fda543ad635520e9575a5ea448ad39062f2c89c086c7f129cc5f61f4dca33e4f5fd94e1df39da428507c56a81ba3 5SHA512 (postgresql-9.2.24.tar.bz2) = a6f043e5ef5e12e23c1c43b26a5ecafce62f3a86f38b5b85e7cb0cb7aa376d40e460a526baf67ae40de40525e4744fb5e48650ee5e007db4ce9742fcf548bd56
6Size (postgresql-9.2.23.tar.bz2) = 16531436 bytes 6Size (postgresql-9.2.24.tar.bz2) = 16552576 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0 8SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
9SHA1 (patch-configure) = 21b27add570cff1a24c440201eb1ed49f8223747 9SHA1 (patch-configure) = 21b27add570cff1a24c440201eb1ed49f8223747
10SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04 10SHA1 (patch-contrib_dblink_Makefile) = 4960ad57d42465fae203870548e4c53f8a32ce04
11SHA1 (patch-contrib_dblink_dblink.c) = 245ce06df88837ba88142aea1d0ba787d65ddb45 11SHA1 (patch-contrib_dblink_dblink.c) = 245ce06df88837ba88142aea1d0ba787d65ddb45
12SHA1 (patch-src_Makefile.shlib) = fedf35f38439a724fa6522e1aaef110c9909866a 12SHA1 (patch-src_Makefile.shlib) = fedf35f38439a724fa6522e1aaef110c9909866a
13SHA1 (patch-src_backend_Makefile) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5 13SHA1 (patch-src_backend_Makefile) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5
14SHA1 (patch-src_backend_utils_adt_datetime.c) = b220c39272bf8d2bda95119adcbab5b2495990d8 14SHA1 (patch-src_backend_utils_adt_datetime.c) = b220c39272bf8d2bda95119adcbab5b2495990d8
15SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 20578ab950465db07dab757db2fae4c4570cbbe1 15SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 20578ab950465db07dab757db2fae4c4570cbbe1
16SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 16SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0
17SHA1 (patch-src_pl_plperl_GNUmakefile) = 2b7448d6dd8550e2ea61f40728a2780068b93d07 17SHA1 (patch-src_pl_plperl_GNUmakefile) = 2b7448d6dd8550e2ea61f40728a2780068b93d07
18SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174 18SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql92/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql92/Attic/options.mk 2013/10/12 05:05:42 1.3
+++ pkgsrc/databases/postgresql92/Attic/options.mk 2017/11/13 09:33:31 1.4
@@ -1,73 +1,48 @@ @@ -1,73 +1,48 @@
1# $NetBSD: options.mk,v 1.3 2013/10/12 05:05:42 richard Exp $ 1# $NetBSD: options.mk,v 1.4 2017/11/13 09:33:31 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql92 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql92
4PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace 4PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8# Bonjour support
9### Bonjour support. 
10### 
11.if !empty(PKG_OPTIONS:Mbonjour) 9.if !empty(PKG_OPTIONS:Mbonjour)
12CONFIGURE_ARGS+= --with-bonjour 10CONFIGURE_ARGS+= --with-bonjour
13. if ${OPSYS} != "Darwin" 11. if ${OPSYS} != "Darwin"
14LIBS+= -ldns_sd 12LIBS+= -ldns_sd
15. endif 13. endif
16. include "../../net/mDNSResponder/buildlink3.mk" 14. include "../../net/mDNSResponder/buildlink3.mk"
17.endif 15.endif
18 16
19### 17# Dtrace support
20### GSSAPI authentication for the PostgreSQL backend. 18.if !empty(PKG_OPTIONS:Mdtrace)
21### 19CONFIGURE_ARGS+= --enable-dtrace
22.if !empty(PKG_OPTIONS:Mgssapi) 
23CONFIGURE_ARGS+= --with-gssapi 
24.endif 20.endif
25 21
26### 22# Kerberos5 authentication for the PostgreSQL backend
27### Kerberos5 authentication for the PostgreSQL backend. 
28### 
29.if !empty(PKG_OPTIONS:Mkerberos) 23.if !empty(PKG_OPTIONS:Mkerberos)
30. include "../../mk/krb5.buildlink3.mk" 24. include "../../mk/krb5.buildlink3.mk"
31CONFIGURE_ARGS+= --with-krb5 25CONFIGURE_ARGS+= --with-krb5
32 26
33CHECK_BUILTIN.${KRB5_TYPE}:= yes 27CHECK_BUILTIN.${KRB5_TYPE}:= yes
34.include "../../security/${KRB5_TYPE}/builtin.mk" 28.include "../../security/${KRB5_TYPE}/builtin.mk"
35CHECK_BUILTIN.${KRB5_TYPE}:= no 29CHECK_BUILTIN.${KRB5_TYPE}:= no
36 30
37. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \ 31. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \
38 exists(${SH_KRB5_CONFIG}) 32 exists(${SH_KRB5_CONFIG})
39CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags 33CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags
40CPPFLAGS+= ${CFLAGS_KRB5} 34CPPFLAGS+= ${CFLAGS_KRB5}
41. endif 35. endif
42.endif 36.endif
43 37
44### 38# LDAP authentication for the PostgreSQL backend
45### LDAP authentication for the PostgreSQL backend. 
46### 
47.if !empty(PKG_OPTIONS:Mldap) 39.if !empty(PKG_OPTIONS:Mldap)
48. include "../../databases/openldap-client/buildlink3.mk" 40. include "../../databases/openldap-client/buildlink3.mk"
49CONFIGURE_ARGS+= --with-ldap 41CONFIGURE_ARGS+= --with-ldap
50.endif 42.endif
51 43
52### 44# PAM authentication for the PostgreSQL backend
53### PAM authentication for the PostgreSQL backend. 
54### 
55.if !empty(PKG_OPTIONS:Mpam) 45.if !empty(PKG_OPTIONS:Mpam)
56. include "../../mk/pam.buildlink3.mk" 46. include "../../mk/pam.buildlink3.mk"
57CONFIGURE_ARGS+= --with-pam 47CONFIGURE_ARGS+= --with-pam
58.endif 48.endif
59 
60### 
61### XML support for the PostgreSQL backend. 
62### 
63.if !empty(PKG_OPTIONS:Mxml) 
64. include "../../textproc/libxml2/buildlink3.mk" 
65CONFIGURE_ARGS+= --with-libxml 
66.endif 
67 
68### 
69### Dtrace support 
70### 
71.if !empty(PKG_OPTIONS:Mdtrace) 
72CONFIGURE_ARGS+= --enable-dtrace 
73.endif 

cvs diff -r1.10 -r1.11 pkgsrc/databases/postgresql92-client/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql92-client/Attic/Makefile 2017/11/10 14:47:41 1.10
+++ pkgsrc/databases/postgresql92-client/Attic/Makefile 2017/11/13 09:33:31 1.11
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.10 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile,v 1.11 2017/11/13 09:33:31 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/92-client-/} 3PKGNAME= ${DISTNAME:C/-/92-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql92/Makefile.common" 6.include "../../databases/postgresql92/Makefile.common"
8 7
9USE_TOOLS+= gzip tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-readline 10CONFIGURE_ARGS+= --with-readline
12CONFIGURE_ARGS+= --with-zlib 11CONFIGURE_ARGS+= --with-zlib
13 12
14# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on 13# 1. The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
15# NetBSD earler than 4.0 or DragonFly. 14# NetBSD earler than 4.0 or DragonFly.
16# 2. configure with --enable-thread-safety fails on OpenBSD. 15# 2. configure with --enable-thread-safety fails on OpenBSD.
17.if (${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-3].*)) || \ 16.if (${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-3].*)) || \
@@ -30,29 +29,26 @@ CONFIGURE_ARGS+= --enable-thread-safety @@ -30,29 +29,26 @@ CONFIGURE_ARGS+= --enable-thread-safety
30 29
31INSTALL_DIRS= src/include 30INSTALL_DIRS= src/include
32INSTALL_DIRS+= src/interfaces 31INSTALL_DIRS+= src/interfaces
33INSTALL_DIRS+= src/bin 32INSTALL_DIRS+= src/bin
34INSTALL_DIRS+= src/port 33INSTALL_DIRS+= src/port
35BUILD_DIRS= ${INSTALL_DIRS} 34BUILD_DIRS= ${INSTALL_DIRS}
36# Without this, the Darwin build fails (related to -bundle_loader). 35# Without this, the Darwin build fails (related to -bundle_loader).
37BUILD_DIRS+= src/backend 36BUILD_DIRS+= src/backend
38 37
39.for f in pg_service.conf psqlrc 38.for f in pg_service.conf psqlrc
40CONF_FILES+= share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f} 39CONF_FILES+= share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f}
41.endfor 40.endfor
42 41
43# XXX work around core dumps with the native libedit 
44USE_GNU_READLINE= yes 
45 
46.include "../../devel/readline/buildlink3.mk" 42.include "../../devel/readline/buildlink3.mk"
47.include "../../devel/zlib/buildlink3.mk" 43.include "../../devel/zlib/buildlink3.mk"
48.include "../../security/openssl/buildlink3.mk" 44.include "../../security/openssl/buildlink3.mk"
49 45
50SUBST_CLASSES+= pgxs 46SUBST_CLASSES+= pgxs
51SUBST_STAGE.pgxs= post-build 47SUBST_STAGE.pgxs= post-build
52SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile 48SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile
53SUBST_FILES.pgxs= src/Makefile.global 49SUBST_FILES.pgxs= src/Makefile.global
54SUBST_SED.pgxs= -e 's,${TOOLS_CMD.bison},${TOOLS_PATH.bison},' 50SUBST_SED.pgxs= -e 's,${TOOLS_CMD.bison},${TOOLS_PATH.bison},'
55SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.lex},${TOOLS_PATH.lex},' 51SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.lex},${TOOLS_PATH.lex},'
56SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.mkdir},${TOOLS_PATH.mkdir},' 52SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.mkdir},${TOOLS_PATH.mkdir},'
57SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper/bin/ld,${LD},' 53SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper/bin/ld,${LD},'
58SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},' 54SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},'

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

--- pkgsrc/databases/postgresql92-docs/Attic/PLIST 2017/09/04 19:33:43 1.23
+++ pkgsrc/databases/postgresql92-docs/Attic/PLIST 2017/11/13 09:33:31 1.24
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.23 2017/09/04 19:33:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.24 2017/11/13 09:33:31 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
@@ -1073,26 +1073,27 @@ share/doc/postgresql/html/release-9-2-11 @@ -1073,26 +1073,27 @@ share/doc/postgresql/html/release-9-2-11
1073share/doc/postgresql/html/release-9-2-12.html 1073share/doc/postgresql/html/release-9-2-12.html
1074share/doc/postgresql/html/release-9-2-13.html 1074share/doc/postgresql/html/release-9-2-13.html
1075share/doc/postgresql/html/release-9-2-14.html 1075share/doc/postgresql/html/release-9-2-14.html
1076share/doc/postgresql/html/release-9-2-15.html 1076share/doc/postgresql/html/release-9-2-15.html
1077share/doc/postgresql/html/release-9-2-16.html 1077share/doc/postgresql/html/release-9-2-16.html
1078share/doc/postgresql/html/release-9-2-17.html 1078share/doc/postgresql/html/release-9-2-17.html
1079share/doc/postgresql/html/release-9-2-18.html 1079share/doc/postgresql/html/release-9-2-18.html
1080share/doc/postgresql/html/release-9-2-19.html 1080share/doc/postgresql/html/release-9-2-19.html
1081share/doc/postgresql/html/release-9-2-2.html 1081share/doc/postgresql/html/release-9-2-2.html
1082share/doc/postgresql/html/release-9-2-20.html 1082share/doc/postgresql/html/release-9-2-20.html
1083share/doc/postgresql/html/release-9-2-21.html 1083share/doc/postgresql/html/release-9-2-21.html
1084share/doc/postgresql/html/release-9-2-22.html 1084share/doc/postgresql/html/release-9-2-22.html
1085share/doc/postgresql/html/release-9-2-23.html 1085share/doc/postgresql/html/release-9-2-23.html
 1086share/doc/postgresql/html/release-9-2-24.html
1086share/doc/postgresql/html/release-9-2-3.html 1087share/doc/postgresql/html/release-9-2-3.html
1087share/doc/postgresql/html/release-9-2-4.html 1088share/doc/postgresql/html/release-9-2-4.html
1088share/doc/postgresql/html/release-9-2-5.html 1089share/doc/postgresql/html/release-9-2-5.html
1089share/doc/postgresql/html/release-9-2-6.html 1090share/doc/postgresql/html/release-9-2-6.html
1090share/doc/postgresql/html/release-9-2-7.html 1091share/doc/postgresql/html/release-9-2-7.html
1091share/doc/postgresql/html/release-9-2-8.html 1092share/doc/postgresql/html/release-9-2-8.html
1092share/doc/postgresql/html/release-9-2-9.html 1093share/doc/postgresql/html/release-9-2-9.html
1093share/doc/postgresql/html/release-9-2.html 1094share/doc/postgresql/html/release-9-2.html
1094share/doc/postgresql/html/release.html 1095share/doc/postgresql/html/release.html
1095share/doc/postgresql/html/resources.html 1096share/doc/postgresql/html/resources.html
1096share/doc/postgresql/html/role-attributes.html 1097share/doc/postgresql/html/role-attributes.html
1097share/doc/postgresql/html/role-membership.html 1098share/doc/postgresql/html/role-membership.html
1098share/doc/postgresql/html/role-removal.html 1099share/doc/postgresql/html/role-removal.html

cvs diff -r1.13 -r1.14 pkgsrc/databases/postgresql92-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql92-server/Attic/PLIST 2017/05/12 19:37:54 1.13
+++ pkgsrc/databases/postgresql92-server/Attic/PLIST 2017/11/13 09:33:31 1.14
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.13 2017/05/12 19:37:54 adam Exp $ 1@comment $NetBSD: PLIST,v 1.14 2017/11/13 09:33:31 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout @@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout
432share/postgresql/timezone/Australia/Sydney 432share/postgresql/timezone/Australia/Sydney
433share/postgresql/timezone/Australia/Tasmania 433share/postgresql/timezone/Australia/Tasmania
434share/postgresql/timezone/Australia/Victoria 434share/postgresql/timezone/Australia/Victoria
435share/postgresql/timezone/Australia/West 435share/postgresql/timezone/Australia/West
436share/postgresql/timezone/Australia/Yancowinna 436share/postgresql/timezone/Australia/Yancowinna
437share/postgresql/timezone/Brazil/Acre 437share/postgresql/timezone/Brazil/Acre
438share/postgresql/timezone/Brazil/DeNoronha 438share/postgresql/timezone/Brazil/DeNoronha
439share/postgresql/timezone/Brazil/East 439share/postgresql/timezone/Brazil/East
440share/postgresql/timezone/Brazil/West 440share/postgresql/timezone/Brazil/West
441share/postgresql/timezone/CET 441share/postgresql/timezone/CET
442share/postgresql/timezone/CST6CDT 442share/postgresql/timezone/CST6CDT
443share/postgresql/timezone/Canada/Atlantic 443share/postgresql/timezone/Canada/Atlantic
444share/postgresql/timezone/Canada/Central 444share/postgresql/timezone/Canada/Central
445share/postgresql/timezone/Canada/East-Saskatchewan 
446share/postgresql/timezone/Canada/Eastern 445share/postgresql/timezone/Canada/Eastern
447share/postgresql/timezone/Canada/Mountain 446share/postgresql/timezone/Canada/Mountain
448share/postgresql/timezone/Canada/Newfoundland 447share/postgresql/timezone/Canada/Newfoundland
449share/postgresql/timezone/Canada/Pacific 448share/postgresql/timezone/Canada/Pacific
450share/postgresql/timezone/Canada/Saskatchewan 449share/postgresql/timezone/Canada/Saskatchewan
451share/postgresql/timezone/Canada/Yukon 450share/postgresql/timezone/Canada/Yukon
452share/postgresql/timezone/Chile/Continental 451share/postgresql/timezone/Chile/Continental
453share/postgresql/timezone/Chile/EasterIsland 452share/postgresql/timezone/Chile/EasterIsland
454share/postgresql/timezone/Cuba 453share/postgresql/timezone/Cuba
455share/postgresql/timezone/EET 454share/postgresql/timezone/EET
456share/postgresql/timezone/EST 455share/postgresql/timezone/EST
457share/postgresql/timezone/EST5EDT 456share/postgresql/timezone/EST5EDT
458share/postgresql/timezone/Egypt 457share/postgresql/timezone/Egypt

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

--- pkgsrc/databases/postgresql93/Attic/Makefile.common 2017/11/10 14:47:41 1.28
+++ pkgsrc/databases/postgresql93/Attic/Makefile.common 2017/11/13 09:33:31 1.29
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.28 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.29 2017/11/13 09:33:31 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/postgresql93-client/Makefile 11# used by databases/postgresql93-client/Makefile
12# used by databases/postgresql93-contrib/Makefile 12# used by databases/postgresql93-contrib/Makefile
13# used by databases/postgresql93-docs/Makefile 13# used by databases/postgresql93-docs/Makefile
14# used by databases/postgresql93-plperl/Makefile 14# used by databases/postgresql93-plperl/Makefile
15# used by databases/postgresql93-plpython/Makefile 15# used by databases/postgresql93-plpython/Makefile
16# used by databases/postgresql93-pltcl/Makefile 16# used by databases/postgresql93-pltcl/Makefile
17# used by databases/postgresql93-server/Makefile 17# used by databases/postgresql93-server/Makefile
18 18
19DISTNAME= postgresql-9.3.19 19DISTNAME= postgresql-9.3.20
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[0124-9]-[0-9]* 30CONFLICTS+= postgresql9[0124-9]-[0-9]*
31 31
32.if !empty(PKGNAME:M*-*-*) 32.if !empty(PKGNAME:M*-*-*)
@@ -55,69 +55,77 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} @@ -55,69 +55,77 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
55PG_DATA_DIR= ${PREFIX}/share/postgresql 55PG_DATA_DIR= ${PREFIX}/share/postgresql
56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
58PG_ETC_DIR= ${PKG_SYSCONFDIR} 58PG_ETC_DIR= ${PKG_SYSCONFDIR}
59 59
60GNU_CONFIGURE= yes 60GNU_CONFIGURE= yes
61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
66 66
67CONFIGURE_ARGS+= --enable-nls 67CONFIGURE_ARGS+= --enable-nls
 68CONFIGURE_ARGS+= --with-gssapi
 69CONFIGURE_ARGS+= --with-libxml
 70CONFIGURE_ARGS+= --with-readline
68CONFIGURE_ARGS+= --without-perl 71CONFIGURE_ARGS+= --without-perl
69CONFIGURE_ARGS+= --without-python 72CONFIGURE_ARGS+= --without-python
70CONFIGURE_ARGS+= --without-readline 
71CONFIGURE_ARGS+= --without-tcl 73CONFIGURE_ARGS+= --without-tcl
72CONFIGURE_ARGS+= --without-zlib 
73 74
74# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
75# procfs and largefile. 76# procfs and largefile.
76CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no 77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
77 78
78# pkgsrc silently filters the --as-needed linker arg, but that makes 79# pkgsrc silently filters the --as-needed linker arg, but that makes
79# it leak into the pgxs Makefiles and compromises manual building 80# it leak into the pgxs Makefiles and compromises manual building
80# against PostgreSQL files installed. Disable it here to prevent 81# against PostgreSQL files installed. Disable it here to prevent
81# that from happening. 82# that from happening.
82.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
83CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
84.endif 85.endif
85 86
86# configure fails on OpenBSD and MirBSD if thread safety is enabled. 87# configure fails on OpenBSD and MirBSD if thread safety is enabled.
87CONFIGURE_ARGS.MirBSD+= --disable-thread-safety 88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
88CONFIGURE_ARGS.OpenBSD+= --disable-thread-safety 89CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
89 90
90# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
91# This also limits the size of a tuple. The valid values are powers 92# This also limits the size of a tuple. The valid values are powers
92# of 2 up to 32768, and the default size is 8196. Please don't change 93# of 2 up to 32768, and the default size is 8196. Please don't change
93# this value unless you know what you are doing. 94# this value unless you know what you are doing.
94BUILD_DEFS+= PGSQL_BLCKSZ 95BUILD_DEFS+= PGSQL_BLCKSZ
95.if defined(PGSQL_BLCKSZ) 96.if defined(PGSQL_BLCKSZ)
96CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
97.endif 98.endif
98 99
99# PostgreSQL explicitly forbids any use of -ffast-math 100# PostgreSQL explicitly forbids any use of -ffast-math
100BUILDLINK_TRANSFORM+= rm:-ffast-math 101BUILDLINK_TRANSFORM+= rm:-ffast-math
101 102
102# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
103# to provide "dlopen" functionality for the PostgreSQL backend. 104# to provide "dlopen" functionality for the PostgreSQL backend.
104.if ${OPSYS} == "Interix" 105.if ${OPSYS} == "Interix"
105USE_LIBLTDL?= yes 106USE_LIBLTDL?= yes
106.endif 107.endif
107USE_LIBLTDL?= no 108USE_LIBLTDL?= no
108 109
109.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
110LIBS.SunOS+= -lintl 111LIBS.SunOS+= -lintl
 112.include "../../devel/zlib/buildlink3.mk"
 113.include "../../textproc/libxml2/buildlink3.mk"
 114
 115.include "../../mk/readline.buildlink3.mk"
 116.if ${READLINE_TYPE} == "editline"
 117CONFIGURE_ARGS+= --with-libedit-preferred
 118.endif
111 119
112.if !defined(META_PACKAGE) 120.if !defined(META_PACKAGE)
113post-extract: 121post-extract:
114. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 122. if !empty(USE_LIBLTDL:M[yY][eE][sS])
115 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 123 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
116 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 124 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
117 ${ECHO} "static int dummy = 0;" \ 125 ${ECHO} "static int dummy = 0;" \
118 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 126 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
119. endif 127. endif
120 touch ${WRKSRC}/src/template/dragonfly 128 touch ${WRKSRC}/src/template/dragonfly
121 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 129 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
122 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 130 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
123 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 131 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \

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

--- pkgsrc/databases/postgresql93/Attic/distinfo 2017/09/04 19:33:43 1.25
+++ pkgsrc/databases/postgresql93/Attic/distinfo 2017/11/13 09:33:31 1.26
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.25 2017/09/04 19:33:43 adam Exp $ 1$NetBSD: distinfo,v 1.26 2017/11/13 09:33:31 adam Exp $
2 2
3SHA1 (postgresql-9.3.19.tar.bz2) = 92402d56fd8a82341a7dbf7c7459fa6eef32a5be 3SHA1 (postgresql-9.3.20.tar.bz2) = c42716dc68db04822f5454b75f884631d2830ed2
4RMD160 (postgresql-9.3.19.tar.bz2) = 79293893f37e67e86c6ae1bb6408578d1fe809e8 4RMD160 (postgresql-9.3.20.tar.bz2) = 2b19fce50fb1ebecc548d2da6e8e47ad08350353
5SHA512 (postgresql-9.3.19.tar.bz2) = 7293d75b97255720c30d342e1de6032e14e9112e283d2668e80320f76906038d7419ffa7a12eba1fcf9f9274595db10e372db4999b0845cb55998d47f683ebb1 5SHA512 (postgresql-9.3.20.tar.bz2) = 40098661bf00b64ad2d773b242613c44fe269b5ae984ad8990f85ce705b27138b127493c507103052fb6705d52f2e63a1df6692c7024d43c3c6b18154f2ef407
6Size (postgresql-9.3.19.tar.bz2) = 17190203 bytes 6Size (postgresql-9.3.20.tar.bz2) = 17197360 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5 8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
9SHA1 (patch-configure) = 3de7635fe18532a05a619941fecad7bcda6c51b9 9SHA1 (patch-configure) = 3de7635fe18532a05a619941fecad7bcda6c51b9
10SHA1 (patch-contrib_dblink_Makefile) = 11620938ce93109311df90df675b1ad6f0c15212 10SHA1 (patch-contrib_dblink_Makefile) = 11620938ce93109311df90df675b1ad6f0c15212
11SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921 11SHA1 (patch-contrib_dblink_dblink.c) = a6f87ab9f2c28a72608d70267b71bd77437b0921
12SHA1 (patch-contrib_postgres__fdw_Makefile) = 07feda488e3acb71405b04d0d745c9920456b32b 12SHA1 (patch-contrib_postgres__fdw_Makefile) = 07feda488e3acb71405b04d0d745c9920456b32b
13SHA1 (patch-src_Makefile.global.in) = 53e29e000d7fb71e2625aacd32324e9d7001b5b2 13SHA1 (patch-src_Makefile.global.in) = 53e29e000d7fb71e2625aacd32324e9d7001b5b2
14SHA1 (patch-src_Makefile.shlib) = 69f980184fd8dbd821221a1c6ac3a88408f2c4cf 14SHA1 (patch-src_Makefile.shlib) = 69f980184fd8dbd821221a1c6ac3a88408f2c4cf
15SHA1 (patch-src_backend_Makefile) = deba6bc07ba2e4b8ef8f04f20efb2bdd54cb917e 15SHA1 (patch-src_backend_Makefile) = deba6bc07ba2e4b8ef8f04f20efb2bdd54cb917e
16SHA1 (patch-src_backend_utils_adt_datetime.c) = cb404b369b39f7e55765a490f8448b870f237511 16SHA1 (patch-src_backend_utils_adt_datetime.c) = cb404b369b39f7e55765a490f8448b870f237511
17SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 98a49b9fc6677c4c930b574249f015727391938c 17SHA1 (patch-src_interfaces_ecpg_pgtypeslib_interval.c) = 98a49b9fc6677c4c930b574249f015727391938c
18SHA1 (patch-src_interfaces_libpq_Makefile) = 0066301bc8b31b9e26c79153427537bc3865ef4d 18SHA1 (patch-src_interfaces_libpq_Makefile) = 0066301bc8b31b9e26c79153427537bc3865ef4d
19SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0 19SHA1 (patch-src_makefiles_Makefile.solaris) = 0168f5bc105ffc89d5db40907a08966d8465f5a0

cvs diff -r1.2 -r1.3 pkgsrc/databases/postgresql93/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql93/Attic/options.mk 2013/10/12 04:51:05 1.2
+++ pkgsrc/databases/postgresql93/Attic/options.mk 2017/11/13 09:33:31 1.3
@@ -1,73 +1,48 @@ @@ -1,73 +1,48 @@
1# $NetBSD: options.mk,v 1.2 2013/10/12 04:51:05 richard Exp $ 1# $NetBSD: options.mk,v 1.3 2017/11/13 09:33:31 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql93 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql93
4PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace 4PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8# Bonjour support
9### Bonjour support. 
10### 
11.if !empty(PKG_OPTIONS:Mbonjour) 9.if !empty(PKG_OPTIONS:Mbonjour)
12CONFIGURE_ARGS+= --with-bonjour 10CONFIGURE_ARGS+= --with-bonjour
13. if ${OPSYS} != "Darwin" 11. if ${OPSYS} != "Darwin"
14LIBS+= -ldns_sd 12LIBS+= -ldns_sd
15. endif 13. endif
16. include "../../net/mDNSResponder/buildlink3.mk" 14. include "../../net/mDNSResponder/buildlink3.mk"
17.endif 15.endif
18 16
19### 17# Dtrace support
20### GSSAPI authentication for the PostgreSQL backend. 18.if !empty(PKG_OPTIONS:Mdtrace)
21### 19CONFIGURE_ARGS+= --enable-dtrace
22.if !empty(PKG_OPTIONS:Mgssapi) 
23CONFIGURE_ARGS+= --with-gssapi 
24.endif 20.endif
25 21
26### 22# Kerberos5 authentication for the PostgreSQL backend
27### Kerberos5 authentication for the PostgreSQL backend. 
28### 
29.if !empty(PKG_OPTIONS:Mkerberos) 23.if !empty(PKG_OPTIONS:Mkerberos)
30. include "../../mk/krb5.buildlink3.mk" 24. include "../../mk/krb5.buildlink3.mk"
31CONFIGURE_ARGS+= --with-krb5 25CONFIGURE_ARGS+= --with-krb5
32 26
33CHECK_BUILTIN.${KRB5_TYPE}:= yes 27CHECK_BUILTIN.${KRB5_TYPE}:= yes
34.include "../../security/${KRB5_TYPE}/builtin.mk" 28.include "../../security/${KRB5_TYPE}/builtin.mk"
35CHECK_BUILTIN.${KRB5_TYPE}:= no 29CHECK_BUILTIN.${KRB5_TYPE}:= no
36 30
37. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \ 31. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \
38 exists(${SH_KRB5_CONFIG}) 32 exists(${SH_KRB5_CONFIG})
39CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags 33CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags
40CPPFLAGS+= ${CFLAGS_KRB5} 34CPPFLAGS+= ${CFLAGS_KRB5}
41. endif 35. endif
42.endif 36.endif
43 37
44### 38# LDAP authentication for the PostgreSQL backend
45### LDAP authentication for the PostgreSQL backend. 
46### 
47.if !empty(PKG_OPTIONS:Mldap) 39.if !empty(PKG_OPTIONS:Mldap)
48. include "../../databases/openldap-client/buildlink3.mk" 40. include "../../databases/openldap-client/buildlink3.mk"
49CONFIGURE_ARGS+= --with-ldap 41CONFIGURE_ARGS+= --with-ldap
50.endif 42.endif
51 43
52### 44# PAM authentication for the PostgreSQL backend
53### PAM authentication for the PostgreSQL backend. 
54### 
55.if !empty(PKG_OPTIONS:Mpam) 45.if !empty(PKG_OPTIONS:Mpam)
56. include "../../mk/pam.buildlink3.mk" 46. include "../../mk/pam.buildlink3.mk"
57CONFIGURE_ARGS+= --with-pam 47CONFIGURE_ARGS+= --with-pam
58.endif 48.endif
59 
60### 
61### XML support for the PostgreSQL backend. 
62### 
63.if !empty(PKG_OPTIONS:Mxml) 
64. include "../../textproc/libxml2/buildlink3.mk" 
65CONFIGURE_ARGS+= --with-libxml 
66.endif 
67 
68### 
69### Dtrace support 
70### 
71.if !empty(PKG_OPTIONS:Mdtrace) 
72CONFIGURE_ARGS+= --enable-dtrace 
73.endif 

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

--- pkgsrc/databases/postgresql93-client/Attic/Makefile 2017/11/10 14:47:41 1.12
+++ pkgsrc/databases/postgresql93-client/Attic/Makefile 2017/11/13 09:33:31 1.13
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.12 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile,v 1.13 2017/11/13 09:33:31 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/93-client-/} 3PKGNAME= ${DISTNAME:C/-/93-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql93/Makefile.common" 6.include "../../databases/postgresql93/Makefile.common"
8 7
9USE_TOOLS+= gzip tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-readline 10CONFIGURE_ARGS+= --with-readline
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
@@ -43,29 +42,26 @@ CONFIGURE_ARGS+= --disable-thread-safety @@ -43,29 +42,26 @@ CONFIGURE_ARGS+= --disable-thread-safety
43INSTALL_DIRS= src/include 42INSTALL_DIRS= src/include
44INSTALL_DIRS+= src/common 43INSTALL_DIRS+= src/common
45INSTALL_DIRS+= src/interfaces 44INSTALL_DIRS+= src/interfaces
46INSTALL_DIRS+= src/bin 45INSTALL_DIRS+= src/bin
47INSTALL_DIRS+= src/port 46INSTALL_DIRS+= src/port
48BUILD_DIRS= ${INSTALL_DIRS} 47BUILD_DIRS= ${INSTALL_DIRS}
49# Without this, the Darwin build fails (related to -bundle_loader). 48# Without this, the Darwin build fails (related to -bundle_loader).
50BUILD_DIRS+= src/backend 49BUILD_DIRS+= src/backend
51 50
52.for f in pg_service.conf psqlrc 51.for f in pg_service.conf psqlrc
53CONF_FILES+= share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f} 52CONF_FILES+= share/postgresql/${f}.sample ${PKG_SYSCONFDIR}/${f}
54.endfor 53.endfor
55 54
56# XXX work around core dumps with the native libedit 
57USE_GNU_READLINE= yes 
58 
59.include "../../devel/readline/buildlink3.mk" 55.include "../../devel/readline/buildlink3.mk"
60.include "../../devel/zlib/buildlink3.mk" 56.include "../../devel/zlib/buildlink3.mk"
61.include "../../security/openssl/buildlink3.mk" 57.include "../../security/openssl/buildlink3.mk"
62 58
63SUBST_CLASSES+= pgxs 59SUBST_CLASSES+= pgxs
64SUBST_STAGE.pgxs= post-build 60SUBST_STAGE.pgxs= post-build
65SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile 61SUBST_MESSAGE.pgxs= Fixing workdir tools references in pgxs Makefile
66SUBST_FILES.pgxs= src/Makefile.global 62SUBST_FILES.pgxs= src/Makefile.global
67SUBST_SED.pgxs= -e 's,${TOOLS_CMD.bison},${TOOLS_PATH.bison},' 63SUBST_SED.pgxs= -e 's,${TOOLS_CMD.bison},${TOOLS_PATH.bison},'
68SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.lex},${TOOLS_PATH.lex},' 64SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.lex},${TOOLS_PATH.lex},'
69SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.mkdir},${TOOLS_PATH.mkdir},' 65SUBST_SED.pgxs+= -e 's,${TOOLS_CMD.mkdir},${TOOLS_PATH.mkdir},'
70SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper/bin/ld,${LD},' 66SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper/bin/ld,${LD},'
71SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},' 67SUBST_SED.pgxs+= -e 's,${WRKDIR}/.wrapper,${PREFIX},'

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

--- pkgsrc/databases/postgresql93-docs/Attic/PLIST 2017/09/04 19:33:43 1.20
+++ pkgsrc/databases/postgresql93-docs/Attic/PLIST 2017/11/13 09:33:31 1.21
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.20 2017/09/04 19:33:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.21 2017/11/13 09:33:31 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
@@ -1094,46 +1094,48 @@ share/doc/postgresql/html/release-9-2-15 @@ -1094,46 +1094,48 @@ share/doc/postgresql/html/release-9-2-15
1094share/doc/postgresql/html/release-9-2-11.html 1094share/doc/postgresql/html/release-9-2-11.html
1095share/doc/postgresql/html/release-9-2-12.html 1095share/doc/postgresql/html/release-9-2-12.html
1096share/doc/postgresql/html/release-9-2-13.html 1096share/doc/postgresql/html/release-9-2-13.html
1097share/doc/postgresql/html/release-9-2-14.html 1097share/doc/postgresql/html/release-9-2-14.html
1098share/doc/postgresql/html/release-9-2-16.html 1098share/doc/postgresql/html/release-9-2-16.html
1099share/doc/postgresql/html/release-9-2-17.html 1099share/doc/postgresql/html/release-9-2-17.html
1100share/doc/postgresql/html/release-9-2-18.html 1100share/doc/postgresql/html/release-9-2-18.html
1101share/doc/postgresql/html/release-9-2-19.html 1101share/doc/postgresql/html/release-9-2-19.html
1102share/doc/postgresql/html/release-9-2-2.html 1102share/doc/postgresql/html/release-9-2-2.html
1103share/doc/postgresql/html/release-9-2-20.html 1103share/doc/postgresql/html/release-9-2-20.html
1104share/doc/postgresql/html/release-9-2-21.html 1104share/doc/postgresql/html/release-9-2-21.html
1105share/doc/postgresql/html/release-9-2-22.html 1105share/doc/postgresql/html/release-9-2-22.html
1106share/doc/postgresql/html/release-9-2-23.html 1106share/doc/postgresql/html/release-9-2-23.html
 1107share/doc/postgresql/html/release-9-2-24.html
1107share/doc/postgresql/html/release-9-2-3.html 1108share/doc/postgresql/html/release-9-2-3.html
1108share/doc/postgresql/html/release-9-2-4.html 1109share/doc/postgresql/html/release-9-2-4.html
1109share/doc/postgresql/html/release-9-2-5.html 1110share/doc/postgresql/html/release-9-2-5.html
1110share/doc/postgresql/html/release-9-2-6.html 1111share/doc/postgresql/html/release-9-2-6.html
1111share/doc/postgresql/html/release-9-2-7.html 1112share/doc/postgresql/html/release-9-2-7.html
1112share/doc/postgresql/html/release-9-2-8.html 1113share/doc/postgresql/html/release-9-2-8.html
1113share/doc/postgresql/html/release-9-2-9.html 1114share/doc/postgresql/html/release-9-2-9.html
1114share/doc/postgresql/html/release-9-2.html 1115share/doc/postgresql/html/release-9-2.html
1115share/doc/postgresql/html/release-9-3-1.html 1116share/doc/postgresql/html/release-9-3-1.html
1116share/doc/postgresql/html/release-9-3-10.html 1117share/doc/postgresql/html/release-9-3-10.html
1117share/doc/postgresql/html/release-9-3-11.html 1118share/doc/postgresql/html/release-9-3-11.html
1118share/doc/postgresql/html/release-9-3-12.html 1119share/doc/postgresql/html/release-9-3-12.html
1119share/doc/postgresql/html/release-9-3-13.html 1120share/doc/postgresql/html/release-9-3-13.html
1120share/doc/postgresql/html/release-9-3-14.html 1121share/doc/postgresql/html/release-9-3-14.html
1121share/doc/postgresql/html/release-9-3-15.html 1122share/doc/postgresql/html/release-9-3-15.html
1122share/doc/postgresql/html/release-9-3-16.html 1123share/doc/postgresql/html/release-9-3-16.html
1123share/doc/postgresql/html/release-9-3-17.html 1124share/doc/postgresql/html/release-9-3-17.html
1124share/doc/postgresql/html/release-9-3-18.html 1125share/doc/postgresql/html/release-9-3-18.html
1125share/doc/postgresql/html/release-9-3-19.html 1126share/doc/postgresql/html/release-9-3-19.html
1126share/doc/postgresql/html/release-9-3-2.html 1127share/doc/postgresql/html/release-9-3-2.html
 1128share/doc/postgresql/html/release-9-3-20.html
1127share/doc/postgresql/html/release-9-3-3.html 1129share/doc/postgresql/html/release-9-3-3.html
1128share/doc/postgresql/html/release-9-3-4.html 1130share/doc/postgresql/html/release-9-3-4.html
1129share/doc/postgresql/html/release-9-3-5.html 1131share/doc/postgresql/html/release-9-3-5.html
1130share/doc/postgresql/html/release-9-3-6.html 1132share/doc/postgresql/html/release-9-3-6.html
1131share/doc/postgresql/html/release-9-3-7.html 1133share/doc/postgresql/html/release-9-3-7.html
1132share/doc/postgresql/html/release-9-3-8.html 1134share/doc/postgresql/html/release-9-3-8.html
1133share/doc/postgresql/html/release-9-3-9.html 1135share/doc/postgresql/html/release-9-3-9.html
1134share/doc/postgresql/html/release-9-3.html 1136share/doc/postgresql/html/release-9-3.html
1135share/doc/postgresql/html/release.html 1137share/doc/postgresql/html/release.html
1136share/doc/postgresql/html/resources.html 1138share/doc/postgresql/html/resources.html
1137share/doc/postgresql/html/role-attributes.html 1139share/doc/postgresql/html/role-attributes.html
1138share/doc/postgresql/html/role-membership.html 1140share/doc/postgresql/html/role-membership.html
1139share/doc/postgresql/html/role-removal.html 1141share/doc/postgresql/html/role-removal.html

cvs diff -r1.11 -r1.12 pkgsrc/databases/postgresql93-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql93-server/Attic/PLIST 2017/05/12 19:37:54 1.11
+++ pkgsrc/databases/postgresql93-server/Attic/PLIST 2017/11/13 09:33:32 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.11 2017/05/12 19:37:54 adam Exp $ 1@comment $NetBSD: PLIST,v 1.12 2017/11/13 09:33:32 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout @@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout
432share/postgresql/timezone/Australia/Sydney 432share/postgresql/timezone/Australia/Sydney
433share/postgresql/timezone/Australia/Tasmania 433share/postgresql/timezone/Australia/Tasmania
434share/postgresql/timezone/Australia/Victoria 434share/postgresql/timezone/Australia/Victoria
435share/postgresql/timezone/Australia/West 435share/postgresql/timezone/Australia/West
436share/postgresql/timezone/Australia/Yancowinna 436share/postgresql/timezone/Australia/Yancowinna
437share/postgresql/timezone/Brazil/Acre 437share/postgresql/timezone/Brazil/Acre
438share/postgresql/timezone/Brazil/DeNoronha 438share/postgresql/timezone/Brazil/DeNoronha
439share/postgresql/timezone/Brazil/East 439share/postgresql/timezone/Brazil/East
440share/postgresql/timezone/Brazil/West 440share/postgresql/timezone/Brazil/West
441share/postgresql/timezone/CET 441share/postgresql/timezone/CET
442share/postgresql/timezone/CST6CDT 442share/postgresql/timezone/CST6CDT
443share/postgresql/timezone/Canada/Atlantic 443share/postgresql/timezone/Canada/Atlantic
444share/postgresql/timezone/Canada/Central 444share/postgresql/timezone/Canada/Central
445share/postgresql/timezone/Canada/East-Saskatchewan 
446share/postgresql/timezone/Canada/Eastern 445share/postgresql/timezone/Canada/Eastern
447share/postgresql/timezone/Canada/Mountain 446share/postgresql/timezone/Canada/Mountain
448share/postgresql/timezone/Canada/Newfoundland 447share/postgresql/timezone/Canada/Newfoundland
449share/postgresql/timezone/Canada/Pacific 448share/postgresql/timezone/Canada/Pacific
450share/postgresql/timezone/Canada/Saskatchewan 449share/postgresql/timezone/Canada/Saskatchewan
451share/postgresql/timezone/Canada/Yukon 450share/postgresql/timezone/Canada/Yukon
452share/postgresql/timezone/Chile/Continental 451share/postgresql/timezone/Chile/Continental
453share/postgresql/timezone/Chile/EasterIsland 452share/postgresql/timezone/Chile/EasterIsland
454share/postgresql/timezone/Cuba 453share/postgresql/timezone/Cuba
455share/postgresql/timezone/EET 454share/postgresql/timezone/EET
456share/postgresql/timezone/EST 455share/postgresql/timezone/EST
457share/postgresql/timezone/EST5EDT 456share/postgresql/timezone/EST5EDT
458share/postgresql/timezone/Egypt 457share/postgresql/timezone/Egypt

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

--- pkgsrc/databases/postgresql94/Attic/Makefile.common 2017/11/10 14:47:41 1.20
+++ pkgsrc/databases/postgresql94/Attic/Makefile.common 2017/11/13 09:33:32 1.21
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.20 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.21 2017/11/13 09:33:32 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.14 19DISTNAME= postgresql-9.4.15
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*-*-*)
@@ -55,72 +55,77 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} @@ -55,72 +55,77 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
55PG_DATA_DIR= ${PREFIX}/share/postgresql 55PG_DATA_DIR= ${PREFIX}/share/postgresql
56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
58PG_ETC_DIR= ${PKG_SYSCONFDIR} 58PG_ETC_DIR= ${PKG_SYSCONFDIR}
59 59
60GNU_CONFIGURE= yes 60GNU_CONFIGURE= yes
61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
66 66
67CONFIGURE_ARGS+= --enable-nls 67CONFIGURE_ARGS+= --enable-nls
 68CONFIGURE_ARGS+= --with-gssapi
 69CONFIGURE_ARGS+= --with-libxml
68CONFIGURE_ARGS+= --with-readline 70CONFIGURE_ARGS+= --with-readline
69CONFIGURE_ARGS+= --without-perl 71CONFIGURE_ARGS+= --without-perl
70CONFIGURE_ARGS+= --without-python 72CONFIGURE_ARGS+= --without-python
71CONFIGURE_ARGS+= --without-tcl 73CONFIGURE_ARGS+= --without-tcl
72CONFIGURE_ARGS+= --without-zlib 
73 74
74# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
75# procfs and largefile. 76# procfs and largefile.
76CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no 77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
77 78
78# pkgsrc silently filters the --as-needed linker arg, but that makes 79# pkgsrc silently filters the --as-needed linker arg, but that makes
79# it leak into the pgxs Makefiles and compromises manual building 80# it leak into the pgxs Makefiles and compromises manual building
80# against PostgreSQL files installed. Disable it here to prevent 81# against PostgreSQL files installed. Disable it here to prevent
81# that from happening. 82# that from happening.
82.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
83CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
84.endif 85.endif
85 86
86# configure fails on OpenBSD and MirBSD if thread safety is enabled. 87# configure fails on OpenBSD and MirBSD if thread safety is enabled.
87CONFIGURE_ARGS.MirBSD+= --disable-thread-safety 88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
88CONFIGURE_ARGS.OpenBSD+= --disable-thread-safety 89CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
89 90
90# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
91# This also limits the size of a tuple. The valid values are powers 92# This also limits the size of a tuple. The valid values are powers
92# of 2 up to 32768, and the default size is 8196. Please don't change 93# of 2 up to 32768, and the default size is 8196. Please don't change
93# this value unless you know what you are doing. 94# this value unless you know what you are doing.
94BUILD_DEFS+= PGSQL_BLCKSZ 95BUILD_DEFS+= PGSQL_BLCKSZ
95.if defined(PGSQL_BLCKSZ) 96.if defined(PGSQL_BLCKSZ)
96CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
97.endif 98.endif
98 99
99# PostgreSQL explicitly forbids any use of -ffast-math 100# PostgreSQL explicitly forbids any use of -ffast-math
100BUILDLINK_TRANSFORM+= rm:-ffast-math 101BUILDLINK_TRANSFORM+= rm:-ffast-math
101 102
102# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
103# to provide "dlopen" functionality for the PostgreSQL backend. 104# to provide "dlopen" functionality for the PostgreSQL backend.
104.if ${OPSYS} == "Interix" 105.if ${OPSYS} == "Interix"
105USE_LIBLTDL?= yes 106USE_LIBLTDL?= yes
106.endif 107.endif
107USE_LIBLTDL?= no 108USE_LIBLTDL?= no
108 109
109.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
110LIBS.SunOS+= -lintl 111LIBS.SunOS+= -lintl
111# XXX work around core dumps with the native libedit 112.include "../../devel/zlib/buildlink3.mk"
112USE_GNU_READLINE= yes 113.include "../../textproc/libxml2/buildlink3.mk"
113.include "../../devel/readline/buildlink3.mk" 114
 115.include "../../mk/readline.buildlink3.mk"
 116.if ${READLINE_TYPE} == "editline"
 117CONFIGURE_ARGS+= --with-libedit-preferred
 118.endif
114 119
115.if !defined(META_PACKAGE) 120.if !defined(META_PACKAGE)
116post-extract: 121post-extract:
117. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 122. if !empty(USE_LIBLTDL:M[yY][eE][sS])
118 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 123 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
119 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 124 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
120 ${ECHO} "static int dummy = 0;" \ 125 ${ECHO} "static int dummy = 0;" \
121 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 126 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
122. endif 127. endif
123 touch ${WRKSRC}/src/template/dragonfly 128 touch ${WRKSRC}/src/template/dragonfly
124 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 129 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
125 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 130 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
126 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 131 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \

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

--- pkgsrc/databases/postgresql94/Attic/distinfo 2017/09/04 19:33:43 1.17
+++ pkgsrc/databases/postgresql94/Attic/distinfo 2017/11/13 09:33:32 1.18
@@ -1,22 +1,21 @@ @@ -1,22 +1,21 @@
1$NetBSD: distinfo,v 1.17 2017/09/04 19:33:43 adam Exp $ 1$NetBSD: distinfo,v 1.18 2017/11/13 09:33:32 adam Exp $
2 2
3SHA1 (postgresql-9.4.14.tar.bz2) = 6b0b4eff681d1b93be903b96c2c16a6ca9e0d848 3SHA1 (postgresql-9.4.15.tar.bz2) = 5e50e5c0a66c676c584a41b25f18e326781aecdb
4RMD160 (postgresql-9.4.14.tar.bz2) = 63f096fdfa5afa74c173e6fb0ce99977552db138 4RMD160 (postgresql-9.4.15.tar.bz2) = 04dc5296bca61d8d1e32fa95b2002f36f9effc8f
5SHA512 (postgresql-9.4.14.tar.bz2) = 5952479b7c911cc381744e72d44c7c2269f98f4dda677e8c20a8ac7f4281e143017d287634b707ed96859e5438e82e96668bc4c68bb0c2ce9f3853c5a38fd0b2 5SHA512 (postgresql-9.4.15.tar.bz2) = be69f184cf18fb4c611d31a128f3593dc537551606f1db84a3ce9899b72f546876f05b29792435c3780c6c2b571759f4db2c172d62b2c012bd58574df80b4eb1
6Size (postgresql-9.4.14.tar.bz2) = 17873740 bytes 6Size (postgresql-9.4.15.tar.bz2) = 17921677 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5 8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632 9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632
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) = 69f980184fd8dbd821221a1c6ac3a88408f2c4cf 13SHA1 (patch-src_Makefile.shlib) = 69f980184fd8dbd821221a1c6ac3a88408f2c4cf
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
20SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174 20SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174
21SHA1 (patch-src_timezone_localtime.c) = 9b5748ef94b11b8798121ac85d2bb18cb99b3812 21SHA1 (patch-src_timezone_localtime.c) = 9b5748ef94b11b8798121ac85d2bb18cb99b3812
22SHA1 (patch-src_timezone_strftime.c) = f1f37e424dd70c0b2ad905ef491f9d9574bd3266 

cvs diff -r1.1 -r1.2 pkgsrc/databases/postgresql94/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94/Attic/options.mk 2015/01/14 21:01:18 1.1
+++ pkgsrc/databases/postgresql94/Attic/options.mk 2017/11/13 09:33:32 1.2
@@ -1,73 +1,48 @@ @@ -1,73 +1,48 @@
1# $NetBSD: options.mk,v 1.1 2015/01/14 21:01:18 adam Exp $ 1# $NetBSD: options.mk,v 1.2 2017/11/13 09:33:32 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql94 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql94
4PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace 4PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8# Bonjour support
9### Bonjour support. 
10### 
11.if !empty(PKG_OPTIONS:Mbonjour) 9.if !empty(PKG_OPTIONS:Mbonjour)
12CONFIGURE_ARGS+= --with-bonjour 10CONFIGURE_ARGS+= --with-bonjour
13. if ${OPSYS} != "Darwin" 11. if ${OPSYS} != "Darwin"
14LIBS+= -ldns_sd 12LIBS+= -ldns_sd
15. endif 13. endif
16. include "../../net/mDNSResponder/buildlink3.mk" 14. include "../../net/mDNSResponder/buildlink3.mk"
17.endif 15.endif
18 16
19### 17# Dtrace support
20### GSSAPI authentication for the PostgreSQL backend. 18.if !empty(PKG_OPTIONS:Mdtrace)
21### 19CONFIGURE_ARGS+= --enable-dtrace
22.if !empty(PKG_OPTIONS:Mgssapi) 
23CONFIGURE_ARGS+= --with-gssapi 
24.endif 20.endif
25 21
26### 22# Kerberos5 authentication for the PostgreSQL backend
27### Kerberos5 authentication for the PostgreSQL backend. 
28### 
29.if !empty(PKG_OPTIONS:Mkerberos) 23.if !empty(PKG_OPTIONS:Mkerberos)
30. include "../../mk/krb5.buildlink3.mk" 24. include "../../mk/krb5.buildlink3.mk"
31CONFIGURE_ARGS+= --with-krb5 25CONFIGURE_ARGS+= --with-krb5
32 26
33CHECK_BUILTIN.${KRB5_TYPE}:= yes 27CHECK_BUILTIN.${KRB5_TYPE}:= yes
34.include "../../security/${KRB5_TYPE}/builtin.mk" 28.include "../../security/${KRB5_TYPE}/builtin.mk"
35CHECK_BUILTIN.${KRB5_TYPE}:= no 29CHECK_BUILTIN.${KRB5_TYPE}:= no
36 30
37. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \ 31. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \
38 exists(${SH_KRB5_CONFIG}) 32 exists(${SH_KRB5_CONFIG})
39CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags 33CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags
40CPPFLAGS+= ${CFLAGS_KRB5} 34CPPFLAGS+= ${CFLAGS_KRB5}
41. endif 35. endif
42.endif 36.endif
43 37
44### 38# LDAP authentication for the PostgreSQL backend
45### LDAP authentication for the PostgreSQL backend. 
46### 
47.if !empty(PKG_OPTIONS:Mldap) 39.if !empty(PKG_OPTIONS:Mldap)
48. include "../../databases/openldap-client/buildlink3.mk" 40. include "../../databases/openldap-client/buildlink3.mk"
49CONFIGURE_ARGS+= --with-ldap 41CONFIGURE_ARGS+= --with-ldap
50.endif 42.endif
51 43
52### 44# PAM authentication for the PostgreSQL backend
53### PAM authentication for the PostgreSQL backend. 
54### 
55.if !empty(PKG_OPTIONS:Mpam) 45.if !empty(PKG_OPTIONS:Mpam)
56. include "../../mk/pam.buildlink3.mk" 46. include "../../mk/pam.buildlink3.mk"
57CONFIGURE_ARGS+= --with-pam 47CONFIGURE_ARGS+= --with-pam
58.endif 48.endif
59 
60### 
61### XML support for the PostgreSQL backend. 
62### 
63.if !empty(PKG_OPTIONS:Mxml) 
64. include "../../textproc/libxml2/buildlink3.mk" 
65CONFIGURE_ARGS+= --with-libxml 
66.endif 
67 
68### 
69### Dtrace support 
70### 
71.if !empty(PKG_OPTIONS:Mdtrace) 
72CONFIGURE_ARGS+= --enable-dtrace 
73.endif 

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

--- pkgsrc/databases/postgresql94-client/Attic/Makefile 2017/11/10 14:47:42 1.6
+++ pkgsrc/databases/postgresql94-client/Attic/Makefile 2017/11/13 09:33:32 1.7
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2017/11/10 14:47:42 fhajny Exp $ 1# $NetBSD: Makefile,v 1.7 2017/11/13 09:33:32 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/94-client-/} 3PKGNAME= ${DISTNAME:C/-/94-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql94/Makefile.common" 6.include "../../databases/postgresql94/Makefile.common"
8 7
9USE_TOOLS+= gzip tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-zlib 10CONFIGURE_ARGS+= --with-zlib
12 11
13# Override INSTALL script to avoid unprivileged user/group 12# Override INSTALL script to avoid unprivileged user/group
14# leaking into the binary package 13# leaking into the binary package
15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 14CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
16 15
17.include "../../mk/bsd.prefs.mk" 16.include "../../mk/bsd.prefs.mk"

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

--- pkgsrc/databases/postgresql94-docs/Attic/Makefile 2016/08/14 16:56:30 1.5
+++ pkgsrc/databases/postgresql94-docs/Attic/Makefile 2017/11/13 09:33:32 1.6
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.5 2016/08/14 16:56:30 is Exp $ 1# $NetBSD: Makefile,v 1.6 2017/11/13 09:33:32 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/94-docs-/} 3PKGNAME= ${DISTNAME:C/-/94-docs-/}
4PKGREVISION= # 
5COMMENT= PostgreSQL database documentation 4COMMENT= PostgreSQL database documentation
6 5
7.include "../../databases/postgresql94/Makefile.common" 6.include "../../databases/postgresql94/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.15 -r1.16 pkgsrc/databases/postgresql94-docs/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94-docs/Attic/PLIST 2017/09/04 19:33:43 1.15
+++ pkgsrc/databases/postgresql94-docs/Attic/PLIST 2017/11/13 09:33:32 1.16
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.15 2017/09/04 19:33:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.16 2017/11/13 09:33:32 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
@@ -1114,60 +1114,63 @@ share/doc/postgresql/html/release-9-2-11 @@ -1114,60 +1114,63 @@ share/doc/postgresql/html/release-9-2-11
1114share/doc/postgresql/html/release-9-2-12.html 1114share/doc/postgresql/html/release-9-2-12.html
1115share/doc/postgresql/html/release-9-2-13.html 1115share/doc/postgresql/html/release-9-2-13.html
1116share/doc/postgresql/html/release-9-2-14.html 1116share/doc/postgresql/html/release-9-2-14.html
1117share/doc/postgresql/html/release-9-2-15.html 1117share/doc/postgresql/html/release-9-2-15.html
1118share/doc/postgresql/html/release-9-2-16.html 1118share/doc/postgresql/html/release-9-2-16.html
1119share/doc/postgresql/html/release-9-2-17.html 1119share/doc/postgresql/html/release-9-2-17.html
1120share/doc/postgresql/html/release-9-2-18.html 1120share/doc/postgresql/html/release-9-2-18.html
1121share/doc/postgresql/html/release-9-2-19.html 1121share/doc/postgresql/html/release-9-2-19.html
1122share/doc/postgresql/html/release-9-2-2.html 1122share/doc/postgresql/html/release-9-2-2.html
1123share/doc/postgresql/html/release-9-2-20.html 1123share/doc/postgresql/html/release-9-2-20.html
1124share/doc/postgresql/html/release-9-2-21.html 1124share/doc/postgresql/html/release-9-2-21.html
1125share/doc/postgresql/html/release-9-2-22.html 1125share/doc/postgresql/html/release-9-2-22.html
1126share/doc/postgresql/html/release-9-2-23.html 1126share/doc/postgresql/html/release-9-2-23.html
 1127share/doc/postgresql/html/release-9-2-24.html
1127share/doc/postgresql/html/release-9-2-3.html 1128share/doc/postgresql/html/release-9-2-3.html
1128share/doc/postgresql/html/release-9-2-4.html 1129share/doc/postgresql/html/release-9-2-4.html
1129share/doc/postgresql/html/release-9-2-5.html 1130share/doc/postgresql/html/release-9-2-5.html
1130share/doc/postgresql/html/release-9-2-6.html 1131share/doc/postgresql/html/release-9-2-6.html
1131share/doc/postgresql/html/release-9-2-7.html 1132share/doc/postgresql/html/release-9-2-7.html
1132share/doc/postgresql/html/release-9-2-8.html 1133share/doc/postgresql/html/release-9-2-8.html
1133share/doc/postgresql/html/release-9-2-9.html 1134share/doc/postgresql/html/release-9-2-9.html
1134share/doc/postgresql/html/release-9-2.html 1135share/doc/postgresql/html/release-9-2.html
1135share/doc/postgresql/html/release-9-3-1.html 1136share/doc/postgresql/html/release-9-3-1.html
1136share/doc/postgresql/html/release-9-3-10.html 1137share/doc/postgresql/html/release-9-3-10.html
1137share/doc/postgresql/html/release-9-3-11.html 1138share/doc/postgresql/html/release-9-3-11.html
1138share/doc/postgresql/html/release-9-3-12.html 1139share/doc/postgresql/html/release-9-3-12.html
1139share/doc/postgresql/html/release-9-3-13.html 1140share/doc/postgresql/html/release-9-3-13.html
1140share/doc/postgresql/html/release-9-3-14.html 1141share/doc/postgresql/html/release-9-3-14.html
1141share/doc/postgresql/html/release-9-3-15.html 1142share/doc/postgresql/html/release-9-3-15.html
1142share/doc/postgresql/html/release-9-3-16.html 1143share/doc/postgresql/html/release-9-3-16.html
1143share/doc/postgresql/html/release-9-3-17.html 1144share/doc/postgresql/html/release-9-3-17.html
1144share/doc/postgresql/html/release-9-3-18.html 1145share/doc/postgresql/html/release-9-3-18.html
1145share/doc/postgresql/html/release-9-3-19.html 1146share/doc/postgresql/html/release-9-3-19.html
1146share/doc/postgresql/html/release-9-3-2.html 1147share/doc/postgresql/html/release-9-3-2.html
 1148share/doc/postgresql/html/release-9-3-20.html
1147share/doc/postgresql/html/release-9-3-3.html 1149share/doc/postgresql/html/release-9-3-3.html
1148share/doc/postgresql/html/release-9-3-4.html 1150share/doc/postgresql/html/release-9-3-4.html
1149share/doc/postgresql/html/release-9-3-5.html 1151share/doc/postgresql/html/release-9-3-5.html
1150share/doc/postgresql/html/release-9-3-6.html 1152share/doc/postgresql/html/release-9-3-6.html
1151share/doc/postgresql/html/release-9-3-7.html 1153share/doc/postgresql/html/release-9-3-7.html
1152share/doc/postgresql/html/release-9-3-8.html 1154share/doc/postgresql/html/release-9-3-8.html
1153share/doc/postgresql/html/release-9-3-9.html 1155share/doc/postgresql/html/release-9-3-9.html
1154share/doc/postgresql/html/release-9-3.html 1156share/doc/postgresql/html/release-9-3.html
1155share/doc/postgresql/html/release-9-4-1.html 1157share/doc/postgresql/html/release-9-4-1.html
1156share/doc/postgresql/html/release-9-4-10.html 1158share/doc/postgresql/html/release-9-4-10.html
1157share/doc/postgresql/html/release-9-4-11.html 1159share/doc/postgresql/html/release-9-4-11.html
1158share/doc/postgresql/html/release-9-4-12.html 1160share/doc/postgresql/html/release-9-4-12.html
1159share/doc/postgresql/html/release-9-4-13.html 1161share/doc/postgresql/html/release-9-4-13.html
1160share/doc/postgresql/html/release-9-4-14.html 1162share/doc/postgresql/html/release-9-4-14.html
 1163share/doc/postgresql/html/release-9-4-15.html
1161share/doc/postgresql/html/release-9-4-2.html 1164share/doc/postgresql/html/release-9-4-2.html
1162share/doc/postgresql/html/release-9-4-3.html 1165share/doc/postgresql/html/release-9-4-3.html
1163share/doc/postgresql/html/release-9-4-4.html 1166share/doc/postgresql/html/release-9-4-4.html
1164share/doc/postgresql/html/release-9-4-5.html 1167share/doc/postgresql/html/release-9-4-5.html
1165share/doc/postgresql/html/release-9-4-6.html 1168share/doc/postgresql/html/release-9-4-6.html
1166share/doc/postgresql/html/release-9-4-7.html 1169share/doc/postgresql/html/release-9-4-7.html
1167share/doc/postgresql/html/release-9-4-8.html 1170share/doc/postgresql/html/release-9-4-8.html
1168share/doc/postgresql/html/release-9-4-9.html 1171share/doc/postgresql/html/release-9-4-9.html
1169share/doc/postgresql/html/release-9-4.html 1172share/doc/postgresql/html/release-9-4.html
1170share/doc/postgresql/html/release.html 1173share/doc/postgresql/html/release.html
1171share/doc/postgresql/html/resources.html 1174share/doc/postgresql/html/resources.html
1172share/doc/postgresql/html/role-attributes.html 1175share/doc/postgresql/html/role-attributes.html
1173share/doc/postgresql/html/role-membership.html 1176share/doc/postgresql/html/role-membership.html

cvs diff -r1.8 -r1.9 pkgsrc/databases/postgresql94-plperl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94-plperl/Attic/Makefile 2016/08/14 16:56:30 1.8
+++ pkgsrc/databases/postgresql94-plperl/Attic/Makefile 2017/11/13 09:33:32 1.9
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.8 2016/08/14 16:56:30 is Exp $ 1# $NetBSD: Makefile,v 1.9 2017/11/13 09:33:32 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/94-plperl-/} 3PKGNAME= ${DISTNAME:C/-/94-plperl-/}
4PKGREVISION= # 
5COMMENT= PL/Perl procedural language for the PostgreSQL backend 4COMMENT= PL/Perl 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
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.8 -r1.9 pkgsrc/databases/postgresql94-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql94-server/Attic/PLIST 2017/05/12 19:37:54 1.8
+++ pkgsrc/databases/postgresql94-server/Attic/PLIST 2017/11/13 09:33:32 1.9
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.8 2017/05/12 19:37:54 adam Exp $ 1@comment $NetBSD: PLIST,v 1.9 2017/11/13 09:33:32 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout @@ -432,27 +432,26 @@ share/postgresql/timezone/Australia/Sout
432share/postgresql/timezone/Australia/Sydney 432share/postgresql/timezone/Australia/Sydney
433share/postgresql/timezone/Australia/Tasmania 433share/postgresql/timezone/Australia/Tasmania
434share/postgresql/timezone/Australia/Victoria 434share/postgresql/timezone/Australia/Victoria
435share/postgresql/timezone/Australia/West 435share/postgresql/timezone/Australia/West
436share/postgresql/timezone/Australia/Yancowinna 436share/postgresql/timezone/Australia/Yancowinna
437share/postgresql/timezone/Brazil/Acre 437share/postgresql/timezone/Brazil/Acre
438share/postgresql/timezone/Brazil/DeNoronha 438share/postgresql/timezone/Brazil/DeNoronha
439share/postgresql/timezone/Brazil/East 439share/postgresql/timezone/Brazil/East
440share/postgresql/timezone/Brazil/West 440share/postgresql/timezone/Brazil/West
441share/postgresql/timezone/CET 441share/postgresql/timezone/CET
442share/postgresql/timezone/CST6CDT 442share/postgresql/timezone/CST6CDT
443share/postgresql/timezone/Canada/Atlantic 443share/postgresql/timezone/Canada/Atlantic
444share/postgresql/timezone/Canada/Central 444share/postgresql/timezone/Canada/Central
445share/postgresql/timezone/Canada/East-Saskatchewan 
446share/postgresql/timezone/Canada/Eastern 445share/postgresql/timezone/Canada/Eastern
447share/postgresql/timezone/Canada/Mountain 446share/postgresql/timezone/Canada/Mountain
448share/postgresql/timezone/Canada/Newfoundland 447share/postgresql/timezone/Canada/Newfoundland
449share/postgresql/timezone/Canada/Pacific 448share/postgresql/timezone/Canada/Pacific
450share/postgresql/timezone/Canada/Saskatchewan 449share/postgresql/timezone/Canada/Saskatchewan
451share/postgresql/timezone/Canada/Yukon 450share/postgresql/timezone/Canada/Yukon
452share/postgresql/timezone/Chile/Continental 451share/postgresql/timezone/Chile/Continental
453share/postgresql/timezone/Chile/EasterIsland 452share/postgresql/timezone/Chile/EasterIsland
454share/postgresql/timezone/Cuba 453share/postgresql/timezone/Cuba
455share/postgresql/timezone/EET 454share/postgresql/timezone/EET
456share/postgresql/timezone/EST 455share/postgresql/timezone/EST
457share/postgresql/timezone/EST5EDT 456share/postgresql/timezone/EST5EDT
458share/postgresql/timezone/Egypt 457share/postgresql/timezone/Egypt

File Deleted: pkgsrc/databases/postgresql94/patches/Attic/patch-src_timezone_strftime.c

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

--- pkgsrc/databases/postgresql95/Attic/Makefile.common 2017/11/10 14:47:41 1.13
+++ pkgsrc/databases/postgresql95/Attic/Makefile.common 2017/11/13 09:33:32 1.14
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.13 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.14 2017/11/13 09:33:32 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.9 19DISTNAME= postgresql-9.5.10
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*-*-*)
@@ -55,77 +55,78 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} @@ -55,77 +55,78 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
55PG_DATA_DIR= ${PREFIX}/share/postgresql 55PG_DATA_DIR= ${PREFIX}/share/postgresql
56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
58PG_ETC_DIR= ${PKG_SYSCONFDIR} 58PG_ETC_DIR= ${PKG_SYSCONFDIR}
59 59
60GNU_CONFIGURE= yes 60GNU_CONFIGURE= yes
61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
66 66
67CONFIGURE_ARGS+= --enable-nls 67CONFIGURE_ARGS+= --enable-nls
 68CONFIGURE_ARGS+= --with-gssapi
 69CONFIGURE_ARGS+= --with-libxml
68CONFIGURE_ARGS+= --with-readline 70CONFIGURE_ARGS+= --with-readline
69CONFIGURE_ARGS+= --without-perl 71CONFIGURE_ARGS+= --without-perl
70CONFIGURE_ARGS+= --without-python 72CONFIGURE_ARGS+= --without-python
71CONFIGURE_ARGS+= --without-tcl 73CONFIGURE_ARGS+= --without-tcl
72CONFIGURE_ARGS+= --without-zlib 
73 74
74# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
75# procfs and largefile. 76# procfs and largefile.
76.if ${OPSYS} == "SunOS" 77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
77CONFIGURE_ENV+= ac_cv_header_sys_ucred_h=no 
78.endif 
79 78
80# pkgsrc silently filters the --as-needed linker arg, but that makes 79# pkgsrc silently filters the --as-needed linker arg, but that makes
81# it leak into the pgxs Makefiles and compromises manual building 80# it leak into the pgxs Makefiles and compromises manual building
82# against PostgreSQL files installed. Disable it here to prevent 81# against PostgreSQL files installed. Disable it here to prevent
83# that from happening. 82# that from happening.
84.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
85CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
86.endif 85.endif
87 86
88# configure fails on OpenBSD and MirBSD if thread safety is enabled. 87# configure fails on OpenBSD and MirBSD if thread safety is enabled.
89.if ${OPSYS} == "OpenBSD" || ${OPSYS} == "MirBSD" 88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
90CONFIGURE_ARGS+= --disable-thread-safety 89CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
91.endif 
92 90
93# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
94# This also limits the size of a tuple. The valid values are powers 92# This also limits the size of a tuple. The valid values are powers
95# of 2 up to 32768, and the default size is 8196. Please don't change 93# of 2 up to 32768, and the default size is 8196. Please don't change
96# this value unless you know what you are doing. 94# this value unless you know what you are doing.
97BUILD_DEFS+= PGSQL_BLCKSZ 95BUILD_DEFS+= PGSQL_BLCKSZ
98.if defined(PGSQL_BLCKSZ) 96.if defined(PGSQL_BLCKSZ)
99CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
100.endif 98.endif
101 99
102# PostgreSQL explicitly forbids any use of -ffast-math 100# PostgreSQL explicitly forbids any use of -ffast-math
103BUILDLINK_TRANSFORM+= rm:-ffast-math 101BUILDLINK_TRANSFORM+= rm:-ffast-math
104 102
105# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
106# to provide "dlopen" functionality for the PostgreSQL backend. 104# to provide "dlopen" functionality for the PostgreSQL backend.
107.if ${OPSYS} == "Interix" 105.if ${OPSYS} == "Interix"
108USE_LIBLTDL?= yes 106USE_LIBLTDL?= yes
109.endif 107.endif
110USE_LIBLTDL?= no 108USE_LIBLTDL?= no
111 109
112.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
113LIBS.SunOS+= -lintl 111LIBS.SunOS+= -lintl
114# XXX work around core dumps with the native libedit 112.include "../../devel/zlib/buildlink3.mk"
115USE_GNU_READLINE= yes 113.include "../../textproc/libxml2/buildlink3.mk"
116.include "../../devel/readline/buildlink3.mk" 114
 115.include "../../mk/readline.buildlink3.mk"
 116.if ${READLINE_TYPE} == "editline"
 117CONFIGURE_ARGS+= --with-libedit-preferred
 118.endif
117 119
118.if !defined(META_PACKAGE) 
119post-extract: 120post-extract:
120. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 121. if !empty(USE_LIBLTDL:M[yY][eE][sS])
121 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 122 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
122 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 123 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
123 ${ECHO} "static int dummy = 0;" \ 124 ${ECHO} "static int dummy = 0;" \
124 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 125 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
125. endif 126. endif
126 touch ${WRKSRC}/src/template/dragonfly 127 touch ${WRKSRC}/src/template/dragonfly
127 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 128 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
128 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 129 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
129 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 130 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
130 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h 131 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h
131 cp ${WRKSRC}/src/include/port/freebsd.h \ 132 cp ${WRKSRC}/src/include/port/freebsd.h \

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

--- pkgsrc/databases/postgresql95/Attic/distinfo 2017/09/04 19:33:43 1.10
+++ pkgsrc/databases/postgresql95/Attic/distinfo 2017/11/13 09:33:32 1.11
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.10 2017/09/04 19:33:43 adam Exp $ 1$NetBSD: distinfo,v 1.11 2017/11/13 09:33:32 adam Exp $
2 2
3SHA1 (postgresql-9.5.9.tar.bz2) = ea1fc6ce64611e2c32620330b2de5a54a04d7e8d 3SHA1 (postgresql-9.5.10.tar.bz2) = dd0c5905ffc122cede63727c39077f185ee4bde5
4RMD160 (postgresql-9.5.9.tar.bz2) = a93f904059823534a6578e8427f100d14f61047e 4RMD160 (postgresql-9.5.10.tar.bz2) = d5f557708cacf75788fea9e89c848568b1c4289e
5SHA512 (postgresql-9.5.9.tar.bz2) = 2c6a887b80a4b1d1da18282f443419db2279d8fe61821aa6ed1e9af6d28dda41959981ccede2456bd8835dccd16a80fd485ebc0a1bdc9459996a5d27d7781c55 5SHA512 (postgresql-9.5.10.tar.bz2) = 24e31adabb0b88be882ab0440c560f0e4d5d69203be0581ca0ce22316555d92219ea0a2fd5254f12b2508bd3e58bbe0f1a7c8837228c96d9d5f00caac45af95a
6Size (postgresql-9.5.9.tar.bz2) = 18677113 bytes 6Size (postgresql-9.5.10.tar.bz2) = 18701419 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5 8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632 9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632
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) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3 12SHA1 (patch-src_Makefile.shlib) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3
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) = 0e7daec79a00d7378326e56525e50cfe61cfc174 19SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174

cvs diff -r1.1 -r1.2 pkgsrc/databases/postgresql95/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql95/Attic/options.mk 2016/02/25 21:37:35 1.1
+++ pkgsrc/databases/postgresql95/Attic/options.mk 2017/11/13 09:33:32 1.2
@@ -1,73 +1,48 @@ @@ -1,73 +1,48 @@
1# $NetBSD: options.mk,v 1.1 2016/02/25 21:37:35 tnn Exp $ 1# $NetBSD: options.mk,v 1.2 2017/11/13 09:33:32 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql95 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql95
4PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace 4PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8# Bonjour support
9### Bonjour support. 
10### 
11.if !empty(PKG_OPTIONS:Mbonjour) 9.if !empty(PKG_OPTIONS:Mbonjour)
12CONFIGURE_ARGS+= --with-bonjour 10CONFIGURE_ARGS+= --with-bonjour
13. if ${OPSYS} != "Darwin" 11. if ${OPSYS} != "Darwin"
14LIBS+= -ldns_sd 12LIBS+= -ldns_sd
15. endif 13. endif
16. include "../../net/mDNSResponder/buildlink3.mk" 14. include "../../net/mDNSResponder/buildlink3.mk"
17.endif 15.endif
18 16
19### 17# Dtrace support
20### GSSAPI authentication for the PostgreSQL backend. 18.if !empty(PKG_OPTIONS:Mdtrace)
21### 19CONFIGURE_ARGS+= --enable-dtrace
22.if !empty(PKG_OPTIONS:Mgssapi) 
23CONFIGURE_ARGS+= --with-gssapi 
24.endif 20.endif
25 21
26### 22# Kerberos5 authentication for the PostgreSQL backend
27### Kerberos5 authentication for the PostgreSQL backend. 
28### 
29.if !empty(PKG_OPTIONS:Mkerberos) 23.if !empty(PKG_OPTIONS:Mkerberos)
30. include "../../mk/krb5.buildlink3.mk" 24. include "../../mk/krb5.buildlink3.mk"
31CONFIGURE_ARGS+= --with-krb5 25CONFIGURE_ARGS+= --with-krb5
32 26
33CHECK_BUILTIN.${KRB5_TYPE}:= yes 27CHECK_BUILTIN.${KRB5_TYPE}:= yes
34.include "../../security/${KRB5_TYPE}/builtin.mk" 28.include "../../security/${KRB5_TYPE}/builtin.mk"
35CHECK_BUILTIN.${KRB5_TYPE}:= no 29CHECK_BUILTIN.${KRB5_TYPE}:= no
36 30
37. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \ 31. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \
38 exists(${SH_KRB5_CONFIG}) 32 exists(${SH_KRB5_CONFIG})
39CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags 33CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags
40CPPFLAGS+= ${CFLAGS_KRB5} 34CPPFLAGS+= ${CFLAGS_KRB5}
41. endif 35. endif
42.endif 36.endif
43 37
44### 38# LDAP authentication for the PostgreSQL backend
45### LDAP authentication for the PostgreSQL backend. 
46### 
47.if !empty(PKG_OPTIONS:Mldap) 39.if !empty(PKG_OPTIONS:Mldap)
48. include "../../databases/openldap-client/buildlink3.mk" 40. include "../../databases/openldap-client/buildlink3.mk"
49CONFIGURE_ARGS+= --with-ldap 41CONFIGURE_ARGS+= --with-ldap
50.endif 42.endif
51 43
52### 44# PAM authentication for the PostgreSQL backend
53### PAM authentication for the PostgreSQL backend. 
54### 
55.if !empty(PKG_OPTIONS:Mpam) 45.if !empty(PKG_OPTIONS:Mpam)
56. include "../../mk/pam.buildlink3.mk" 46. include "../../mk/pam.buildlink3.mk"
57CONFIGURE_ARGS+= --with-pam 47CONFIGURE_ARGS+= --with-pam
58.endif 48.endif
59 
60### 
61### XML support for the PostgreSQL backend. 
62### 
63.if !empty(PKG_OPTIONS:Mxml) 
64. include "../../textproc/libxml2/buildlink3.mk" 
65CONFIGURE_ARGS+= --with-libxml 
66.endif 
67 
68### 
69### Dtrace support 
70### 
71.if !empty(PKG_OPTIONS:Mdtrace) 
72CONFIGURE_ARGS+= --enable-dtrace 
73.endif 

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

--- pkgsrc/databases/postgresql95-client/Attic/Makefile 2017/11/10 14:47:42 1.6
+++ pkgsrc/databases/postgresql95-client/Attic/Makefile 2017/11/13 09:33:32 1.7
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2017/11/10 14:47:42 fhajny Exp $ 1# $NetBSD: Makefile,v 1.7 2017/11/13 09:33:32 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/95-client-/} 3PKGNAME= ${DISTNAME:C/-/95-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql95/Makefile.common" 6.include "../../databases/postgresql95/Makefile.common"
8 7
9USE_TOOLS+= gzip tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-zlib 10CONFIGURE_ARGS+= --with-zlib
12 11
13# Override INSTALL script to avoid unprivileged user/group 12# Override INSTALL script to avoid unprivileged user/group
14# leaking into the binary package 13# leaking into the binary package
15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 14CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
16 15
17.include "../../mk/bsd.prefs.mk" 16.include "../../mk/bsd.prefs.mk"

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

--- pkgsrc/databases/postgresql95-docs/Attic/PLIST 2017/09/04 19:33:43 1.9
+++ pkgsrc/databases/postgresql95-docs/Attic/PLIST 2017/11/13 09:33:32 1.10
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.9 2017/09/04 19:33:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.10 2017/11/13 09:33:32 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
@@ -1135,70 +1135,74 @@ share/doc/postgresql/html/release-9-2-11 @@ -1135,70 +1135,74 @@ share/doc/postgresql/html/release-9-2-11
1135share/doc/postgresql/html/release-9-2-12.html 1135share/doc/postgresql/html/release-9-2-12.html
1136share/doc/postgresql/html/release-9-2-13.html 1136share/doc/postgresql/html/release-9-2-13.html
1137share/doc/postgresql/html/release-9-2-14.html 1137share/doc/postgresql/html/release-9-2-14.html
1138share/doc/postgresql/html/release-9-2-15.html 1138share/doc/postgresql/html/release-9-2-15.html
1139share/doc/postgresql/html/release-9-2-16.html 1139share/doc/postgresql/html/release-9-2-16.html
1140share/doc/postgresql/html/release-9-2-17.html 1140share/doc/postgresql/html/release-9-2-17.html
1141share/doc/postgresql/html/release-9-2-18.html 1141share/doc/postgresql/html/release-9-2-18.html
1142share/doc/postgresql/html/release-9-2-19.html 1142share/doc/postgresql/html/release-9-2-19.html
1143share/doc/postgresql/html/release-9-2-2.html 1143share/doc/postgresql/html/release-9-2-2.html
1144share/doc/postgresql/html/release-9-2-20.html 1144share/doc/postgresql/html/release-9-2-20.html
1145share/doc/postgresql/html/release-9-2-21.html 1145share/doc/postgresql/html/release-9-2-21.html
1146share/doc/postgresql/html/release-9-2-22.html 1146share/doc/postgresql/html/release-9-2-22.html
1147share/doc/postgresql/html/release-9-2-23.html 1147share/doc/postgresql/html/release-9-2-23.html
 1148share/doc/postgresql/html/release-9-2-24.html
1148share/doc/postgresql/html/release-9-2-3.html 1149share/doc/postgresql/html/release-9-2-3.html
1149share/doc/postgresql/html/release-9-2-4.html 1150share/doc/postgresql/html/release-9-2-4.html
1150share/doc/postgresql/html/release-9-2-5.html 1151share/doc/postgresql/html/release-9-2-5.html
1151share/doc/postgresql/html/release-9-2-6.html 1152share/doc/postgresql/html/release-9-2-6.html
1152share/doc/postgresql/html/release-9-2-7.html 1153share/doc/postgresql/html/release-9-2-7.html
1153share/doc/postgresql/html/release-9-2-8.html 1154share/doc/postgresql/html/release-9-2-8.html
1154share/doc/postgresql/html/release-9-2-9.html 1155share/doc/postgresql/html/release-9-2-9.html
1155share/doc/postgresql/html/release-9-2.html 1156share/doc/postgresql/html/release-9-2.html
1156share/doc/postgresql/html/release-9-3-1.html 1157share/doc/postgresql/html/release-9-3-1.html
1157share/doc/postgresql/html/release-9-3-10.html 1158share/doc/postgresql/html/release-9-3-10.html
1158share/doc/postgresql/html/release-9-3-11.html 1159share/doc/postgresql/html/release-9-3-11.html
1159share/doc/postgresql/html/release-9-3-12.html 1160share/doc/postgresql/html/release-9-3-12.html
1160share/doc/postgresql/html/release-9-3-13.html 1161share/doc/postgresql/html/release-9-3-13.html
1161share/doc/postgresql/html/release-9-3-14.html 1162share/doc/postgresql/html/release-9-3-14.html
1162share/doc/postgresql/html/release-9-3-15.html 1163share/doc/postgresql/html/release-9-3-15.html
1163share/doc/postgresql/html/release-9-3-16.html 1164share/doc/postgresql/html/release-9-3-16.html
1164share/doc/postgresql/html/release-9-3-17.html 1165share/doc/postgresql/html/release-9-3-17.html
1165share/doc/postgresql/html/release-9-3-18.html 1166share/doc/postgresql/html/release-9-3-18.html
1166share/doc/postgresql/html/release-9-3-19.html 1167share/doc/postgresql/html/release-9-3-19.html
1167share/doc/postgresql/html/release-9-3-2.html 1168share/doc/postgresql/html/release-9-3-2.html
 1169share/doc/postgresql/html/release-9-3-20.html
1168share/doc/postgresql/html/release-9-3-3.html 1170share/doc/postgresql/html/release-9-3-3.html
1169share/doc/postgresql/html/release-9-3-4.html 1171share/doc/postgresql/html/release-9-3-4.html
1170share/doc/postgresql/html/release-9-3-5.html 1172share/doc/postgresql/html/release-9-3-5.html
1171share/doc/postgresql/html/release-9-3-6.html 1173share/doc/postgresql/html/release-9-3-6.html
1172share/doc/postgresql/html/release-9-3-7.html 1174share/doc/postgresql/html/release-9-3-7.html
1173share/doc/postgresql/html/release-9-3-8.html 1175share/doc/postgresql/html/release-9-3-8.html
1174share/doc/postgresql/html/release-9-3-9.html 1176share/doc/postgresql/html/release-9-3-9.html
1175share/doc/postgresql/html/release-9-3.html 1177share/doc/postgresql/html/release-9-3.html
1176share/doc/postgresql/html/release-9-4-1.html 1178share/doc/postgresql/html/release-9-4-1.html
1177share/doc/postgresql/html/release-9-4-10.html 1179share/doc/postgresql/html/release-9-4-10.html
1178share/doc/postgresql/html/release-9-4-11.html 1180share/doc/postgresql/html/release-9-4-11.html
1179share/doc/postgresql/html/release-9-4-12.html 1181share/doc/postgresql/html/release-9-4-12.html
1180share/doc/postgresql/html/release-9-4-13.html 1182share/doc/postgresql/html/release-9-4-13.html
1181share/doc/postgresql/html/release-9-4-14.html 1183share/doc/postgresql/html/release-9-4-14.html
 1184share/doc/postgresql/html/release-9-4-15.html
1182share/doc/postgresql/html/release-9-4-2.html 1185share/doc/postgresql/html/release-9-4-2.html
1183share/doc/postgresql/html/release-9-4-3.html 1186share/doc/postgresql/html/release-9-4-3.html
1184share/doc/postgresql/html/release-9-4-4.html 1187share/doc/postgresql/html/release-9-4-4.html
1185share/doc/postgresql/html/release-9-4-5.html 1188share/doc/postgresql/html/release-9-4-5.html
1186share/doc/postgresql/html/release-9-4-6.html 1189share/doc/postgresql/html/release-9-4-6.html
1187share/doc/postgresql/html/release-9-4-7.html 1190share/doc/postgresql/html/release-9-4-7.html
1188share/doc/postgresql/html/release-9-4-8.html 1191share/doc/postgresql/html/release-9-4-8.html
1189share/doc/postgresql/html/release-9-4-9.html 1192share/doc/postgresql/html/release-9-4-9.html
1190share/doc/postgresql/html/release-9-4.html 1193share/doc/postgresql/html/release-9-4.html
1191share/doc/postgresql/html/release-9-5-1.html 1194share/doc/postgresql/html/release-9-5-1.html
 1195share/doc/postgresql/html/release-9-5-10.html
1192share/doc/postgresql/html/release-9-5-2.html 1196share/doc/postgresql/html/release-9-5-2.html
1193share/doc/postgresql/html/release-9-5-3.html 1197share/doc/postgresql/html/release-9-5-3.html
1194share/doc/postgresql/html/release-9-5-4.html 1198share/doc/postgresql/html/release-9-5-4.html
1195share/doc/postgresql/html/release-9-5-5.html 1199share/doc/postgresql/html/release-9-5-5.html
1196share/doc/postgresql/html/release-9-5-6.html 1200share/doc/postgresql/html/release-9-5-6.html
1197share/doc/postgresql/html/release-9-5-7.html 1201share/doc/postgresql/html/release-9-5-7.html
1198share/doc/postgresql/html/release-9-5-8.html 1202share/doc/postgresql/html/release-9-5-8.html
1199share/doc/postgresql/html/release-9-5-9.html 1203share/doc/postgresql/html/release-9-5-9.html
1200share/doc/postgresql/html/release-9-5.html 1204share/doc/postgresql/html/release-9-5.html
1201share/doc/postgresql/html/release.html 1205share/doc/postgresql/html/release.html
1202share/doc/postgresql/html/replication-origins.html 1206share/doc/postgresql/html/replication-origins.html
1203share/doc/postgresql/html/resources.html 1207share/doc/postgresql/html/resources.html
1204share/doc/postgresql/html/role-attributes.html 1208share/doc/postgresql/html/role-attributes.html

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

--- pkgsrc/databases/postgresql95-server/Attic/PLIST 2017/05/12 19:37:55 1.6
+++ pkgsrc/databases/postgresql95-server/Attic/PLIST 2017/11/13 09:33:32 1.7
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.6 2017/05/12 19:37:55 adam Exp $ 1@comment $NetBSD: PLIST,v 1.7 2017/11/13 09:33:32 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -433,27 +433,26 @@ share/postgresql/timezone/Australia/Sout @@ -433,27 +433,26 @@ share/postgresql/timezone/Australia/Sout
433share/postgresql/timezone/Australia/Sydney 433share/postgresql/timezone/Australia/Sydney
434share/postgresql/timezone/Australia/Tasmania 434share/postgresql/timezone/Australia/Tasmania
435share/postgresql/timezone/Australia/Victoria 435share/postgresql/timezone/Australia/Victoria
436share/postgresql/timezone/Australia/West 436share/postgresql/timezone/Australia/West
437share/postgresql/timezone/Australia/Yancowinna 437share/postgresql/timezone/Australia/Yancowinna
438share/postgresql/timezone/Brazil/Acre 438share/postgresql/timezone/Brazil/Acre
439share/postgresql/timezone/Brazil/DeNoronha 439share/postgresql/timezone/Brazil/DeNoronha
440share/postgresql/timezone/Brazil/East 440share/postgresql/timezone/Brazil/East
441share/postgresql/timezone/Brazil/West 441share/postgresql/timezone/Brazil/West
442share/postgresql/timezone/CET 442share/postgresql/timezone/CET
443share/postgresql/timezone/CST6CDT 443share/postgresql/timezone/CST6CDT
444share/postgresql/timezone/Canada/Atlantic 444share/postgresql/timezone/Canada/Atlantic
445share/postgresql/timezone/Canada/Central 445share/postgresql/timezone/Canada/Central
446share/postgresql/timezone/Canada/East-Saskatchewan 
447share/postgresql/timezone/Canada/Eastern 446share/postgresql/timezone/Canada/Eastern
448share/postgresql/timezone/Canada/Mountain 447share/postgresql/timezone/Canada/Mountain
449share/postgresql/timezone/Canada/Newfoundland 448share/postgresql/timezone/Canada/Newfoundland
450share/postgresql/timezone/Canada/Pacific 449share/postgresql/timezone/Canada/Pacific
451share/postgresql/timezone/Canada/Saskatchewan 450share/postgresql/timezone/Canada/Saskatchewan
452share/postgresql/timezone/Canada/Yukon 451share/postgresql/timezone/Canada/Yukon
453share/postgresql/timezone/Chile/Continental 452share/postgresql/timezone/Chile/Continental
454share/postgresql/timezone/Chile/EasterIsland 453share/postgresql/timezone/Chile/EasterIsland
455share/postgresql/timezone/Cuba 454share/postgresql/timezone/Cuba
456share/postgresql/timezone/EET 455share/postgresql/timezone/EET
457share/postgresql/timezone/EST 456share/postgresql/timezone/EST
458share/postgresql/timezone/EST5EDT 457share/postgresql/timezone/EST5EDT
459share/postgresql/timezone/Egypt 458share/postgresql/timezone/Egypt

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

--- pkgsrc/databases/postgresql96/Attic/Makefile.common 2017/11/10 14:47:41 1.7
+++ pkgsrc/databases/postgresql96/Attic/Makefile.common 2017/11/13 09:33:33 1.8
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1# $NetBSD: Makefile.common,v 1.7 2017/11/10 14:47:41 fhajny Exp $ 1# $NetBSD: Makefile.common,v 1.8 2017/11/13 09:33:33 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.5 19DISTNAME= postgresql-9.6.6
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*-*-*)
@@ -55,77 +55,78 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} @@ -55,77 +55,78 @@ PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
55PG_DATA_DIR= ${PREFIX}/share/postgresql 55PG_DATA_DIR= ${PREFIX}/share/postgresql
56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql 56PG_DOC_DIR= ${PREFIX}/share/doc/postgresql
57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale 57PG_LOCALE_DIR= ${PREFIX}/${PKGLOCALEDIR}/locale
58PG_ETC_DIR= ${PKG_SYSCONFDIR} 58PG_ETC_DIR= ${PKG_SYSCONFDIR}
59 59
60GNU_CONFIGURE= yes 60GNU_CONFIGURE= yes
61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 61CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 62CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR} 63CONFIGURE_ARGS+= --docdir=${PG_DOC_DIR}
64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR} 64CONFIGURE_ARGS+= --localedir=${PG_LOCALE_DIR}
65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 65CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
66 66
67CONFIGURE_ARGS+= --enable-nls 67CONFIGURE_ARGS+= --enable-nls
 68CONFIGURE_ARGS+= --with-gssapi
 69CONFIGURE_ARGS+= --with-libxml
68CONFIGURE_ARGS+= --with-readline 70CONFIGURE_ARGS+= --with-readline
69CONFIGURE_ARGS+= --without-perl 71CONFIGURE_ARGS+= --without-perl
70CONFIGURE_ARGS+= --without-python 72CONFIGURE_ARGS+= --without-python
71CONFIGURE_ARGS+= --without-tcl 73CONFIGURE_ARGS+= --without-tcl
72CONFIGURE_ARGS+= --without-zlib 
73 74
74# sys/ucred.h shouldn't be included on Solaris, causes conflicts between 75# sys/ucred.h shouldn't be included on Solaris, causes conflicts between
75# procfs and largefile. 76# procfs and largefile.
76.if ${OPSYS} == "SunOS" 77CONFIGURE_ENV.SunOS+= ac_cv_header_sys_ucred_h=no
77CONFIGURE_ENV+= ac_cv_header_sys_ucred_h=no 
78.endif 
79 78
80# pkgsrc silently filters the --as-needed linker arg, but that makes 79# pkgsrc silently filters the --as-needed linker arg, but that makes
81# it leak into the pgxs Makefiles and compromises manual building 80# it leak into the pgxs Makefiles and compromises manual building
82# against PostgreSQL files installed. Disable it here to prevent 81# against PostgreSQL files installed. Disable it here to prevent
83# that from happening. 82# that from happening.
84.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin" 83.if ${OPSYS} == "SunOS" || ${OPSYS} == "Darwin"
85CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no 84CONFIGURE_ENV+= pgac_cv_prog_cc_ldflags__Wl___as_needed=no
86.endif 85.endif
87 86
88# configure fails on OpenBSD and MirBSD if thread safety is enabled. 87# configure fails on OpenBSD and MirBSD if thread safety is enabled.
89.if ${OPSYS} == "OpenBSD" || ${OPSYS} == "MirBSD" 88CONFIGURE_ARGS.MirBSD+= --disable-thread-safety
90CONFIGURE_ARGS+= --disable-thread-safety 89CONFIGURE_ARGS.OpenBSD+=--disable-thread-safety
91.endif 
92 90
93# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 91# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
94# This also limits the size of a tuple. The valid values are powers 92# This also limits the size of a tuple. The valid values are powers
95# of 2 up to 32768, and the default size is 8196. Please don't change 93# of 2 up to 32768, and the default size is 8196. Please don't change
96# this value unless you know what you are doing. 94# this value unless you know what you are doing.
97BUILD_DEFS+= PGSQL_BLCKSZ 95BUILD_DEFS+= PGSQL_BLCKSZ
98.if defined(PGSQL_BLCKSZ) 96.if defined(PGSQL_BLCKSZ)
99CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 97CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
100.endif 98.endif
101 99
102# PostgreSQL explicitly forbids any use of -ffast-math 100# PostgreSQL explicitly forbids any use of -ffast-math
103BUILDLINK_TRANSFORM+= rm:-ffast-math 101BUILDLINK_TRANSFORM+= rm:-ffast-math
104 102
105# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 103# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
106# to provide "dlopen" functionality for the PostgreSQL backend. 104# to provide "dlopen" functionality for the PostgreSQL backend.
107.if ${OPSYS} == "Interix" 105.if ${OPSYS} == "Interix"
108USE_LIBLTDL?= yes 106USE_LIBLTDL?= yes
109.endif 107.endif
110USE_LIBLTDL?= no 108USE_LIBLTDL?= no
111 109
112.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
113LIBS.SunOS+= -lintl 111LIBS.SunOS+= -lintl
114# XXX work around core dumps with the native libedit 112.include "../../devel/zlib/buildlink3.mk"
115USE_GNU_READLINE= yes 113.include "../../textproc/libxml2/buildlink3.mk"
116.include "../../devel/readline/buildlink3.mk" 114
 115.include "../../mk/readline.buildlink3.mk"
 116.if ${READLINE_TYPE} == "editline"
 117CONFIGURE_ARGS+= --with-libedit-preferred
 118.endif
117 119
118.if !defined(META_PACKAGE) 
119post-extract: 120post-extract:
120. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 121. if !empty(USE_LIBLTDL:M[yY][eE][sS])
121 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 122 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
122 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 123 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
123 ${ECHO} "static int dummy = 0;" \ 124 ${ECHO} "static int dummy = 0;" \
124 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 125 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
125. endif 126. endif
126 touch ${WRKSRC}/src/template/dragonfly 127 touch ${WRKSRC}/src/template/dragonfly
127 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 128 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
128 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 129 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
129 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 130 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
130 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h 131 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h
131 cp ${WRKSRC}/src/include/port/freebsd.h \ 132 cp ${WRKSRC}/src/include/port/freebsd.h \

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

--- pkgsrc/databases/postgresql96/Attic/distinfo 2017/09/04 19:33:43 1.6
+++ pkgsrc/databases/postgresql96/Attic/distinfo 2017/11/13 09:33:33 1.7
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.6 2017/09/04 19:33:43 adam Exp $ 1$NetBSD: distinfo,v 1.7 2017/11/13 09:33:33 adam Exp $
2 2
3SHA1 (postgresql-9.6.5.tar.bz2) = e45faa85c03a937eb82a34a3f02a4793bba836a6 3SHA1 (postgresql-9.6.6.tar.bz2) = bd911c2a2ee25086cfebe03f3483f82c38210cdb
4RMD160 (postgresql-9.6.5.tar.bz2) = 95ed637b26927b83c944d4ae70b903953e239601 4RMD160 (postgresql-9.6.6.tar.bz2) = bd2c81026b226517bfe0351db253464c465c8ac8
5SHA512 (postgresql-9.6.5.tar.bz2) = ad35c27ea55b18005ea61b49d6994718df86519b3f99addd0ecb17ece1f1c34764eb5194f8961c45cfa75703d810baf54433f8538cfd43a70bd908e1e5878df9 5SHA512 (postgresql-9.6.6.tar.bz2) = ac2f0fe6ef7c4e14f85cd7592d1306d9657b7f35efa6f43a089d7785ab970b8c25aa1e66d83df056c23513d6dbac0a9f54717b3d85758560d02e7f8141914ebc
6Size (postgresql-9.6.5.tar.bz2) = 19576132 bytes 6Size (postgresql-9.6.6.tar.bz2) = 19605724 bytes
7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813 7SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5 8SHA1 (patch-config_perl.m4) = e035132b1c281a75752d570ac5e29a11176c25c5
9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632 9SHA1 (patch-configure) = 59fe9a768caf8a5d308acac60c28bc6bb2c40632
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) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3 12SHA1 (patch-src_Makefile.shlib) = 46b3a8591678f92892d3837cd31fa44e8a7e21b3
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) = 0e7daec79a00d7378326e56525e50cfe61cfc174 19SHA1 (patch-src_pl_plperl_plperl.h) = 0e7daec79a00d7378326e56525e50cfe61cfc174

cvs diff -r1.1 -r1.2 pkgsrc/databases/postgresql96/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96/Attic/options.mk 2016/10/29 19:41:54 1.1
+++ pkgsrc/databases/postgresql96/Attic/options.mk 2017/11/13 09:33:33 1.2
@@ -1,73 +1,48 @@ @@ -1,73 +1,48 @@
1# $NetBSD: options.mk,v 1.1 2016/10/29 19:41:54 adam Exp $ 1# $NetBSD: options.mk,v 1.2 2017/11/13 09:33:33 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql96 3PKG_OPTIONS_VAR= PKG_OPTIONS.postgresql96
4PKG_SUPPORTED_OPTIONS= bonjour gssapi kerberos ldap pam xml dtrace 4PKG_SUPPORTED_OPTIONS= bonjour dtrace kerberos ldap pam
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8### 8# Bonjour support
9### Bonjour support. 
10### 
11.if !empty(PKG_OPTIONS:Mbonjour) 9.if !empty(PKG_OPTIONS:Mbonjour)
12CONFIGURE_ARGS+= --with-bonjour 10CONFIGURE_ARGS+= --with-bonjour
13. if ${OPSYS} != "Darwin" 11. if ${OPSYS} != "Darwin"
14LIBS+= -ldns_sd 12LIBS+= -ldns_sd
15. endif 13. endif
16. include "../../net/mDNSResponder/buildlink3.mk" 14. include "../../net/mDNSResponder/buildlink3.mk"
17.endif 15.endif
18 16
19### 17# Dtrace support
20### GSSAPI authentication for the PostgreSQL backend. 18.if !empty(PKG_OPTIONS:Mdtrace)
21### 19CONFIGURE_ARGS+= --enable-dtrace
22.if !empty(PKG_OPTIONS:Mgssapi) 
23CONFIGURE_ARGS+= --with-gssapi 
24.endif 20.endif
25 21
26### 22# Kerberos5 authentication for the PostgreSQL backend
27### Kerberos5 authentication for the PostgreSQL backend. 
28### 
29.if !empty(PKG_OPTIONS:Mkerberos) 23.if !empty(PKG_OPTIONS:Mkerberos)
30. include "../../mk/krb5.buildlink3.mk" 24. include "../../mk/krb5.buildlink3.mk"
31CONFIGURE_ARGS+= --with-krb5 25CONFIGURE_ARGS+= --with-krb5
32 26
33CHECK_BUILTIN.${KRB5_TYPE}:= yes 27CHECK_BUILTIN.${KRB5_TYPE}:= yes
34.include "../../security/${KRB5_TYPE}/builtin.mk" 28.include "../../security/${KRB5_TYPE}/builtin.mk"
35CHECK_BUILTIN.${KRB5_TYPE}:= no 29CHECK_BUILTIN.${KRB5_TYPE}:= no
36 30
37. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \ 31. if !empty(USE_BUILTIN.${KRB5_TYPE}:M[yY][eE][sS]) && \
38 exists(${SH_KRB5_CONFIG}) 32 exists(${SH_KRB5_CONFIG})
39CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags 33CFLAGS_KRB5!= ${SH_KRB5_CONFIG} --cflags
40CPPFLAGS+= ${CFLAGS_KRB5} 34CPPFLAGS+= ${CFLAGS_KRB5}
41. endif 35. endif
42.endif 36.endif
43 37
44### 38# LDAP authentication for the PostgreSQL backend
45### LDAP authentication for the PostgreSQL backend. 
46### 
47.if !empty(PKG_OPTIONS:Mldap) 39.if !empty(PKG_OPTIONS:Mldap)
48. include "../../databases/openldap-client/buildlink3.mk" 40. include "../../databases/openldap-client/buildlink3.mk"
49CONFIGURE_ARGS+= --with-ldap 41CONFIGURE_ARGS+= --with-ldap
50.endif 42.endif
51 43
52### 44# PAM authentication for the PostgreSQL backend
53### PAM authentication for the PostgreSQL backend. 
54### 
55.if !empty(PKG_OPTIONS:Mpam) 45.if !empty(PKG_OPTIONS:Mpam)
56. include "../../mk/pam.buildlink3.mk" 46. include "../../mk/pam.buildlink3.mk"
57CONFIGURE_ARGS+= --with-pam 47CONFIGURE_ARGS+= --with-pam
58.endif 48.endif
59 
60### 
61### XML support for the PostgreSQL backend. 
62### 
63.if !empty(PKG_OPTIONS:Mxml) 
64. include "../../textproc/libxml2/buildlink3.mk" 
65CONFIGURE_ARGS+= --with-libxml 
66.endif 
67 
68### 
69### Dtrace support 
70### 
71.if !empty(PKG_OPTIONS:Mdtrace) 
72CONFIGURE_ARGS+= --enable-dtrace 
73.endif 

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

--- pkgsrc/databases/postgresql96-client/Attic/Makefile 2017/11/10 14:47:42 1.4
+++ pkgsrc/databases/postgresql96-client/Attic/Makefile 2017/11/13 09:33:33 1.5
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.4 2017/11/10 14:47:42 fhajny Exp $ 1# $NetBSD: Makefile,v 1.5 2017/11/13 09:33:33 adam Exp $
2 2
3PKGNAME= ${DISTNAME:C/-/96-client-/} 3PKGNAME= ${DISTNAME:C/-/96-client-/}
4PKGREVISION= 1 
5COMMENT= PostgreSQL database client programs 4COMMENT= PostgreSQL database client programs
6 5
7.include "../../databases/postgresql96/Makefile.common" 6.include "../../databases/postgresql96/Makefile.common"
8 7
9USE_TOOLS+= gzip tar 8USE_TOOLS+= gzip tar
10CONFIGURE_ARGS+= --with-openssl 9CONFIGURE_ARGS+= --with-openssl
11CONFIGURE_ARGS+= --with-zlib 10CONFIGURE_ARGS+= --with-zlib
12 11
13# Override INSTALL script to avoid unprivileged user/group 12# Override INSTALL script to avoid unprivileged user/group
14# leaking into the binary package 13# leaking into the binary package
15CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c 14CONFIGURE_ARGS+= INSTALL=${INSTALL:Q}\ -c
16 15
17.include "../../mk/bsd.prefs.mk" 16.include "../../mk/bsd.prefs.mk"

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

--- pkgsrc/databases/postgresql96-docs/Attic/PLIST 2017/09/04 19:33:43 1.5
+++ pkgsrc/databases/postgresql96-docs/Attic/PLIST 2017/11/13 09:33:33 1.6
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.5 2017/09/04 19:33:43 adam Exp $ 1@comment $NetBSD: PLIST,v 1.6 2017/11/13 09:33:33 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
@@ -1149,84 +1149,89 @@ share/doc/postgresql/html/release-9-2-11 @@ -1149,84 +1149,89 @@ share/doc/postgresql/html/release-9-2-11
1149share/doc/postgresql/html/release-9-2-12.html 1149share/doc/postgresql/html/release-9-2-12.html
1150share/doc/postgresql/html/release-9-2-13.html 1150share/doc/postgresql/html/release-9-2-13.html
1151share/doc/postgresql/html/release-9-2-14.html 1151share/doc/postgresql/html/release-9-2-14.html
1152share/doc/postgresql/html/release-9-2-15.html 1152share/doc/postgresql/html/release-9-2-15.html
1153share/doc/postgresql/html/release-9-2-16.html 1153share/doc/postgresql/html/release-9-2-16.html
1154share/doc/postgresql/html/release-9-2-17.html 1154share/doc/postgresql/html/release-9-2-17.html
1155share/doc/postgresql/html/release-9-2-18.html 1155share/doc/postgresql/html/release-9-2-18.html
1156share/doc/postgresql/html/release-9-2-19.html 1156share/doc/postgresql/html/release-9-2-19.html
1157share/doc/postgresql/html/release-9-2-2.html 1157share/doc/postgresql/html/release-9-2-2.html
1158share/doc/postgresql/html/release-9-2-20.html 1158share/doc/postgresql/html/release-9-2-20.html
1159share/doc/postgresql/html/release-9-2-21.html 1159share/doc/postgresql/html/release-9-2-21.html
1160share/doc/postgresql/html/release-9-2-22.html 1160share/doc/postgresql/html/release-9-2-22.html
1161share/doc/postgresql/html/release-9-2-23.html 1161share/doc/postgresql/html/release-9-2-23.html
 1162share/doc/postgresql/html/release-9-2-24.html
1162share/doc/postgresql/html/release-9-2-3.html 1163share/doc/postgresql/html/release-9-2-3.html
1163share/doc/postgresql/html/release-9-2-4.html 1164share/doc/postgresql/html/release-9-2-4.html
1164share/doc/postgresql/html/release-9-2-5.html 1165share/doc/postgresql/html/release-9-2-5.html
1165share/doc/postgresql/html/release-9-2-6.html 1166share/doc/postgresql/html/release-9-2-6.html
1166share/doc/postgresql/html/release-9-2-7.html 1167share/doc/postgresql/html/release-9-2-7.html
1167share/doc/postgresql/html/release-9-2-8.html 1168share/doc/postgresql/html/release-9-2-8.html
1168share/doc/postgresql/html/release-9-2-9.html 1169share/doc/postgresql/html/release-9-2-9.html
1169share/doc/postgresql/html/release-9-2.html 1170share/doc/postgresql/html/release-9-2.html
1170share/doc/postgresql/html/release-9-3-1.html 1171share/doc/postgresql/html/release-9-3-1.html
1171share/doc/postgresql/html/release-9-3-10.html 1172share/doc/postgresql/html/release-9-3-10.html
1172share/doc/postgresql/html/release-9-3-11.html 1173share/doc/postgresql/html/release-9-3-11.html
1173share/doc/postgresql/html/release-9-3-12.html 1174share/doc/postgresql/html/release-9-3-12.html
1174share/doc/postgresql/html/release-9-3-13.html 1175share/doc/postgresql/html/release-9-3-13.html
1175share/doc/postgresql/html/release-9-3-14.html 1176share/doc/postgresql/html/release-9-3-14.html
1176share/doc/postgresql/html/release-9-3-15.html 1177share/doc/postgresql/html/release-9-3-15.html
1177share/doc/postgresql/html/release-9-3-16.html 1178share/doc/postgresql/html/release-9-3-16.html
1178share/doc/postgresql/html/release-9-3-17.html 1179share/doc/postgresql/html/release-9-3-17.html
1179share/doc/postgresql/html/release-9-3-18.html 1180share/doc/postgresql/html/release-9-3-18.html
1180share/doc/postgresql/html/release-9-3-19.html 1181share/doc/postgresql/html/release-9-3-19.html
1181share/doc/postgresql/html/release-9-3-2.html 1182share/doc/postgresql/html/release-9-3-2.html
 1183share/doc/postgresql/html/release-9-3-20.html
1182share/doc/postgresql/html/release-9-3-3.html 1184share/doc/postgresql/html/release-9-3-3.html
1183share/doc/postgresql/html/release-9-3-4.html 1185share/doc/postgresql/html/release-9-3-4.html
1184share/doc/postgresql/html/release-9-3-5.html 1186share/doc/postgresql/html/release-9-3-5.html
1185share/doc/postgresql/html/release-9-3-6.html 1187share/doc/postgresql/html/release-9-3-6.html
1186share/doc/postgresql/html/release-9-3-7.html 1188share/doc/postgresql/html/release-9-3-7.html
1187share/doc/postgresql/html/release-9-3-8.html 1189share/doc/postgresql/html/release-9-3-8.html
1188share/doc/postgresql/html/release-9-3-9.html 1190share/doc/postgresql/html/release-9-3-9.html
1189share/doc/postgresql/html/release-9-3.html 1191share/doc/postgresql/html/release-9-3.html
1190share/doc/postgresql/html/release-9-4-1.html 1192share/doc/postgresql/html/release-9-4-1.html
1191share/doc/postgresql/html/release-9-4-10.html 1193share/doc/postgresql/html/release-9-4-10.html
1192share/doc/postgresql/html/release-9-4-11.html 1194share/doc/postgresql/html/release-9-4-11.html
1193share/doc/postgresql/html/release-9-4-12.html 1195share/doc/postgresql/html/release-9-4-12.html
1194share/doc/postgresql/html/release-9-4-13.html 1196share/doc/postgresql/html/release-9-4-13.html
1195share/doc/postgresql/html/release-9-4-14.html 1197share/doc/postgresql/html/release-9-4-14.html
 1198share/doc/postgresql/html/release-9-4-15.html
1196share/doc/postgresql/html/release-9-4-2.html 1199share/doc/postgresql/html/release-9-4-2.html
1197share/doc/postgresql/html/release-9-4-3.html 1200share/doc/postgresql/html/release-9-4-3.html
1198share/doc/postgresql/html/release-9-4-4.html 1201share/doc/postgresql/html/release-9-4-4.html
1199share/doc/postgresql/html/release-9-4-5.html 1202share/doc/postgresql/html/release-9-4-5.html
1200share/doc/postgresql/html/release-9-4-6.html 1203share/doc/postgresql/html/release-9-4-6.html
1201share/doc/postgresql/html/release-9-4-7.html 1204share/doc/postgresql/html/release-9-4-7.html
1202share/doc/postgresql/html/release-9-4-8.html 1205share/doc/postgresql/html/release-9-4-8.html
1203share/doc/postgresql/html/release-9-4-9.html 1206share/doc/postgresql/html/release-9-4-9.html
1204share/doc/postgresql/html/release-9-4.html 1207share/doc/postgresql/html/release-9-4.html
1205share/doc/postgresql/html/release-9-5-1.html 1208share/doc/postgresql/html/release-9-5-1.html
 1209share/doc/postgresql/html/release-9-5-10.html
1206share/doc/postgresql/html/release-9-5-2.html 1210share/doc/postgresql/html/release-9-5-2.html
1207share/doc/postgresql/html/release-9-5-3.html 1211share/doc/postgresql/html/release-9-5-3.html
1208share/doc/postgresql/html/release-9-5-4.html 1212share/doc/postgresql/html/release-9-5-4.html
1209share/doc/postgresql/html/release-9-5-5.html 1213share/doc/postgresql/html/release-9-5-5.html
1210share/doc/postgresql/html/release-9-5-6.html 1214share/doc/postgresql/html/release-9-5-6.html
1211share/doc/postgresql/html/release-9-5-7.html 1215share/doc/postgresql/html/release-9-5-7.html
1212share/doc/postgresql/html/release-9-5-8.html 1216share/doc/postgresql/html/release-9-5-8.html
1213share/doc/postgresql/html/release-9-5-9.html 1217share/doc/postgresql/html/release-9-5-9.html
1214share/doc/postgresql/html/release-9-5.html 1218share/doc/postgresql/html/release-9-5.html
1215share/doc/postgresql/html/release-9-6-1.html 1219share/doc/postgresql/html/release-9-6-1.html
1216share/doc/postgresql/html/release-9-6-2.html 1220share/doc/postgresql/html/release-9-6-2.html
1217share/doc/postgresql/html/release-9-6-3.html 1221share/doc/postgresql/html/release-9-6-3.html
1218share/doc/postgresql/html/release-9-6-4.html 1222share/doc/postgresql/html/release-9-6-4.html
1219share/doc/postgresql/html/release-9-6-5.html 1223share/doc/postgresql/html/release-9-6-5.html
 1224share/doc/postgresql/html/release-9-6-6.html
1220share/doc/postgresql/html/release-9-6.html 1225share/doc/postgresql/html/release-9-6.html
1221share/doc/postgresql/html/release.html 1226share/doc/postgresql/html/release.html
1222share/doc/postgresql/html/replication-origins.html 1227share/doc/postgresql/html/replication-origins.html
1223share/doc/postgresql/html/resources.html 1228share/doc/postgresql/html/resources.html
1224share/doc/postgresql/html/role-attributes.html 1229share/doc/postgresql/html/role-attributes.html
1225share/doc/postgresql/html/role-membership.html 1230share/doc/postgresql/html/role-membership.html
1226share/doc/postgresql/html/role-removal.html 1231share/doc/postgresql/html/role-removal.html
1227share/doc/postgresql/html/routine-reindex.html 1232share/doc/postgresql/html/routine-reindex.html
1228share/doc/postgresql/html/routine-vacuuming.html 1233share/doc/postgresql/html/routine-vacuuming.html
1229share/doc/postgresql/html/row-estimation-examples.html 1234share/doc/postgresql/html/row-estimation-examples.html
1230share/doc/postgresql/html/rowtypes.html 1235share/doc/postgresql/html/rowtypes.html
1231share/doc/postgresql/html/rule-system.html 1236share/doc/postgresql/html/rule-system.html
1232share/doc/postgresql/html/rules-materializedviews.html 1237share/doc/postgresql/html/rules-materializedviews.html

cvs diff -r1.3 -r1.4 pkgsrc/databases/postgresql96-server/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/postgresql96-server/Attic/PLIST 2017/05/12 19:37:55 1.3
+++ pkgsrc/databases/postgresql96-server/Attic/PLIST 2017/11/13 09:33:33 1.4
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.3 2017/05/12 19:37:55 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2017/11/13 09:33:33 adam Exp $
2bin/postgres 2bin/postgres
3bin/postmaster 3bin/postmaster
4include/postgresql/server/plpgsql.h 4include/postgresql/server/plpgsql.h
5lib/postgresql/ascii_and_mic.so 5lib/postgresql/ascii_and_mic.so
6lib/postgresql/cyrillic_and_mic.so 6lib/postgresql/cyrillic_and_mic.so
7lib/postgresql/dict_snowball.so 7lib/postgresql/dict_snowball.so
8lib/postgresql/euc2004_sjis2004.so 8lib/postgresql/euc2004_sjis2004.so
9lib/postgresql/euc_cn_and_mic.so 9lib/postgresql/euc_cn_and_mic.so
10lib/postgresql/euc_jp_and_sjis.so 10lib/postgresql/euc_jp_and_sjis.so
11lib/postgresql/euc_kr_and_mic.so 11lib/postgresql/euc_kr_and_mic.so
12lib/postgresql/euc_tw_and_big5.so 12lib/postgresql/euc_tw_and_big5.so
13lib/postgresql/latin2_and_win1250.so 13lib/postgresql/latin2_and_win1250.so
14lib/postgresql/latin_and_mic.so 14lib/postgresql/latin_and_mic.so
@@ -434,27 +434,26 @@ share/postgresql/timezone/Australia/Sout @@ -434,27 +434,26 @@ share/postgresql/timezone/Australia/Sout
434share/postgresql/timezone/Australia/Sydney 434share/postgresql/timezone/Australia/Sydney
435share/postgresql/timezone/Australia/Tasmania 435share/postgresql/timezone/Australia/Tasmania
436share/postgresql/timezone/Australia/Victoria 436share/postgresql/timezone/Australia/Victoria
437share/postgresql/timezone/Australia/West 437share/postgresql/timezone/Australia/West
438share/postgresql/timezone/Australia/Yancowinna 438share/postgresql/timezone/Australia/Yancowinna
439share/postgresql/timezone/Brazil/Acre 439share/postgresql/timezone/Brazil/Acre
440share/postgresql/timezone/Brazil/DeNoronha 440share/postgresql/timezone/Brazil/DeNoronha
441share/postgresql/timezone/Brazil/East 441share/postgresql/timezone/Brazil/East
442share/postgresql/timezone/Brazil/West 442share/postgresql/timezone/Brazil/West
443share/postgresql/timezone/CET 443share/postgresql/timezone/CET
444share/postgresql/timezone/CST6CDT 444share/postgresql/timezone/CST6CDT
445share/postgresql/timezone/Canada/Atlantic 445share/postgresql/timezone/Canada/Atlantic
446share/postgresql/timezone/Canada/Central 446share/postgresql/timezone/Canada/Central
447share/postgresql/timezone/Canada/East-Saskatchewan 
448share/postgresql/timezone/Canada/Eastern 447share/postgresql/timezone/Canada/Eastern
449share/postgresql/timezone/Canada/Mountain 448share/postgresql/timezone/Canada/Mountain
450share/postgresql/timezone/Canada/Newfoundland 449share/postgresql/timezone/Canada/Newfoundland
451share/postgresql/timezone/Canada/Pacific 450share/postgresql/timezone/Canada/Pacific
452share/postgresql/timezone/Canada/Saskatchewan 451share/postgresql/timezone/Canada/Saskatchewan
453share/postgresql/timezone/Canada/Yukon 452share/postgresql/timezone/Canada/Yukon
454share/postgresql/timezone/Chile/Continental 453share/postgresql/timezone/Chile/Continental
455share/postgresql/timezone/Chile/EasterIsland 454share/postgresql/timezone/Chile/EasterIsland
456share/postgresql/timezone/Cuba 455share/postgresql/timezone/Cuba
457share/postgresql/timezone/EET 456share/postgresql/timezone/EET
458share/postgresql/timezone/EST 457share/postgresql/timezone/EST
459share/postgresql/timezone/EST5EDT 458share/postgresql/timezone/EST5EDT
460share/postgresql/timezone/Egypt 459share/postgresql/timezone/Egypt