Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Sep 2016 11:15:29 +0000 (UTC)
From:      Palle Girgensohn <girgen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r421360 - in head: . Mk/Uses databases databases/postgresql92-server databases/postgresql96-client databases/postgresql96-contrib databases/postgresql96-docs databases/postgresql96-pgtc...
Message-ID:  <201609051115.u85BFTwn049800@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: girgen
Date: Mon Sep  5 11:15:29 2016
New Revision: 421360
URL: https://svnweb.freebsd.org/changeset/ports/421360

Log:
  Add PostgreSQL-9.6 RC1
  
  Please read the entry from 20160905 in UPDATING:
  
  daemon user has changed to `postgres'
  ICU is default on

Added:
  head/databases/postgresql96-client/
     - copied from r421107, head/databases/postgresql95-client/
  head/databases/postgresql96-contrib/
     - copied from r414940, head/databases/postgresql95-contrib/
  head/databases/postgresql96-docs/
     - copied from r414940, head/databases/postgresql95-docs/
  head/databases/postgresql96-pgtcl/
     - copied from r414940, head/databases/postgresql95-pgtcl/
  head/databases/postgresql96-plperl/
     - copied from r414940, head/databases/postgresql95-plperl/
  head/databases/postgresql96-plpython/
     - copied from r414940, head/databases/postgresql95-plpython/
  head/databases/postgresql96-pltcl/
     - copied from r414940, head/databases/postgresql95-pltcl/
  head/databases/postgresql96-server/
     - copied from r414940, head/databases/postgresql95-server/
Modified:
  head/GIDs
  head/Mk/Uses/pgsql.mk
  head/UIDs
  head/UPDATING
  head/databases/Makefile
  head/databases/postgresql92-server/Makefile
  head/databases/postgresql96-client/Makefile
  head/databases/postgresql96-contrib/Makefile
  head/databases/postgresql96-docs/Makefile
  head/databases/postgresql96-pgtcl/Makefile
  head/databases/postgresql96-plperl/Makefile
  head/databases/postgresql96-plpython/Makefile
  head/databases/postgresql96-pltcl/Makefile
  head/databases/postgresql96-server/Makefile
  head/databases/postgresql96-server/distinfo
  head/databases/postgresql96-server/files/502.pgsql.in
  head/databases/postgresql96-server/files/dot.cshrc.in
  head/databases/postgresql96-server/files/dot.profile.in
  head/databases/postgresql96-server/files/patch-src-backend-Makefile
  head/databases/postgresql96-server/files/postgresql.in
  head/databases/postgresql96-server/pkg-install-server
  head/databases/postgresql96-server/pkg-plist-client
  head/databases/postgresql96-server/pkg-plist-contrib
  head/databases/postgresql96-server/pkg-plist-server

Modified: head/GIDs
==============================================================================
--- head/GIDs	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/GIDs	Mon Sep  5 11:15:29 2016	(r421360)
@@ -711,7 +711,7 @@ bopm:*:717:
 # free: 767
 # free: 768
 # free: 769
-# free: 770
+postgres:*:770:
 # free: 771
 # free: 772
 # free: 773

Modified: head/Mk/Uses/pgsql.mk
==============================================================================
--- head/Mk/Uses/pgsql.mk	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/Mk/Uses/pgsql.mk	Mon Sep  5 11:15:29 2016	(r421360)
@@ -33,7 +33,7 @@ _INCLUDE_USES_PGSQL_MK=	yes
 
 # When adding a version, please keep the comment in
 # Mk/bsd.default-versions.mk in sync.
-VALID_PGSQL_VER=	9.1 9.2 9.3 9.4 9.5
+VALID_PGSQL_VER=	9.1 9.2 9.3 9.4 9.5 9.6
 
 # Override non-default LIBVERS like this:
 #PGSQL99_LIBVER=6

Modified: head/UIDs
==============================================================================
--- head/UIDs	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/UIDs	Mon Sep  5 11:15:29 2016	(r421360)
@@ -716,7 +716,7 @@ _dnscrypt-wrapper:*:718:65534::0:0:dnscr
 # free: 767
 # free: 768
 # free: 769
-# free: 770
+postgres:*:770:770::0:0:PostgreSQL Daemon:/var/db/postgres:/bin/sh
 # free: 771
 # free: 772
 # free: 773

Modified: head/UPDATING
==============================================================================
--- head/UPDATING	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/UPDATING	Mon Sep  5 11:15:29 2016	(r421360)
@@ -5,6 +5,27 @@ they are unavoidable.
 You should get into the habit of checking this file for changes each time
 you update your ports collection, before attempting any port upgrades.
 
+20160905:
+  AFFECTS: users of databases/postgresql96-server
+  AUTHOR: girgen@FreeBSD.org
+
+  The default unix user used by the PostgreSQL daemon has changed to
+  `postgres' to reflect the long time upstream's convention. Any scripts
+  you have using the old `pgsql' unix user should be modified when upgrading to
+  PostgreSQL version 9.6. Older versions of PostgreSQL will continue using
+  `pgsql' until their end-of-life.
+
+  For users with UTF-8 locales in the database: The ICU patch is *activated by
+  default* for the PostgreSQL-9.6 server. For previous versions it was optional
+  and default off, but this has changed. Please read the entry here below from
+  20160811 and understand the consequences of changing between ICU and system
+  locale for database collation (short version: don't). pg_upgrade requires the
+  collation method to be the same (or a reindex), while pg_dump/restore does not.
+
+  Also, the default home directory for the postgres user is now
+  /var/db/postgres, and the default data directory for PostgreSQL 9.6 is
+  /var/db/postgres/data96.
+
 20160829:
   AFFECTS: users of x11/nvidia-driver
   AUTHOR: cem@FreeBSD.org

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/databases/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -700,6 +700,14 @@
     SUBDIR += postgresql95-plpython
     SUBDIR += postgresql95-pltcl
     SUBDIR += postgresql95-server
+    SUBDIR += postgresql96-client
+    SUBDIR += postgresql96-contrib
+    SUBDIR += postgresql96-docs
+    SUBDIR += postgresql96-pgtcl
+    SUBDIR += postgresql96-plperl
+    SUBDIR += postgresql96-plpython
+    SUBDIR += postgresql96-pltcl
+    SUBDIR += postgresql96-server
     SUBDIR += powerarchitect
     SUBDIR += proftpd-mod_sql_mysql
     SUBDIR += proftpd-mod_sql_odbc

Modified: head/databases/postgresql92-server/Makefile
==============================================================================
--- head/databases/postgresql92-server/Makefile	Mon Sep  5 11:00:28 2016	(r421359)
+++ head/databases/postgresql92-server/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -89,7 +89,7 @@ ICU_DESC=	Use ICU for unicode collation
 # (requires dump/restore if modified.)
 OPTIONS_DEFINE+=	INTDATE
 INTDATE_DESC=	Builds with 64-bit date/time type
-OPTIONS_DEFAULT=	XML TZDATA INTDATE
+OPTIONS_DEFAULT+=	XML TZDATA INTDATE
 .endif
 
 .if !defined(SLAVE_ONLY)

Modified: head/databases/postgresql96-client/Makefile
==============================================================================
--- head/databases/postgresql95-client/Makefile	Tue Aug 30 09:01:25 2016	(r421107)
+++ head/databases/postgresql96-client/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -5,7 +5,7 @@ PORTNAME=	postgresql
 
 COMMENT=	PostgreSQL database (client)
 
-MASTERDIR=	${.CURDIR}/../postgresql95-server
+MASTERDIR=	${.CURDIR}/../postgresql96-server
 
 BUILD_DIRS=	config src/include src/interfaces src/port \
 		src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \

Modified: head/databases/postgresql96-contrib/Makefile
==============================================================================
--- head/databases/postgresql95-contrib/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-contrib/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -11,11 +11,11 @@ COMMENT=	The contrib utilities from the 
 LIB_DEPENDS=	libxslt.so:textproc/libxslt \
 		libxml2.so:textproc/libxml2
 
-MASTERDIR=	${.CURDIR}/../postgresql95-server
+MASTERDIR=	${.CURDIR}/../postgresql96-server
 
-USES=		bison pgsql:9.5
+USES=		bison pgsql:9.6
 
-BUILD_DIRS=	src/port src/common contrib
+BUILD_DIRS=	src/port src/include src/common contrib
 INSTALL_DIRS=	contrib
 
 SLAVE_ONLY=	yes
@@ -23,6 +23,9 @@ COMPONENT=	-contrib
 CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl --disable-nls --with-uuid=bsd
 LDFLAGS+=	-lpthread -L${PREFIX}/lib
 
+post-configure: 
+		@cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks
+
 post-install:
 	@- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/extension/README
 

Modified: head/databases/postgresql96-docs/Makefile
==============================================================================
--- head/databases/postgresql95-docs/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-docs/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@pingpong.net>
 # $FreeBSD$
 
-WANT_PGSQL_VER=9.5
+WANT_PGSQL_VER=9.6
 
 .include "${.CURDIR}/../postgresql91-docs/Makefile"

Modified: head/databases/postgresql96-pgtcl/Makefile
==============================================================================
--- head/databases/postgresql95-pgtcl/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-pgtcl/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,10 +1,10 @@
 # $FreeBSD$
 
-PKGNAMESUFFIX=	-postgresql95
+PKGNAMESUFFIX=	-postgresql96
 
 CONFLICTS=	pgtcl-[0-9]* pgtcl-postgresql9[01234]-[0-9]*
 
-PGTCL_SLAVE=	9.5
+PGTCL_SLAVE=	9.6
 MASTERDIR=	${.CURDIR}/../pgtcl
 
 .include "${MASTERDIR}/Makefile"

Modified: head/databases/postgresql96-plperl/Makefile
==============================================================================
--- head/databases/postgresql95-plperl/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-plperl/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@partitur.se>
 # $FreeBSD$
 
-WANT_PGSQL_VER=	9.5
+WANT_PGSQL_VER=	9.6
 
-.include "${.CURDIR}/../postgresql90-plperl/Makefile"
+.include "${.CURDIR}/../postgresql95-plperl/Makefile"

Modified: head/databases/postgresql96-plpython/Makefile
==============================================================================
--- head/databases/postgresql95-plpython/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-plpython/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,5 +1,5 @@
 # $FreeBSD$
 
-WANT_PGSQL_VER=	9.5
+WANT_PGSQL_VER=	9.6
 
-.include "${.CURDIR}/../postgresql90-plpython/Makefile"
+.include "${.CURDIR}/../postgresql95-plpython/Makefile"

Modified: head/databases/postgresql96-pltcl/Makefile
==============================================================================
--- head/databases/postgresql95-pltcl/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-pltcl/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@partitur.se>
 # $FreeBSD$
 
-WANT_PGSQL_VER=	9.5
+WANT_PGSQL_VER=	9.6
 
 .include "${.CURDIR}/../postgresql91-pltcl/Makefile"

Modified: head/databases/postgresql96-server/Makefile
==============================================================================
--- head/databases/postgresql95-server/Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,7 +1,8 @@
 # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.5.2
+DISTVERSION?=	9.6rc1
+PORTREVISION=	0
 
 MAINTAINER?=	pgsql@FreeBSD.org
 
@@ -15,6 +16,11 @@ INSTALL_DIRS?=	src/common src/timezone s
 		src/bin/pg_test_fsync src/bin/pg_test_timing \
 		src/bin/pg_xlogdump src/bin/pg_upgrade
 
-ICU_PATCHFILE=	sorry-icu-patch-is-not-quite-ready-for-95-yet
+PG_USER?=	postgres
+PG_GROUP?=	postgres
+PG_UID?=	770
+
+ICU_PATCHFILE=	pg-96b4-icu-2016-08-10.diff.gz
+OPTIONS_DEFAULT+=ICU
 
 .include "${.CURDIR}/../postgresql92-server/Makefile"

Modified: head/databases/postgresql96-server/distinfo
==============================================================================
--- head/databases/postgresql95-server/distinfo	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/distinfo	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,2 +1,5 @@
-SHA256 (postgresql/postgresql-9.5.2.tar.bz2) = f8d132e464506b551ef498719f18cfe9d777709c7a1589dc360afc0b20e47c41
-SIZE (postgresql/postgresql-9.5.2.tar.bz2) = 18446616
+TIMESTAMP = 1472754782
+SHA256 (postgresql/postgresql-9.6rc1.tar.bz2) = 9e260252f04b7f6abe3877eb1cb8affa4ecc2abbadadf9bd874ad257e9a01a1d
+SIZE (postgresql/postgresql-9.6rc1.tar.bz2) = 19161063
+SHA256 (postgresql/pg-96b4-icu-2016-08-10.diff.gz) = ca9d57715d425dfcbc530f01c65c746000a1ee64838452b69a97730b39900317
+SIZE (postgresql/pg-96b4-icu-2016-08-10.diff.gz) = 5971

Modified: head/databases/postgresql96-server/files/502.pgsql.in
==============================================================================
--- head/databases/postgresql95-server/files/502.pgsql.in	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/files/502.pgsql.in	Mon Sep  5 11:15:29 2016	(r421360)
@@ -76,7 +76,7 @@ pgsql_backup() {
 	fi
 
 	# cleaning up old data
-	find ${backupdir} \( -name 'pgdump_*' -o -name 'pgglobals_*' \) \
+	find ${backupdir} \( -name 'pgdump_*' -o -name 'pgglobals_*' -o -name '*.dat.gz' -o -name 'toc.dat' \) \
 	    -a -mtime +${daily_pgsql_savedays} -delete
 	echo
 }

Modified: head/databases/postgresql96-server/files/dot.cshrc.in
==============================================================================
--- head/databases/postgresql95-server/files/dot.cshrc.in	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/files/dot.cshrc.in	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,7 +1,7 @@
 setenv PGLIB %%PREFIX%%/lib
 
 # note: PGDATA can be overridden by the -D startup option
-setenv PGDATA $HOME/data
+setenv PGDATA $HOME/data96
 
 #You might want to set some locale stuff here
 #setenv PGDATESTYLE ISO

Modified: head/databases/postgresql96-server/files/dot.profile.in
==============================================================================
--- head/databases/postgresql95-server/files/dot.profile.in	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/files/dot.profile.in	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,7 +1,7 @@
 PGLIB=%%PREFIX%%/lib
 
 # note: PGDATA can be overridden by the -D startup option
-PGDATA=${HOME}/data
+PGDATA=${HOME}/data96
 
 export PATH PGLIB PGDATA
 

Modified: head/databases/postgresql96-server/files/patch-src-backend-Makefile
==============================================================================
--- head/databases/postgresql95-server/files/patch-src-backend-Makefile	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/files/patch-src-backend-Makefile	Mon Sep  5 11:15:29 2016	(r421360)
@@ -4,7 +4,7 @@
  # Update the commonly used headers before building the subdirectories
  $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
  
-+symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
++symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h $(top_builddir)/src/include/storage/lwlocknames.h
 +
  
  # The postgres.o target is needed by the rule in Makefile.global that

Modified: head/databases/postgresql96-server/files/postgresql.in
==============================================================================
--- head/databases/postgresql95-server/files/postgresql.in	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/files/postgresql.in	Mon Sep  5 11:15:29 2016	(r421360)
@@ -10,7 +10,7 @@
 #
 #  postgresql_enable="YES"
 #  # optional
-#  postgresql_data="%%PREFIX%%/%%PG_USER%%/data"
+#  postgresql_data="/var/db/%%PG_USER%%/data96"
 #  postgresql_flags="-w -s -m fast"
 #  postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C"
 #  postgresql_class="default"
@@ -34,7 +34,7 @@ load_rc_config postgresql
 postgresql_enable=${postgresql_enable:-"NO"}
 postgresql_flags=${postgresql_flags:-"-w -s -m fast"}
 postgresql_user=${postgresql_user:-"%%PG_USER%%"}
-eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data"}
+eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data96"}
 postgresql_class=${postgresql_class:-"default"}
 postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"}
 

Modified: head/databases/postgresql96-server/pkg-install-server
==============================================================================
--- head/databases/postgresql95-server/pkg-install-server	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/pkg-install-server	Mon Sep  5 11:15:29 2016	(r421360)
@@ -13,11 +13,8 @@ cat <<EOF
   minor revision (e.g. 8.3.x -> 8.4), a dump
   and restore of all databases is
   required. This is *NOT* done by the port!
-
-  Press ctrl-C *now* if you need to pg_dump.
   ===========================================
 EOF
-	sleep 5
 }
 
 case $2 in

Modified: head/databases/postgresql96-server/pkg-plist-client
==============================================================================
--- head/databases/postgresql95-server/pkg-plist-client	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/pkg-plist-client	Mon Sep  5 11:15:29 2016	(r421360)
@@ -42,6 +42,8 @@ include/postgresql/internal/libpq/pqcomm
 include/postgresql/internal/port.h
 include/postgresql/internal/postgres_fe.h
 include/postgresql/internal/pqexpbuffer.h
+include/postgresql/server/access/amapi.h
+include/postgresql/server/access/amvalidate.h
 include/postgresql/server/access/attnum.h
 include/postgresql/server/access/brin.h
 include/postgresql/server/access/brin_internal.h
@@ -53,6 +55,7 @@ include/postgresql/server/access/brin_xl
 include/postgresql/server/access/clog.h
 include/postgresql/server/access/commit_ts.h
 include/postgresql/server/access/genam.h
+include/postgresql/server/access/generic_xlog.h
 include/postgresql/server/access/gin.h
 include/postgresql/server/access/gin_private.h
 include/postgresql/server/access/gist.h
@@ -129,6 +132,7 @@ include/postgresql/server/catalog/pg_cla
 include/postgresql/server/catalog/pg_collation.h
 include/postgresql/server/catalog/pg_collation_fn.h
 include/postgresql/server/catalog/pg_constraint.h
+include/postgresql/server/catalog/pg_constraint_fn.h
 include/postgresql/server/catalog/pg_control.h
 include/postgresql/server/catalog/pg_conversion.h
 include/postgresql/server/catalog/pg_conversion_fn.h
@@ -146,6 +150,7 @@ include/postgresql/server/catalog/pg_for
 include/postgresql/server/catalog/pg_index.h
 include/postgresql/server/catalog/pg_inherits.h
 include/postgresql/server/catalog/pg_inherits_fn.h
+include/postgresql/server/catalog/pg_init_privs.h
 include/postgresql/server/catalog/pg_language.h
 include/postgresql/server/catalog/pg_largeobject.h
 include/postgresql/server/catalog/pg_largeobject_metadata.h
@@ -201,6 +206,7 @@ include/postgresql/server/commands/polic
 include/postgresql/server/commands/portalcmds.h
 include/postgresql/server/commands/prepare.h
 include/postgresql/server/commands/proclang.h
+include/postgresql/server/commands/progress.h
 include/postgresql/server/commands/schemacmds.h
 include/postgresql/server/commands/seclabel.h
 include/postgresql/server/commands/sequence.h
@@ -212,7 +218,10 @@ include/postgresql/server/commands/user.
 include/postgresql/server/commands/vacuum.h
 include/postgresql/server/commands/variable.h
 include/postgresql/server/commands/view.h
+include/postgresql/server/common/config_info.h
+include/postgresql/server/common/controldata_utils.h
 include/postgresql/server/common/fe_memutils.h
+include/postgresql/server/common/keywords.h
 include/postgresql/server/common/pg_lzcompress.h
 include/postgresql/server/common/relpath.h
 include/postgresql/server/common/restricted_token.h
@@ -220,6 +229,7 @@ include/postgresql/server/common/string.
 include/postgresql/server/common/username.h
 include/postgresql/server/datatype/timestamp.h
 include/postgresql/server/dynloader.h
+include/postgresql/server/executor/execParallel.h
 include/postgresql/server/executor/execdebug.h
 include/postgresql/server/executor/execdesc.h
 include/postgresql/server/executor/executor.h
@@ -236,6 +246,7 @@ include/postgresql/server/executor/nodeC
 include/postgresql/server/executor/nodeCustom.h
 include/postgresql/server/executor/nodeForeignscan.h
 include/postgresql/server/executor/nodeFunctionscan.h
+include/postgresql/server/executor/nodeGather.h
 include/postgresql/server/executor/nodeGroup.h
 include/postgresql/server/executor/nodeHash.h
 include/postgresql/server/executor/nodeHashjoin.h
@@ -263,8 +274,15 @@ include/postgresql/server/executor/nodeW
 include/postgresql/server/executor/nodeWorktablescan.h
 include/postgresql/server/executor/spi.h
 include/postgresql/server/executor/spi_priv.h
+include/postgresql/server/executor/tqueue.h
 include/postgresql/server/executor/tstoreReceiver.h
 include/postgresql/server/executor/tuptable.h
+include/postgresql/server/fe_utils/mbprint.h
+include/postgresql/server/fe_utils/print.h
+include/postgresql/server/fe_utils/psqlscan.h
+include/postgresql/server/fe_utils/psqlscan_int.h
+include/postgresql/server/fe_utils/simple_list.h
+include/postgresql/server/fe_utils/string_utils.h
 include/postgresql/server/fmgr.h
 include/postgresql/server/foreign/fdwapi.h
 include/postgresql/server/foreign/foreign.h
@@ -295,6 +313,7 @@ include/postgresql/server/mb/pg_wchar.h
 include/postgresql/server/miscadmin.h
 include/postgresql/server/nodes/bitmapset.h
 include/postgresql/server/nodes/execnodes.h
+include/postgresql/server/nodes/extensible.h
 include/postgresql/server/nodes/lockoptions.h
 include/postgresql/server/nodes/makefuncs.h
 include/postgresql/server/nodes/memnodes.h
@@ -339,7 +358,6 @@ include/postgresql/server/optimizer/var.
 include/postgresql/server/parser/analyze.h
 include/postgresql/server/parser/gram.h
 include/postgresql/server/parser/gramparse.h
-include/postgresql/server/parser/keywords.h
 include/postgresql/server/parser/kwlist.h
 include/postgresql/server/parser/parse_agg.h
 include/postgresql/server/parser/parse_clause.h
@@ -390,6 +408,7 @@ include/postgresql/server/port/hpux.h
 include/postgresql/server/port/linux.h
 include/postgresql/server/port/netbsd.h
 include/postgresql/server/port/openbsd.h
+include/postgresql/server/port/pg_bswap.h
 include/postgresql/server/port/pg_crc32c.h
 include/postgresql/server/port/sco.h
 include/postgresql/server/port/solaris.h
@@ -433,6 +452,7 @@ include/postgresql/server/replication/ba
 include/postgresql/server/replication/decode.h
 include/postgresql/server/replication/logical.h
 include/postgresql/server/replication/logicalfuncs.h
+include/postgresql/server/replication/message.h
 include/postgresql/server/replication/origin.h
 include/postgresql/server/replication/output_plugin.h
 include/postgresql/server/replication/reorderbuffer.h
@@ -509,7 +529,9 @@ include/postgresql/server/storage/large_
 include/postgresql/server/storage/latch.h
 include/postgresql/server/storage/lmgr.h
 include/postgresql/server/storage/lock.h
+include/postgresql/server/storage/lockdefs.h
 include/postgresql/server/storage/lwlock.h
+include/postgresql/server/storage/lwlocknames.h
 include/postgresql/server/storage/off.h
 include/postgresql/server/storage/pg_sema.h
 include/postgresql/server/storage/pg_shmem.h
@@ -531,11 +553,11 @@ include/postgresql/server/storage/sinval
 include/postgresql/server/storage/smgr.h
 include/postgresql/server/storage/spin.h
 include/postgresql/server/storage/standby.h
+include/postgresql/server/storage/standbydefs.h
 include/postgresql/server/tcop/deparse_utility.h
 include/postgresql/server/tcop/dest.h
 include/postgresql/server/tcop/fastpath.h
 include/postgresql/server/tcop/pquery.h
-include/postgresql/server/tcop/tcopdebug.h
 include/postgresql/server/tcop/tcopprot.h
 include/postgresql/server/tcop/utility.h
 include/postgresql/server/tsearch/dicts/regis.h
@@ -573,6 +595,7 @@ include/postgresql/server/utils/guc.h
 include/postgresql/server/utils/guc_tables.h
 include/postgresql/server/utils/help_config.h
 include/postgresql/server/utils/hsearch.h
+include/postgresql/server/utils/index_selfuncs.h
 include/postgresql/server/utils/inet.h
 include/postgresql/server/utils/int8.h
 include/postgresql/server/utils/inval.h
@@ -796,6 +819,7 @@ man/man7/COMMENT.7.gz
 man/man7/COMMIT.7.gz
 man/man7/COMMIT_PREPARED.7.gz
 man/man7/COPY.7.gz
+man/man7/CREATE_ACCESS_METHOD.7.gz
 man/man7/CREATE_AGGREGATE.7.gz
 man/man7/CREATE_CAST.7.gz
 man/man7/CREATE_COLLATION.7.gz
@@ -838,6 +862,7 @@ man/man7/DECLARE.7.gz
 man/man7/DELETE.7.gz
 man/man7/DISCARD.7.gz
 man/man7/DO.7.gz
+man/man7/DROP_ACCESS_METHOD.7.gz
 man/man7/DROP_AGGREGATE.7.gz
 man/man7/DROP_CAST.7.gz
 man/man7/DROP_COLLATION.7.gz
@@ -917,95 +942,95 @@ man/man7/VACUUM.7.gz
 man/man7/VALUES.7.gz
 man/man7/WITH.7.gz
 %%PORTDOCS%%%%DOCSDIR%%/README-client
-%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/nb/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/ro/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-9.5.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.5.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.5.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.5.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/psql-9.5.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.6.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/psql-9.6.mo
 %%DATADIR%%/pg_service.conf.sample
 %%DATADIR%%/psqlrc.sample
+

Modified: head/databases/postgresql96-server/pkg-plist-contrib
==============================================================================
--- head/databases/postgresql95-server/pkg-plist-contrib	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/pkg-plist-contrib	Mon Sep  5 11:15:29 2016	(r421360)
@@ -6,6 +6,7 @@ lib/postgresql/adminpack.so
 lib/postgresql/auth_delay.so
 lib/postgresql/auto_explain.so
 lib/postgresql/autoinc.so
+lib/postgresql/bloom.so
 lib/postgresql/btree_gin.so
 lib/postgresql/btree_gist.so
 lib/postgresql/chkpass.so
@@ -30,6 +31,7 @@ lib/postgresql/pg_freespacemap.so
 lib/postgresql/pg_prewarm.so
 lib/postgresql/pg_stat_statements.so
 lib/postgresql/pg_trgm.so
+lib/postgresql/pg_visibility.so
 lib/postgresql/pgcrypto.so
 lib/postgresql/pgrowlocks.so
 lib/postgresql/pgstattuple.so
@@ -59,25 +61,33 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/autoinc--1.0.sql
 %%DATADIR%%/extension/autoinc--unpackaged--1.0.sql
 %%DATADIR%%/extension/autoinc.control
+%%DATADIR%%/extension/bloom--1.0.sql
+%%DATADIR%%/extension/bloom.control
 %%DATADIR%%/extension/btree_gin--1.0.sql
 %%DATADIR%%/extension/btree_gin--unpackaged--1.0.sql
 %%DATADIR%%/extension/btree_gin.control
 %%DATADIR%%/extension/btree_gist--1.0--1.1.sql
-%%DATADIR%%/extension/btree_gist--1.1.sql
+%%DATADIR%%/extension/btree_gist--1.1--1.2.sql
+%%DATADIR%%/extension/btree_gist--1.2.sql
 %%DATADIR%%/extension/btree_gist--unpackaged--1.0.sql
 %%DATADIR%%/extension/btree_gist.control
 %%DATADIR%%/extension/chkpass--1.0.sql
 %%DATADIR%%/extension/chkpass--unpackaged--1.0.sql
 %%DATADIR%%/extension/chkpass.control
 %%DATADIR%%/extension/citext--1.0--1.1.sql
-%%DATADIR%%/extension/citext--1.1.sql
+%%DATADIR%%/extension/citext--1.1--1.2.sql
+%%DATADIR%%/extension/citext--1.2--1.3.sql
+%%DATADIR%%/extension/citext--1.3.sql
 %%DATADIR%%/extension/citext--unpackaged--1.0.sql
 %%DATADIR%%/extension/citext.control
-%%DATADIR%%/extension/cube--1.0.sql
+%%DATADIR%%/extension/cube--1.0--1.1.sql
+%%DATADIR%%/extension/cube--1.1--1.2.sql
+%%DATADIR%%/extension/cube--1.2.sql
 %%DATADIR%%/extension/cube--unpackaged--1.0.sql
 %%DATADIR%%/extension/cube.control
 %%DATADIR%%/extension/dblink--1.0--1.1.sql
-%%DATADIR%%/extension/dblink--1.1.sql
+%%DATADIR%%/extension/dblink--1.1--1.2.sql
+%%DATADIR%%/extension/dblink--1.2.sql
 %%DATADIR%%/extension/dblink--unpackaged--1.0.sql
 %%DATADIR%%/extension/dblink.control
 %%DATADIR%%/extension/dict_int--1.0.sql
@@ -86,36 +96,45 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/dict_xsyn--1.0.sql
 %%DATADIR%%/extension/dict_xsyn--unpackaged--1.0.sql
 %%DATADIR%%/extension/dict_xsyn.control
-%%DATADIR%%/extension/earthdistance--1.0.sql
+%%DATADIR%%/extension/earthdistance--1.0--1.1.sql
+%%DATADIR%%/extension/earthdistance--1.1.sql
 %%DATADIR%%/extension/earthdistance--unpackaged--1.0.sql
 %%DATADIR%%/extension/earthdistance.control
 %%DATADIR%%/extension/file_fdw--1.0.sql
 %%DATADIR%%/extension/file_fdw.control
-%%DATADIR%%/extension/fuzzystrmatch--1.0.sql
+%%DATADIR%%/extension/fuzzystrmatch--1.0--1.1.sql
+%%DATADIR%%/extension/fuzzystrmatch--1.1.sql
 %%DATADIR%%/extension/fuzzystrmatch--unpackaged--1.0.sql
 %%DATADIR%%/extension/fuzzystrmatch.control
 %%DATADIR%%/extension/hstore--1.0--1.1.sql
 %%DATADIR%%/extension/hstore--1.1--1.2.sql
 %%DATADIR%%/extension/hstore--1.2--1.3.sql
-%%DATADIR%%/extension/hstore--1.3.sql
+%%DATADIR%%/extension/hstore--1.3--1.4.sql
+%%DATADIR%%/extension/hstore--1.4.sql
 %%DATADIR%%/extension/hstore--unpackaged--1.0.sql
 %%DATADIR%%/extension/hstore.control
 %%DATADIR%%/extension/insert_username--1.0.sql
 %%DATADIR%%/extension/insert_username--unpackaged--1.0.sql
 %%DATADIR%%/extension/insert_username.control
-%%DATADIR%%/extension/intagg--1.0.sql
+%%DATADIR%%/extension/intagg--1.0--1.1.sql
+%%DATADIR%%/extension/intagg--1.1.sql
 %%DATADIR%%/extension/intagg--unpackaged--1.0.sql
 %%DATADIR%%/extension/intagg.control
-%%DATADIR%%/extension/intarray--1.0.sql
+%%DATADIR%%/extension/intarray--1.0--1.1.sql
+%%DATADIR%%/extension/intarray--1.1--1.2.sql
+%%DATADIR%%/extension/intarray--1.2.sql
 %%DATADIR%%/extension/intarray--unpackaged--1.0.sql
 %%DATADIR%%/extension/intarray.control
-%%DATADIR%%/extension/isn--1.0.sql
+%%DATADIR%%/extension/isn--1.0--1.1.sql
+%%DATADIR%%/extension/isn--1.1.sql
 %%DATADIR%%/extension/isn--unpackaged--1.0.sql
 %%DATADIR%%/extension/isn.control
-%%DATADIR%%/extension/lo--1.0.sql
+%%DATADIR%%/extension/lo--1.0--1.1.sql
+%%DATADIR%%/extension/lo--1.1.sql
 %%DATADIR%%/extension/lo--unpackaged--1.0.sql
 %%DATADIR%%/extension/lo.control
-%%DATADIR%%/extension/ltree--1.0.sql
+%%DATADIR%%/extension/ltree--1.0--1.1.sql
+%%DATADIR%%/extension/ltree--1.1.sql
 %%DATADIR%%/extension/ltree--unpackaged--1.0.sql
 %%DATADIR%%/extension/ltree.control
 %%DATADIR%%/extension/moddatetime--1.0.sql
@@ -124,41 +143,55 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/pageinspect--1.0--1.1.sql
 %%DATADIR%%/extension/pageinspect--1.1--1.2.sql
 %%DATADIR%%/extension/pageinspect--1.2--1.3.sql
-%%DATADIR%%/extension/pageinspect--1.3.sql
+%%DATADIR%%/extension/pageinspect--1.3--1.4.sql
+%%DATADIR%%/extension/pageinspect--1.4--1.5.sql
+%%DATADIR%%/extension/pageinspect--1.5.sql
 %%DATADIR%%/extension/pageinspect--unpackaged--1.0.sql
 %%DATADIR%%/extension/pageinspect.control
 %%DATADIR%%/extension/pg_buffercache--1.0--1.1.sql
-%%DATADIR%%/extension/pg_buffercache--1.1.sql
+%%DATADIR%%/extension/pg_buffercache--1.1--1.2.sql
+%%DATADIR%%/extension/pg_buffercache--1.2.sql
 %%DATADIR%%/extension/pg_buffercache--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_buffercache.control
-%%DATADIR%%/extension/pg_freespacemap--1.0.sql
+%%DATADIR%%/extension/pg_freespacemap--1.0--1.1.sql
+%%DATADIR%%/extension/pg_freespacemap--1.1.sql
 %%DATADIR%%/extension/pg_freespacemap--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_freespacemap.control
-%%DATADIR%%/extension/pg_prewarm--1.0.sql
+%%DATADIR%%/extension/pg_prewarm--1.0--1.1.sql
+%%DATADIR%%/extension/pg_prewarm--1.1.sql
 %%DATADIR%%/extension/pg_prewarm.control
 %%DATADIR%%/extension/pg_stat_statements--1.0--1.1.sql
 %%DATADIR%%/extension/pg_stat_statements--1.1--1.2.sql
 %%DATADIR%%/extension/pg_stat_statements--1.2--1.3.sql
-%%DATADIR%%/extension/pg_stat_statements--1.3.sql
+%%DATADIR%%/extension/pg_stat_statements--1.3--1.4.sql
+%%DATADIR%%/extension/pg_stat_statements--1.4.sql
 %%DATADIR%%/extension/pg_stat_statements--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_stat_statements.control
 %%DATADIR%%/extension/pg_trgm--1.0--1.1.sql
-%%DATADIR%%/extension/pg_trgm--1.1.sql
+%%DATADIR%%/extension/pg_trgm--1.1--1.2.sql
+%%DATADIR%%/extension/pg_trgm--1.2--1.3.sql
+%%DATADIR%%/extension/pg_trgm--1.3.sql
 %%DATADIR%%/extension/pg_trgm--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_trgm.control
+%%DATADIR%%/extension/pg_visibility--1.0--1.1.sql
+%%DATADIR%%/extension/pg_visibility--1.1.sql
+%%DATADIR%%/extension/pg_visibility.control
 %%DATADIR%%/extension/pgcrypto--1.0--1.1.sql
 %%DATADIR%%/extension/pgcrypto--1.1--1.2.sql
-%%DATADIR%%/extension/pgcrypto--1.2.sql
+%%DATADIR%%/extension/pgcrypto--1.2--1.3.sql
+%%DATADIR%%/extension/pgcrypto--1.3.sql
 %%DATADIR%%/extension/pgcrypto--unpackaged--1.0.sql
 %%DATADIR%%/extension/pgcrypto.control
 %%DATADIR%%/extension/pgrowlocks--1.0--1.1.sql
-%%DATADIR%%/extension/pgrowlocks--1.1.sql
+%%DATADIR%%/extension/pgrowlocks--1.1--1.2.sql
+%%DATADIR%%/extension/pgrowlocks--1.2.sql
 %%DATADIR%%/extension/pgrowlocks--unpackaged--1.0.sql
 %%DATADIR%%/extension/pgrowlocks.control
 %%DATADIR%%/extension/pgstattuple--1.0--1.1.sql
 %%DATADIR%%/extension/pgstattuple--1.1--1.2.sql
 %%DATADIR%%/extension/pgstattuple--1.2--1.3.sql
-%%DATADIR%%/extension/pgstattuple--1.3.sql
+%%DATADIR%%/extension/pgstattuple--1.3--1.4.sql
+%%DATADIR%%/extension/pgstattuple--1.4.sql
 %%DATADIR%%/extension/pgstattuple--unpackaged--1.0.sql
 %%DATADIR%%/extension/pgstattuple.control
 %%DATADIR%%/extension/postgres_fdw--1.0.sql
@@ -166,10 +199,13 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/refint--1.0.sql
 %%DATADIR%%/extension/refint--unpackaged--1.0.sql
 %%DATADIR%%/extension/refint.control
-%%DATADIR%%/extension/seg--1.0.sql
+%%DATADIR%%/extension/seg--1.0--1.1.sql
+%%DATADIR%%/extension/seg--1.1.sql
 %%DATADIR%%/extension/seg--unpackaged--1.0.sql
 %%DATADIR%%/extension/seg.control
-%%DATADIR%%/extension/sslinfo--1.0.sql
+%%DATADIR%%/extension/sslinfo--1.0--1.1.sql
+%%DATADIR%%/extension/sslinfo--1.1--1.2.sql
+%%DATADIR%%/extension/sslinfo--1.2.sql
 %%DATADIR%%/extension/sslinfo--unpackaged--1.0.sql
 %%DATADIR%%/extension/sslinfo.control
 %%DATADIR%%/extension/tablefunc--1.0.sql
@@ -187,13 +223,16 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/tsm_system_rows.control
 %%DATADIR%%/extension/tsm_system_time--1.0.sql
 %%DATADIR%%/extension/tsm_system_time.control
-%%DATADIR%%/extension/unaccent--1.0.sql
+%%DATADIR%%/extension/unaccent--1.0--1.1.sql
+%%DATADIR%%/extension/unaccent--1.1.sql
 %%DATADIR%%/extension/unaccent--unpackaged--1.0.sql
 %%DATADIR%%/extension/unaccent.control
-%%DATADIR%%/extension/uuid-ossp--1.0.sql
+%%DATADIR%%/extension/uuid-ossp--1.0--1.1.sql
+%%DATADIR%%/extension/uuid-ossp--1.1.sql
 %%DATADIR%%/extension/uuid-ossp--unpackaged--1.0.sql
 %%DATADIR%%/extension/uuid-ossp.control
-%%DATADIR%%/extension/xml2--1.0.sql
+%%DATADIR%%/extension/xml2--1.0--1.1.sql
+%%DATADIR%%/extension/xml2--1.1.sql
 %%DATADIR%%/extension/xml2--unpackaged--1.0.sql
 %%DATADIR%%/extension/xml2.control
 %%DATADIR%%/tsearch_data/unaccent.rules

Modified: head/databases/postgresql96-server/pkg-plist-server
==============================================================================
--- head/databases/postgresql95-server/pkg-plist-server	Tue May 10 12:39:31 2016	(r414940)
+++ head/databases/postgresql96-server/pkg-plist-server	Mon Sep  5 11:15:29 2016	(r421360)
@@ -1,11 +1,11 @@
 bin/initdb
-bin/pg_basebackup
 bin/pg_controldata
 bin/pg_ctl
 bin/pg_receivexlog
 bin/pg_resetxlog
 bin/pg_recvlogical
 bin/pg_archivecleanup
+bin/pg_basebackup
 bin/pg_rewind
 bin/pg_test_fsync
 bin/pg_test_timing
@@ -60,94 +60,94 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
 %%DATADIR%%/extension/plpgsql.control
 %%DATADIR%%/postgres.shdescription
-%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/de/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/es/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/id/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/it/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pl%%PG_USER%%-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.5.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-9.5.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.5.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/de/LC_MESSAGES/postgres-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/es/LC_MESSAGES/postgres-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/postgres-9.6.mo
+%%NLS%%share/locale/id/LC_MESSAGES/postgres-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-9.6.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-9.6.mo

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609051115.u85BFTwn049800>