aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgirgen <girgen@FreeBSD.org>2012-05-16 06:14:55 +0800
committergirgen <girgen@FreeBSD.org>2012-05-16 06:14:55 +0800
commitf03e1f7ffaf9ea4476a86167853129d199e133c8 (patch)
tree804acc9191158c038a1ea5dde4003f89176d629a
parent7cf76578fc1b4b3db8581027bce9d1f3944b195d (diff)
downloadfreebsd-ports-gnome-f03e1f7ffaf9ea4476a86167853129d199e133c8.tar.gz
freebsd-ports-gnome-f03e1f7ffaf9ea4476a86167853129d199e133c8.tar.zst
freebsd-ports-gnome-f03e1f7ffaf9ea4476a86167853129d199e133c8.zip
The PostgreSQL Global Development Group announces the beta release of
PostgreSQL 9.2, which will include major increases in performance and both vertical and horizontal scalability. The PostgreSQL Project asks all users to download and begin testing 9.2 Beta as soon as possible. Major performance and scalability advances in this version include: * Index-only scans, allowing users to avoid inefficient scans of base tables * Enhanced read-only workload scaling to 64 cores and over 300,000 queries per second * Improvements to data write speeds, including group commit * Reductions in CPU power consumption * Cascading replication, supporting geographically distributed standby databases PostgreSQL 9.2 will also offer many new features for application developers, including: * JSON data support, enabling hybrid document-relational databases * Range types, supporting new types of calendar, time-series and * analytic applications * Multiple improvements to ALTER and other statements, easing runtime * database updates For a full listing of the features in version 9.2 Beta, please see the release notes: http://www.postgresql.org/docs/devel/static/release-9-2.html We depend on our community to help test the next version in order to guarantee that it is high-performance and bug-free. Please install PostgreSQL 9.2 Beta and try it with your workloads and applications as soon as you can, and give feedback to the PostgreSQL developers. More information on how to test and report issues: http://www.postgresql.org/developer/beta
-rw-r--r--Mk/bsd.database.mk3
-rw-r--r--databases/Makefile6
-rw-r--r--databases/postgresql92-client/Makefile25
-rw-r--r--databases/postgresql92-contrib/Makefile36
-rw-r--r--databases/postgresql92-contrib/pkg-descr23
-rw-r--r--databases/postgresql92-docs/Makefile10
-rw-r--r--databases/postgresql92-plperl/Makefile10
-rw-r--r--databases/postgresql92-pltcl/Makefile10
-rw-r--r--databases/postgresql92-server/Makefile15
-rw-r--r--databases/postgresql92-server/distinfo4
-rw-r--r--databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample8
-rw-r--r--databases/postgresql92-server/pkg-plist-client205
-rw-r--r--databases/postgresql92-server/pkg-plist-contrib10
-rw-r--r--databases/postgresql92-server/pkg-plist-server168
14 files changed, 322 insertions, 211 deletions
diff --git a/Mk/bsd.database.mk b/Mk/bsd.database.mk
index 2dcb5d4546ef..272f7aecd1d1 100644
--- a/Mk/bsd.database.mk
+++ b/Mk/bsd.database.mk
@@ -172,12 +172,13 @@ IGNORE= cannot install: unknown MySQL version: ${MYSQL_VER}
.endif # USE_MYSQL
.if defined(USE_PGSQL)
-VALID_PGSQL_VER= 83 84 90 91
+VALID_PGSQL_VER= 83 84 90 91 92
DEFAULT_PGSQL_VER?= 90
PGSQL83_LIBVER= 5
PGSQL84_LIBVER= 5
PGSQL90_LIBVER= 5
PGSQL91_LIBVER= 5
+PGSQL92_LIBVER= 5
# Setting/finding PostgreSQL version we want.
. if exists(${LOCALBASE}/bin/pg_config)
diff --git a/databases/Makefile b/databases/Makefile
index 6a50ba4c6c6f..4fa646205689 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -632,6 +632,12 @@
SUBDIR += postgresql91-plperl
SUBDIR += postgresql91-pltcl
SUBDIR += postgresql91-server
+ SUBDIR += postgresql92-client
+ SUBDIR += postgresql92-contrib
+ SUBDIR += postgresql92-docs
+ SUBDIR += postgresql92-plperl
+ SUBDIR += postgresql92-pltcl
+ SUBDIR += postgresql92-server
SUBDIR += postgresql_autodoc
SUBDIR += powerarchitect
SUBDIR += proftpd-mod_sql_mysql
diff --git a/databases/postgresql92-client/Makefile b/databases/postgresql92-client/Makefile
new file mode 100644
index 000000000000..1fcce6c10c7f
--- /dev/null
+++ b/databases/postgresql92-client/Makefile
@@ -0,0 +1,25 @@
+# New ports collection makefile for: PostgreSQL-client
+# Date created: 2009-07-08
+# Whom: Palle Girgensohn <girgen@FreeBSD.org>
+#
+# $FreeBSD$
+#
+# To depend on postgresql-client, set USE_PGSQL=yes.
+# See Mk/bsd.databases.mk for more info
+
+PORTNAME= postgresql
+PKGNAMESUFFIX= -client
+
+COMMENT= PostgreSQL database (client)
+
+MASTERDIR= ${.CURDIR}/../postgresql92-server
+
+BUILD_DIRS= config src/include src/interfaces src/port \
+ src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
+ doc src/makefiles
+INSTALL_DIRS= ${BUILD_DIRS}
+
+CLIENT_ONLY= yes
+USE_LDCONFIG= yes
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/postgresql92-contrib/Makefile b/databases/postgresql92-contrib/Makefile
new file mode 100644
index 000000000000..53804fc269b4
--- /dev/null
+++ b/databases/postgresql92-contrib/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: postgresql-contrib
+# Date created: June 10, 2003
+# Whom: Palle Girgensohn <girgen@pingpong.net>
+#
+# $FreeBSD$
+#
+
+PORTNAME= postgresql
+CATEGORIES= databases
+PKGNAMESUFFIX= -contrib
+
+MAINTAINER= pgsql@FreeBSD.org
+COMMENT= The contrib utilities from the PostgreSQL distribution
+
+LIB_DEPENDS= xslt.2:${PORTSDIR}/textproc/libxslt \
+ xml2.5:${PORTSDIR}/textproc/libxml2
+
+USE_PGSQL= yes
+DEFAULT_PGSQL_VER=92
+MASTERDIR= ${.CURDIR}/../postgresql${DEFAULT_PGSQL_VER}-server
+
+USE_BISON= build
+
+BUILD_DIRS= src/port contrib
+INSTALL_DIRS= contrib
+
+SLAVE_ONLY= yes
+CONFIGURE_ARGS+=--with-libxslt --with-libxml
+LDFLAGS+= ${PTHREAD_LIBS} -L${PREFIX}/lib
+
+OPTIONS= OSSP_UUID "Enable / disable ossp-uuid support" on
+
+post-install:
+ @- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${DOCSDIR}/extension/README
+
+.include "${MASTERDIR}/Makefile"
diff --git a/databases/postgresql92-contrib/pkg-descr b/databases/postgresql92-contrib/pkg-descr
new file mode 100644
index 000000000000..f7a01fd35e15
--- /dev/null
+++ b/databases/postgresql92-contrib/pkg-descr
@@ -0,0 +1,23 @@
+This is the port for all stuff that comes in the contrib subtree of
+the postgresql distribution. This subtree contains porting tools,
+analysis utilities, and plug-in features that are not part of the core
+PostgreSQL system, mainly because they address a limited audience or
+are too experimental to be part of the main source tree. This does
+not preclude their usefulness.
+
+Each subdirectory contains a README file with information about the
+module. Some directories supply new user-defined functions, operators,
+or types. After you have installed the files you need to register the
+new entities in the database system by running the commands in the
+supplied .sql file. For example,
+
+ $ psql -d dbname -f module.sql
+
+The .sql files are installed into /usr/local/share/postgresql/contrib
+
+For more information, please see
+/usr/local/share/doc/postgresql/contrib/README*
+
+This software is part of the standard PostgreSQL distribution.
+
+WWW: http://www.postgresql.org/
diff --git a/databases/postgresql92-docs/Makefile b/databases/postgresql92-docs/Makefile
new file mode 100644
index 000000000000..504dbdd75411
--- /dev/null
+++ b/databases/postgresql92-docs/Makefile
@@ -0,0 +1,10 @@
+# New ports collection makefile for: PostgreSQL docs
+# Date created: August 26, 2002
+# Whom: Palle Girgensohn <girgen@pingpong.net>
+#
+# $FreeBSD$
+#
+
+WANT_PGSQL_VER=92
+
+.include "${.CURDIR}/../postgresql91-docs/Makefile"
diff --git a/databases/postgresql92-plperl/Makefile b/databases/postgresql92-plperl/Makefile
new file mode 100644
index 000000000000..e9d805f84729
--- /dev/null
+++ b/databases/postgresql92-plperl/Makefile
@@ -0,0 +1,10 @@
+# New ports collection makefile for: PostgreSQL PL/Perl
+# Date created: January 14, 2002
+# Whom: Palle Girgensohn <girgen@partitur.se>
+#
+# $FreeBSD$
+#
+
+WANT_PGSQL_VER= 92
+
+.include "${.CURDIR}/../postgresql90-plperl/Makefile"
diff --git a/databases/postgresql92-pltcl/Makefile b/databases/postgresql92-pltcl/Makefile
new file mode 100644
index 000000000000..4025cc54334a
--- /dev/null
+++ b/databases/postgresql92-pltcl/Makefile
@@ -0,0 +1,10 @@
+# New ports collection makefile for: PostgreSQL PL/Perl
+# Date created: January 14, 2002
+# Whom: Palle Girgensohn <girgen@partitur.se>
+#
+# $FreeBSD$
+#
+
+WANT_PGSQL_VER= 92
+
+.include "${.CURDIR}/../postgresql90-pltcl/Makefile"
diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile
index 1926a6033ab0..ff6f70c71820 100644
--- a/databases/postgresql92-server/Makefile
+++ b/databases/postgresql92-server/Makefile
@@ -6,10 +6,10 @@
#
PORTNAME?= postgresql
-DISTVERSION?= 9.1.3
+DISTVERSION?= 9.2beta1
CATEGORIES?= databases
MASTER_SITES= ${MASTER_SITE_PGSQL}
-MASTER_SITE_SUBDIR= source/v${DISTVERSION}
+MASTER_SITE_SUBDIR= source/v9.2.0beta1
PKGNAMESUFFIX?= -server
MAINTAINER?= pgsql@FreeBSD.org
@@ -237,9 +237,12 @@ IGNORE= has OPTIONS for MIT's and Heimdal Kerberos, which are mutually exclusive
MAN1?= pg_basebackup.1
MAN1+= clusterdb.1 createdb.1 createlang.1 createuser.1 \
dropdb.1 droplang.1 dropuser.1 ecpg.1 initdb.1 \
+ oid2name.1 pg_archivecleanup.1 \
pg_config.1 pg_controldata.1 pg_ctl.1 \
- pg_dump.1 pg_dumpall.1 pg_resetxlog.1 pg_restore.1 \
- postgres.1 postmaster.1 psql.1 reindexdb.1 vacuumdb.1
+ pg_dump.1 pg_dumpall.1 pg_receivexlog.1 pg_resetxlog.1 pg_restore.1 \
+ pg_standby.1 pg_test_fsync.1 pg_test_timing.1 pg_upgrade.1 \
+ pgbench.1 \
+ postgres.1 postmaster.1 psql.1 reindexdb.1 vacuumdb.1 vacuumlo.1
MAN3+= SPI_connect.3 SPI_copytuple.3 SPI_cursor_close.3 SPI_cursor_fetch.3 \
SPI_cursor_find.3 SPI_cursor_move.3 SPI_cursor_open.3 \
@@ -250,7 +253,7 @@ MAN3+= SPI_connect.3 SPI_copytuple.3 SPI_cursor_close.3 SPI_cursor_fetch.3 \
SPI_freetuple.3 SPI_freetuptable.3 SPI_getargcount.3 \
SPI_getargtypeid.3 SPI_getbinval.3 SPI_getnspname.3 \
SPI_getrelname.3 SPI_gettype.3 SPI_gettypeid.3 \
- SPI_getvalue.3 SPI_is_cursor_plan.3 SPI_modifytuple.3 \
+ SPI_getvalue.3 SPI_is_cursor_plan.3 SPI_keepplan.3 SPI_modifytuple.3 \
SPI_palloc.3 SPI_pfree.3 SPI_pop.3 SPI_prepare.3 \
SPI_prepare_cursor.3 SPI_prepare_params.3 SPI_push.3 \
SPI_repalloc.3 SPI_returntuple.3 SPI_saveplan.3 \
@@ -351,7 +354,7 @@ PLIST_SUB+= PG_USER=${PG_USER}
. endif
post-patch:
-. if defined(WITH_ICU)
+. if defined(SERVER_ONLY) && defined(WITH_ICU)
@${REINPLACE_CMD} -E -e \
"s|^(m4_if.*)2.6[0-9](.*Autoconf version )2.6[0-9]|\1${AUTOCONF_VERSION}\2${AUTOCONF_VERSION}|g" \
${WRKSRC}/configure.in
diff --git a/databases/postgresql92-server/distinfo b/databases/postgresql92-server/distinfo
index 7ae55a279f6f..ee8265c555f0 100644
--- a/databases/postgresql92-server/distinfo
+++ b/databases/postgresql92-server/distinfo
@@ -1,4 +1,4 @@
-SHA256 (postgresql/postgresql-9.1.3.tar.bz2) = 7a79800a624031c1d9bc9cdce73cb40050100ac50a82050cbf7bbbd16ac4d5d5
-SIZE (postgresql/postgresql-9.1.3.tar.bz2) = 15582454
+SHA256 (postgresql/postgresql-9.2beta1.tar.bz2) = 05651ec88af03cc5cec08b091f2381fe8ebdaa87dbc6d193414ff2400084a838
+SIZE (postgresql/postgresql-9.2beta1.tar.bz2) = 15908141
SHA256 (postgresql/pg-910-icu-2011-09-22.diff.gz) = a88094ec22a8caeffa06d7c3a6b53d19035b171dad2acb9084da0a617a93e149
SIZE (postgresql/pg-910-icu-2011-09-22.diff.gz) = 4373
diff --git a/databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample b/databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample
index 3c1609fdbbc7..352b1579d68d 100644
--- a/databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample
+++ b/databases/postgresql92-server/files/patch-src:backend:utils:misc:postgresql.conf.sample
@@ -8,14 +8,6 @@
#log_destination = 'stderr' # Valid values are combinations of
# stderr, csvlog, syslog, and eventlog,
# depending on platform. csvlog
-@@ -290,6 +291,7 @@
- #syslog_facility = 'LOCAL0'
- #syslog_ident = 'postgres'
-
-+silent_mode = on
- #silent_mode = off # Run server silently.
- # DO NOT USE without syslog or
- # logging_collector
@@ -394,6 +396,9 @@
#track_counts = on
#track_functions = none # none, pl, all
diff --git a/databases/postgresql92-server/pkg-plist-client b/databases/postgresql92-server/pkg-plist-client
index 4b3c75488821..488175402c50 100644
--- a/databases/postgresql92-server/pkg-plist-client
+++ b/databases/postgresql92-server/pkg-plist-client
@@ -38,6 +38,8 @@ include/postgresql/server/access/rmgr.h
include/postgresql/server/access/sdir.h
include/postgresql/server/access/skey.h
include/postgresql/server/access/slru.h
+include/postgresql/server/access/spgist.h
+include/postgresql/server/access/spgist_private.h
include/postgresql/server/access/subtrans.h
include/postgresql/server/access/sysattr.h
include/postgresql/server/access/transam.h
@@ -105,10 +107,12 @@ include/postgresql/server/catalog/pg_opfamily.h
include/postgresql/server/catalog/pg_pltemplate.h
include/postgresql/server/catalog/pg_proc.h
include/postgresql/server/catalog/pg_proc_fn.h
+include/postgresql/server/catalog/pg_range.h
include/postgresql/server/catalog/pg_rewrite.h
include/postgresql/server/catalog/pg_seclabel.h
include/postgresql/server/catalog/pg_shdepend.h
include/postgresql/server/catalog/pg_shdescription.h
+include/postgresql/server/catalog/pg_shseclabel.h
include/postgresql/server/catalog/pg_statistic.h
include/postgresql/server/catalog/pg_tablespace.h
include/postgresql/server/catalog/pg_trigger.h
@@ -129,6 +133,7 @@ include/postgresql/server/commands/collationcmds.h
include/postgresql/server/commands/comment.h
include/postgresql/server/commands/conversioncmds.h
include/postgresql/server/commands/copy.h
+include/postgresql/server/commands/createas.h
include/postgresql/server/commands/dbcommands.h
include/postgresql/server/commands/defrem.h
include/postgresql/server/commands/discard.h
@@ -149,6 +154,7 @@ include/postgresql/server/commands/user.h
include/postgresql/server/commands/vacuum.h
include/postgresql/server/commands/variable.h
include/postgresql/server/commands/view.h
+include/postgresql/server/datatype/timestamp.h
include/postgresql/server/dynloader.h
include/postgresql/server/executor/execdebug.h
include/postgresql/server/executor/execdesc.h
@@ -168,6 +174,7 @@ include/postgresql/server/executor/nodeFunctionscan.h
include/postgresql/server/executor/nodeGroup.h
include/postgresql/server/executor/nodeHash.h
include/postgresql/server/executor/nodeHashjoin.h
+include/postgresql/server/executor/nodeIndexonlyscan.h
include/postgresql/server/executor/nodeIndexscan.h
include/postgresql/server/executor/nodeLimit.h
include/postgresql/server/executor/nodeLockRows.h
@@ -218,7 +225,6 @@ include/postgresql/server/nodes/bitmapset.h
include/postgresql/server/nodes/execnodes.h
include/postgresql/server/nodes/makefuncs.h
include/postgresql/server/nodes/memnodes.h
-include/postgresql/server/nodes/replnodes.h
include/postgresql/server/nodes/nodeFuncs.h
include/postgresql/server/nodes/nodes.h
include/postgresql/server/nodes/params.h
@@ -229,6 +235,7 @@ include/postgresql/server/nodes/primnodes.h
include/postgresql/server/nodes/print.h
include/postgresql/server/nodes/readfuncs.h
include/postgresql/server/nodes/relation.h
+include/postgresql/server/nodes/replnodes.h
include/postgresql/server/nodes/tidbitmap.h
include/postgresql/server/nodes/value.h
include/postgresql/server/optimizer/clauses.h
@@ -286,24 +293,17 @@ include/postgresql/server/pgstat.h
include/postgresql/server/pgtime.h
include/postgresql/server/port.h
include/postgresql/server/port/aix.h
-include/postgresql/server/port/bsdi.h
include/postgresql/server/port/cygwin.h
include/postgresql/server/port/darwin.h
-include/postgresql/server/port/dgux.h
include/postgresql/server/port/freebsd.h
include/postgresql/server/port/hpux.h
include/postgresql/server/port/irix.h
include/postgresql/server/port/linux.h
include/postgresql/server/port/netbsd.h
-include/postgresql/server/port/nextstep.h
include/postgresql/server/port/openbsd.h
include/postgresql/server/port/osf.h
include/postgresql/server/port/sco.h
include/postgresql/server/port/solaris.h
-include/postgresql/server/port/sunos4.h
-include/postgresql/server/port/svr4.h
-include/postgresql/server/port/ultrix4.h
-include/postgresql/server/port/univel.h
include/postgresql/server/port/unixware.h
include/postgresql/server/port/win32.h
include/postgresql/server/port/win32/arpa/inet.h
@@ -329,6 +329,7 @@ include/postgresql/server/postmaster/bgwriter.h
include/postgresql/server/postmaster/fork_process.h
include/postgresql/server/postmaster/pgarch.h
include/postgresql/server/postmaster/postmaster.h
+include/postgresql/server/postmaster/startup.h
include/postgresql/server/postmaster/syslogger.h
include/postgresql/server/postmaster/walwriter.h
include/postgresql/server/regex/regcustom.h
@@ -340,6 +341,7 @@ include/postgresql/server/replication/syncrep.h
include/postgresql/server/replication/walprotocol.h
include/postgresql/server/replication/walreceiver.h
include/postgresql/server/replication/walsender.h
+include/postgresql/server/replication/walsender_private.h
include/postgresql/server/rewrite/prs2lock.h
include/postgresql/server/rewrite/rewriteDefine.h
include/postgresql/server/rewrite/rewriteHandler.h
@@ -382,6 +384,7 @@ include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h
include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h
include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h
include/postgresql/server/storage/backendid.h
+include/postgresql/server/storage/barrier.h
include/postgresql/server/storage/block.h
include/postgresql/server/storage/buf.h
include/postgresql/server/storage/buf_internals.h
@@ -461,6 +464,7 @@ include/postgresql/server/utils/hsearch.h
include/postgresql/server/utils/inet.h
include/postgresql/server/utils/int8.h
include/postgresql/server/utils/inval.h
+include/postgresql/server/utils/json.h
include/postgresql/server/utils/logtape.h
include/postgresql/server/utils/lsyscache.h
include/postgresql/server/utils/memutils.h
@@ -468,6 +472,7 @@ include/postgresql/server/utils/nabstime.h
include/postgresql/server/utils/numeric.h
include/postgresql/server/utils/palloc.h
include/postgresql/server/utils/pg_crc.h
+include/postgresql/server/utils/pg_crc_tables.h
include/postgresql/server/utils/pg_locale.h
include/postgresql/server/utils/pg_lzcompress.h
include/postgresql/server/utils/pg_rusage.h
@@ -475,14 +480,17 @@ include/postgresql/server/utils/plancache.h
include/postgresql/server/utils/portal.h
include/postgresql/server/utils/probes.h
include/postgresql/server/utils/ps_status.h
+include/postgresql/server/utils/rangetypes.h
include/postgresql/server/utils/rbtree.h
include/postgresql/server/utils/rel.h
include/postgresql/server/utils/relcache.h
include/postgresql/server/utils/relmapper.h
+include/postgresql/server/utils/reltrigger.h
include/postgresql/server/utils/resowner.h
include/postgresql/server/utils/selfuncs.h
include/postgresql/server/utils/snapmgr.h
include/postgresql/server/utils/snapshot.h
+include/postgresql/server/utils/sortsupport.h
include/postgresql/server/utils/spccache.h
include/postgresql/server/utils/syscache.h
include/postgresql/server/utils/timestamp.h
@@ -525,6 +533,7 @@ include/sqlda.h
@dirrm include/postgresql/server/lib
@dirrm include/postgresql/server/foreign
@dirrm include/postgresql/server/executor
+@dirrm include/postgresql/server/datatype
@dirrm include/postgresql/server/commands
@dirrm include/postgresql/server/catalog
@dirrm include/postgresql/server/bootstrap
@@ -591,100 +600,86 @@ lib/postgresql/pgxs/src/nls-global.mk
share/postgresql/pg_service.conf.sample
share/postgresql/psqlrc.sample
@dirrmtry share/postgresql
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/nb/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/psql-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_dump-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pgscripts-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/psql-9.1.mo
+%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/cs/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/cs/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/nb/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/psql-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/ecpg-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/libpq5-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_config-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_dump-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pgscripts-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/psql-9.2.mo
+
diff --git a/databases/postgresql92-server/pkg-plist-contrib b/databases/postgresql92-server/pkg-plist-contrib
index 79ffa385162c..9d1186bf7ef3 100644
--- a/databases/postgresql92-server/pkg-plist-contrib
+++ b/databases/postgresql92-server/pkg-plist-contrib
@@ -1,6 +1,7 @@
bin/oid2name
bin/pg_archivecleanup
bin/pg_standby
+bin/pg_test_timing
bin/pg_upgrade
bin/pgbench
bin/vacuumlo
@@ -39,6 +40,7 @@ lib/postgresql/refint.so
lib/postgresql/seg.so
lib/postgresql/sslinfo.so
lib/postgresql/tablefunc.so
+lib/postgresql/tcn.so
lib/postgresql/test_parser.so
lib/postgresql/timetravel.so
lib/postgresql/tsearch2.so
@@ -92,7 +94,8 @@ share/postgresql/extension/file_fdw.control
share/postgresql/extension/fuzzystrmatch--1.0.sql
share/postgresql/extension/fuzzystrmatch--unpackaged--1.0.sql
share/postgresql/extension/fuzzystrmatch.control
-share/postgresql/extension/hstore--1.0.sql
+share/postgresql/extension/hstore--1.0--1.1.sql
+share/postgresql/extension/hstore--1.1.sql
share/postgresql/extension/hstore--unpackaged--1.0.sql
share/postgresql/extension/hstore.control
share/postgresql/extension/insert_username--1.0.sql
@@ -125,7 +128,8 @@ share/postgresql/extension/pg_buffercache.control
share/postgresql/extension/pg_freespacemap--1.0.sql
share/postgresql/extension/pg_freespacemap--unpackaged--1.0.sql
share/postgresql/extension/pg_freespacemap.control
-share/postgresql/extension/pg_stat_statements--1.0.sql
+share/postgresql/extension/pg_stat_statements--1.0--1.1.sql
+share/postgresql/extension/pg_stat_statements--1.1.sql
share/postgresql/extension/pg_stat_statements--unpackaged--1.0.sql
share/postgresql/extension/pg_stat_statements.control
share/postgresql/extension/pg_trgm--1.0.sql
@@ -152,6 +156,8 @@ share/postgresql/extension/sslinfo.control
share/postgresql/extension/tablefunc--1.0.sql
share/postgresql/extension/tablefunc--unpackaged--1.0.sql
share/postgresql/extension/tablefunc.control
+share/postgresql/extension/tcn--1.0.sql
+share/postgresql/extension/tcn.control
share/postgresql/extension/test_parser--1.0.sql
share/postgresql/extension/test_parser--unpackaged--1.0.sql
share/postgresql/extension/test_parser.control
diff --git a/databases/postgresql92-server/pkg-plist-server b/databases/postgresql92-server/pkg-plist-server
index c0ac7cae90af..178f26ec4255 100644
--- a/databases/postgresql92-server/pkg-plist-server
+++ b/databases/postgresql92-server/pkg-plist-server
@@ -2,10 +2,12 @@ bin/initdb
bin/pg_basebackup
bin/pg_controldata
bin/pg_ctl
+bin/pg_receivexlog
bin/pg_resetxlog
bin/postmaster
bin/postgres
etc/periodic/daily/502.pgsql
+include/postgresql/server/plpgsql.h
lib/postgresql/ascii_and_mic.so
lib/postgresql/cyrillic_and_mic.so
lib/postgresql/dict_snowball.so
@@ -51,93 +53,85 @@ share/postgresql/extension/plpgsql--1.0.sql
share/postgresql/extension/plpgsql--unpackaged--1.0.sql
share/postgresql/extension/plpgsql.control
@dirrmtry share/postgresql/extension
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/cs/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/de/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/es/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/fr/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/ja/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/ko/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/pl/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/ro/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/ru/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/tr/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/initdb-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_controldata-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_ctl-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_resetxlog-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.1.mo
-%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/postgres-9.1.mo
+%%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_basebackup-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/de/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_basebackup-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/es/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/fr/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/ja/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/ko/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/pl/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/ro/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/tr/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/initdb-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_controldata-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_ctl-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_resetxlog-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.2.mo
+%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/postgres-9.2.mo
share/postgresql/postgres.shdescription
share/postgresql/snowball_create.sql
%%TZDATA%%share/postgresql/timezone/Africa/Abidjan