1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00

Add PostgreSQL-9.6 RC1

Please read the entry from 20160905 in UPDATING:

daemon user has changed to `postgres'
ICU is default on
This commit is contained in:
Palle Girgensohn 2016-09-05 11:15:29 +00:00
parent f69161cef9
commit 96150e27d7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=421360
40 changed files with 2775 additions and 4 deletions

2
GIDs
View File

@ -711,7 +711,7 @@ bopm:*:717:
# free: 767
# free: 768
# free: 769
# free: 770
postgres:*:770:
# free: 771
# free: 772
# free: 773

View File

@ -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

2
UIDs
View File

@ -716,7 +716,7 @@ _dnscrypt-wrapper:*:718:65534::0:0:dnscrypt-wrapper user:/var/empty:/usr/sbin/no
# 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

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -0,0 +1,20 @@
# Created by: Palle Girgensohn <girgen@FreeBSD.org>
# $FreeBSD$
PORTNAME= postgresql
COMMENT= PostgreSQL database (client)
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 \
src/bin/pgbench doc src/makefiles
INSTALL_DIRS= ${BUILD_DIRS}
CLIENT_ONLY= yes
COMPONENT= -client
USE_LDCONFIG= yes
USES= pkgconfig
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,32 @@
# Created by: Palle Girgensohn <girgen@pingpong.net>
# $FreeBSD$
PORTNAME= postgresql
PORTREVISION= 0
CATEGORIES= databases
MAINTAINER= pgsql@FreeBSD.org
COMMENT= The contrib utilities from the PostgreSQL distribution
LIB_DEPENDS= libxslt.so:textproc/libxslt \
libxml2.so:textproc/libxml2
MASTERDIR= ${.CURDIR}/../postgresql96-server
USES= bison pgsql:9.6
BUILD_DIRS= src/port src/include src/common contrib
INSTALL_DIRS= contrib
SLAVE_ONLY= yes
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
.include "${MASTERDIR}/Makefile"

View File

@ -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/

View File

@ -0,0 +1,6 @@
# Created by: Palle Girgensohn <girgen@pingpong.net>
# $FreeBSD$
WANT_PGSQL_VER=9.6
.include "${.CURDIR}/../postgresql91-docs/Makefile"

View File

@ -0,0 +1,10 @@
# $FreeBSD$
PKGNAMESUFFIX= -postgresql96
CONFLICTS= pgtcl-[0-9]* pgtcl-postgresql9[01234]-[0-9]*
PGTCL_SLAVE= 9.6
MASTERDIR= ${.CURDIR}/../pgtcl
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,6 @@
# Created by: Palle Girgensohn <girgen@partitur.se>
# $FreeBSD$
WANT_PGSQL_VER= 9.6
.include "${.CURDIR}/../postgresql95-plperl/Makefile"

View File

@ -0,0 +1,5 @@
# $FreeBSD$
WANT_PGSQL_VER= 9.6
.include "${.CURDIR}/../postgresql95-plpython/Makefile"

View File

@ -0,0 +1,6 @@
# Created by: Palle Girgensohn <girgen@partitur.se>
# $FreeBSD$
WANT_PGSQL_VER= 9.6
.include "${.CURDIR}/../postgresql91-pltcl/Makefile"

View File

@ -0,0 +1,26 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$
DISTVERSION?= 9.6rc1
PORTREVISION= 0
MAINTAINER?= pgsql@FreeBSD.org
INSTALL_DIRS?= src/common src/timezone src/backend \
src/backend/utils/mb/conversion_procs \
src/backend/snowball src/backend/replication/libpqwalreceiver \
src/bin/initdb src/bin/pg_ctl \
src/bin/pg_controldata src/bin/pg_resetxlog src/pl \
src/bin/pg_basebackup src/bin/pg_archivecleanup \
src/bin/pg_rewind \
src/bin/pg_test_fsync src/bin/pg_test_timing \
src/bin/pg_xlogdump src/bin/pg_upgrade
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"

View File

@ -0,0 +1,5 @@
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

View File

@ -0,0 +1,116 @@
#!/bin/sh
#
# $FreeBSD$
#
# Maintenance shell script to vacuum and backup database
# Put this in /usr/local/etc/periodic/daily, and it will be run
# every night
#
# Written by Palle Girgensohn <girgen@pingpong.net>
#
# In public domain, do what you like with it,
# and use it at your own risk... :)
#
# Define these variables in either /etc/periodic.conf or
# /etc/periodic.conf.local to override the default values.
#
# daily_pgsql_backup_enable="YES" # do backup of all databases
# daily_pgsql_backup_enable="foo bar db1 db2" # only do backup of a limited selection of databases
# daily_pgsql_vacuum_enable="YES" # do vacuum
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/defaults/periodic.conf ]
then
. /etc/defaults/periodic.conf
source_periodic_confs
fi
: ${daily_pgsql_user:="%%PG_USER%%"}
: ${daily_pgsql_port:=5432}
: ${daily_pgsql_vacuum_args:="-U ${daily_pgsql_user} -p ${daily_pgsql_port} -qaz"}
: ${daily_pgsql_pgdump_args:="-U ${daily_pgsql_user} -p ${daily_pgsql_port} -bF c"}
: ${daily_pgsql_pgdumpall_globals_args:="-U ${daily_pgsql_user} -p ${daily_pgsql_port}"}
# backupdir is relative to ~pgsql home directory unless it begins with a slash:
: ${daily_pgsql_backupdir:="~${daily_pgsql_user}/backups"}
: ${daily_pgsql_savedays:="7"}
# allow '~´ in dir name
eval backupdir=${daily_pgsql_backupdir}
rc=0
pgsql_backup() {
# daily_pgsql_backupdir must be writeable by user %%PG_USER%%
# ~%%PG_USER%% is just that under normal circumstances,
# but this might not be where you want the backups...
if [ ! -d ${backupdir} ] ; then
echo Creating ${backupdir}
mkdir -m 700 ${backupdir}; chown ${daily_pgsql_user} ${backupdir}
fi
echo
echo "PostgreSQL backups"
# Protect the data
umask 077
rc=$?
now=`date "+%Y-%m-%dT%H:%M:%S"`
file=${daily_pgsql_backupdir}/pgglobals_${now}
su -l ${daily_pgsql_user} -c \
"umask 077; pg_dumpall -g ${daily_pgsql_pgdumpall_globals_args} | gzip -9 > ${file}.gz"
db=$1
while shift; do
echo -n " $db"
file=${backupdir}/pgdump_${db}_${now}
su -l ${daily_pgsql_user} -c "umask 077; pg_dump ${daily_pgsql_pgdump_args} -f ${file} ${db}"
[ $? -gt 0 ] && rc=3
db=$1
done
if [ $rc -gt 0 ]; then
echo
echo "Errors were reported during backup."
fi
# cleaning up old data
find ${backupdir} \( -name 'pgdump_*' -o -name 'pgglobals_*' -o -name '*.dat.gz' -o -name 'toc.dat' \) \
-a -mtime +${daily_pgsql_savedays} -delete
echo
}
case "$daily_pgsql_backup_enable" in
[Yy][Ee][Ss])
dbnames=`su -l ${daily_pgsql_user} -c "umask 077; psql -U ${daily_pgsql_user} -p ${daily_pgsql_port} -q -t -A -d template1 -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"`
pgsql_backup $dbnames
;;
[Nn][Oo])
;;
"")
;;
*)
pgsql_backup $daily_pgsql_backup_enable
;;
esac
case "$daily_pgsql_vacuum_enable" in
[Yy][Ee][Ss])
echo
echo "PostgreSQL vacuum"
su -l ${daily_pgsql_user} -c "vacuumdb ${daily_pgsql_vacuum_args}"
if [ $? -gt 0 ]
then
echo
echo "Errors were reported during vacuum."
rc=3
fi
;;
esac
exit $rc

View File

@ -0,0 +1,11 @@
setenv PGLIB %%PREFIX%%/lib
# note: PGDATA can be overridden by the -D startup option
setenv PGDATA $HOME/data96
#You might want to set some locale stuff here
#setenv PGDATESTYLE ISO
#setenv LC_ALL sv_SE.ISO_8859-1
# if you want to make regression tests use this TZ
#setenv TZ PST8PDT

View File

@ -0,0 +1,22 @@
PGLIB=%%PREFIX%%/lib
# note: PGDATA can be overridden by the -D startup option
PGDATA=${HOME}/data96
export PATH PGLIB PGDATA
# if you use the periodic script from share/postgresql/502.pgsql, you
# can set these
#PGDUMP_ARGS="-b -F c"
#PGBACKUPDIR=${HOME}/backups
#PGBACKUP_SAVE_DAYS=7
#export PGBACKUPDIR PGDUMP_ARGS PGBACKUP_SAVE_DAYS
#You might want to set some locale stuff here
#PGDATESTYLE=ISO
#LC_ALL=sv_SE.ISO_8859-1
#export PGDATESTYLE LC_ALL
# if you want to make regression tests use this TZ
#TZ=PST8PDT
#export TZ

View File

@ -0,0 +1,9 @@
--- doc/Makefile.orig 2015-10-08 21:45:57.360084007 +0200
+++ doc/Makefile 2015-10-08 21:46:04.353084097 +0200
@@ -12,5 +12,5 @@
top_builddir = ..
include $(top_builddir)/src/Makefile.global
-all distprep html man install installdirs uninstall clean distclean maintainer-clean:
+all distprep man install installdirs uninstall clean distclean maintainer-clean:
$(MAKE) -C src $@

View File

@ -0,0 +1,46 @@
--- doc/src/sgml/Makefile.orig 2015-10-05 21:09:44.000000000 +0200
+++ doc/src/sgml/Makefile 2015-10-09 01:02:37.164797000 +0200
@@ -15,7 +15,7 @@
# Make "html" the default target, since that is what most people tend
# to want to use.
-html:
+man:
NO_TEMP_INSTALL=yes
@@ -24,7 +24,7 @@
include $(top_builddir)/src/Makefile.global
-all: html man
+all: man
distprep: html distprep-man
@@ -81,8 +81,6 @@
## Man pages
##
-man distprep-man: man-stamp
-
man-stamp: stylesheet-man.xsl postgres.xml
$(XMLLINT) --noout --valid postgres.xml
$(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROC_MAN_FLAGS) $^
@@ -326,14 +324,14 @@
## Install
##
-install: install-html
+install: install-man
ifneq ($(PORTNAME), sco)
install: install-man
endif
installdirs:
- $(MKDIR_P) '$(DESTDIR)$(htmldir)'/html $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
+ $(MKDIR_P) $(addprefix '$(DESTDIR)$(mandir)'/man, 1 3 $(sqlmansectnum))
# If the install used a man directory shared with other applications, this will remove all files.
uninstall:

View File

@ -0,0 +1,11 @@
--- src/Makefile.shlib.bak 2013-05-06 22:57:06.000000000 +0200
+++ src/Makefile.shlib 2013-05-12 23:33:16.000000000 +0200
@@ -87,7 +87,7 @@
# Testing the soname variable is a reliable way to determine whether a
# linkable library is being built.
soname = $(shlib_major)
-pkgconfigdir = $(libdir)/pkgconfig
+pkgconfigdir = $(prefix)/libdata/pkgconfig
else
# Naming convention for dynamically loadable modules
shlib = $(NAME)$(DLSUFFIX)

View File

@ -0,0 +1,11 @@
--- src/backend/Makefile.orig 2009-07-07 15:58:33.000000000 +0200
+++ src/backend/Makefile 2009-07-07 15:58:57.000000000 +0200
@@ -107,6 +107,8 @@
# 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 $(top_builddir)/src/include/storage/lwlocknames.h
+
# The postgres.o target is needed by the rule in Makefile.global that
# creates the exports file when MAKE_EXPORTS = true.

View File

@ -0,0 +1,21 @@
--- src/backend/utils/misc/postgresql.conf.sample.orig 2015-10-05 21:09:44.000000000 +0200
+++ src/backend/utils/misc/postgresql.conf.sample 2015-10-08 21:51:37.862060431 +0200
@@ -318,6 +318,7 @@
# - Where to Log -
+log_destination = 'syslog'
#log_destination = 'stderr' # Valid values are combinations of
# stderr, csvlog, syslog, and eventlog,
# depending on platform. csvlog
@@ -449,7 +450,9 @@
#cluster_name = '' # added to process titles if nonempty
# (change requires restart)
-#update_process_title = on
+
+# On FreeBSD, this is a performance hog, so keep it off if you need speed
+update_process_title = off
#------------------------------------------------------------------------------

View File

@ -0,0 +1,32 @@
The PostgreSQL port has a collection of "side orders":
postgresql-docs
For all of the html documentation
p5-Pg
A perl5 API for client access to PostgreSQL databases.
postgresql-tcltk
If you want tcl/tk client support.
postgresql-jdbc
For Java JDBC support.
postgresql-odbc
For client access from unix applications using ODBC as access
method. Not needed to access unix PostgreSQL servers from Win32
using ODBC. See below.
ruby-postgres, py-PyGreSQL
For client access to PostgreSQL databases using the ruby & python
languages.
postgresql-plperl, postgresql-pltcl & postgresql-plruby
For using perl5, tcl & ruby as procedural languages.
postgresql-contrib
Lots of contributed utilities, postgresql functions and
datatypes. There you find pg_standby, pgcrypto and many other cool
things.
etc...

View File

@ -0,0 +1,3 @@
The PostgreSQL contrib utilities have been installed. Please see
%%PREFIX%%/share/doc/postgresql/contrib/README
for more information.

View File

@ -0,0 +1,3 @@
PL/Perl has been installed. Check the createlang(l) manpage for more
info. You can install PL/Perl as trusted or untrusted, by using either
"createlang plperl" or "createlang plperlu".

View File

@ -0,0 +1,3 @@
PL/Python has been installed. Check the createlang(l) manpage for more
info. You can install PL/Python by using "createlang plpythonu" (it
exists as an untrusted language only).

View File

@ -0,0 +1,3 @@
PL/Tcl has been installed. Check the createlang(l) manpage for more
info. You can install pltcl as trusted or untrusted, by using either
"createlang pltcl" or "createlang pltclu".

View File

@ -0,0 +1,57 @@
For procedural languages and postgresql functions, please note that
you might have to update them when updating the server.
If you have many tables and many clients running, consider raising
kern.maxfiles using sysctl(8), or reconfigure your kernel
appropriately.
The port is set up to use autovacuum for new databases, but you might
also want to vacuum and perhaps backup your database regularly. There
is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that
you may find useful. You can use it to backup and perfom vacuum on all
databases nightly. Per default, it perfoms `vacuum analyze'. See the
script for instructions. For autovacuum settings, please review
~pgsql/data/postgresql.conf.
If you plan to access your PostgreSQL server using ODBC, please
consider running the SQL script %%PREFIX%%/share/postgresql/odbc.sql
to get the functions required for ODBC compliance.
Please note that if you use the rc script,
%%PREFIX%%/etc/rc.d/postgresql, to initialize the database, unicode
(UTF-8) will be used to store character data by default. Set
postgresql_initdb_flags or use login.conf settings described below to
alter this behaviour. See the start rc script for more info.
To set limits, environment stuff like locale and collation and other
things, you can set up a class in /etc/login.conf before initializing
the database. Add something similar to this to /etc/login.conf:
---
postgres:\
:lang=en_US.UTF-8:\
:setenv=LC_COLLATE=C:\
:tc=default:
---
and run `cap_mkdb /etc/login.conf'.
Then add 'postgresql_class="postgres"' to /etc/rc.conf.
======================================================================
To initialize the database, run
%%PREFIX%%/etc/rc.d/postgresql initdb
You can then start PostgreSQL by running:
%%PREFIX%%/etc/rc.d/postgresql start
For postmaster settings, see ~pgsql/data/postgresql.conf
NB. FreeBSD's PostgreSQL port logs to syslog by default
See ~pgsql/data/postgresql.conf for more info
======================================================================
To run PostgreSQL at startup, add
'postgresql_enable="YES"' to /etc/rc.conf

View File

@ -0,0 +1,4 @@
# Package-index file for Pgtcl-package. Enables you to load PostgreSQL
# interface functions right into you TCL-interpreter as simply as
# package require Pgtcl
package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so"

View File

@ -0,0 +1,114 @@
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: postgresql
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following line to /etc/rc.conf to enable PostgreSQL:
#
# postgresql_enable="YES"
# # optional
# 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"
# postgresql_profiles=""
#
# See %%PREFIX%%/share/doc/postgresql/README-server for more info
#
# This scripts takes one of the following commands:
#
# start stop restart reload status initdb
#
# For postmaster startup options, edit ${postgresql_data}/postgresql.conf
command=%%PREFIX%%/bin/pg_ctl
. /etc/rc.subr
load_rc_config postgresql
# set defaults
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}/data96"}
postgresql_class=${postgresql_class:-"default"}
postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"}
name=postgresql
rcvar=postgresql_enable
extra_commands="reload initdb"
start_cmd="postgresql_command start"
stop_cmd="postgresql_command stop"
restart_cmd="postgresql_command restart"
reload_cmd="postgresql_command reload"
status_cmd="postgresql_command status"
initdb_cmd="postgresql_initdb"
if [ -n "$2" ]; then
profile="$2"
if [ "x${postgresql_profiles}" != "x" ]; then
eval postgresql_data="\${postgresql_${profile}_data:-}"
if [ "x${postgresql_data}" = "x" ]; then
echo "You must define a data directory (postgresql_${profile}_data)"
exit 1
fi
eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}
eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}
eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}"
eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}"
fi
else
if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then
for profile in ${postgresql_profiles}; do
eval _enable="\${postgresql_${profile}_enable}"
case "x${_enable:-${postgresql_enable}}" in
x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee])
continue
;;
x[Yy][Ee][Ss])
;;
*)
if test -z "$_enable"; then
_var=postgresql_enable
else
_var=postgresql_"${profile}"_enable
fi
echo "Bad value" \
"'${_enable:-${postgresql_enable}}'" \
"for ${_var}. " \
"Profile ${profile} skipped."
continue
;;
esac
echo "===> postgresql profile: ${profile}"
%%PREFIX%%/etc/rc.d/postgresql $1 ${profile}
retcode="$?"
if [ "0${retcode}" -ne 0 ]; then
failed="${profile} (${retcode}) ${failed:-}"
else
success="${profile} ${success:-}"
fi
done
exit 0
fi
fi
command_args="-D ${postgresql_data} ${postgresql_flags}"
postgresql_command()
{
su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}"
}
postgresql_initdb()
{
su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}"
}
run_rc_command "$1"

View File

@ -0,0 +1,23 @@
PostgreSQL is a sophisticated Object-Relational DBMS, supporting
almost all SQL constructs, including subselects, transactions, and
user-defined types and functions. It is the most advanced open-source
database available anywhere. Commercial Support is also available.
The original Postgres code was the effort of many graduate students,
undergraduate students, and staff programmers working under the direction of
Professor Michael Stonebraker at the University of California, Berkeley. In
1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query
language to SQL and created a new database system which came to known as
Postgres95. Many others contributed to the porting, testing, debugging and
enhancement of the Postgres95 code. As the code improved, and 1995 faded into
memory, PostgreSQL was born.
PostgreSQL development is presently being performed by a team of Internet
developers who are now responsible for all current and future development. The
development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG).
Support is available from the PostgreSQL developer/user community through the
support mailing list (questions@PostgreSQL.ORG).
PostgreSQL is free and the complete source is available.
WWW: http://www.postgresql.org/

View File

@ -0,0 +1,24 @@
#! /bin/sh
# $FreeBSD$
PATH=/bin:/usr/bin:/usr/sbin
backupwarning() {
cat <<EOF
=========== BACKUP YOUR DATA! =============
As always, backup your data before
upgrading. If the upgrade leads to a higher
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!
===========================================
EOF
}
case $2 in
PRE-INSTALL)
backupwarning
;;
esac

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,239 @@
bin/oid2name
bin/pg_standby
bin/vacuumlo
lib/postgresql/_int.so
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
lib/postgresql/citext.so
lib/postgresql/cube.so
lib/postgresql/dblink.so
lib/postgresql/dict_int.so
lib/postgresql/dict_xsyn.so
lib/postgresql/earthdistance.so
lib/postgresql/file_fdw.so
lib/postgresql/fuzzystrmatch.so
lib/postgresql/hstore.so
lib/postgresql/insert_username.so
lib/postgresql/isn.so
lib/postgresql/lo.so
lib/postgresql/ltree.so
lib/postgresql/moddatetime.so
lib/postgresql/pageinspect.so
lib/postgresql/passwordcheck.so
lib/postgresql/pg_buffercache.so
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
lib/postgresql/pgxml.so
lib/postgresql/postgres_fdw.so
lib/postgresql/refint.so
lib/postgresql/seg.so
lib/postgresql/sslinfo.so
lib/postgresql/tablefunc.so
lib/postgresql/tcn.so
lib/postgresql/test_decoding.so
lib/postgresql/timetravel.so
lib/postgresql/tsearch2.so
lib/postgresql/tsm_system_rows.so
lib/postgresql/tsm_system_time.so
lib/postgresql/unaccent.so
lib/postgresql/uuid-ossp.so
%%PORTDOCS%%%%DOCSDIR%%/README-contrib
%%PORTDOCS%%%%DOCSDIR%%/extension/README
%%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example
%%PORTDOCS%%%%DOCSDIR%%/extension/insert_username.example
%%PORTDOCS%%%%DOCSDIR%%/extension/moddatetime.example
%%PORTDOCS%%%%DOCSDIR%%/extension/refint.example
%%PORTDOCS%%%%DOCSDIR%%/extension/timetravel.example
%%DATADIR%%/extension/adminpack--1.0.sql
%%DATADIR%%/extension/adminpack.control
%%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--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--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--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--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
%%DATADIR%%/extension/dict_int--unpackaged--1.0.sql
%%DATADIR%%/extension/dict_int.control
%%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--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--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--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--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--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--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--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--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
%%DATADIR%%/extension/moddatetime--unpackaged--1.0.sql
%%DATADIR%%/extension/moddatetime.control
%%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--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--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--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--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--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--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--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--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--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
%%DATADIR%%/extension/postgres_fdw.control
%%DATADIR%%/extension/refint--1.0.sql
%%DATADIR%%/extension/refint--unpackaged--1.0.sql
%%DATADIR%%/extension/refint.control
%%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--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
%%DATADIR%%/extension/tablefunc--unpackaged--1.0.sql
%%DATADIR%%/extension/tablefunc.control
%%DATADIR%%/extension/tcn--1.0.sql
%%DATADIR%%/extension/tcn.control
%%DATADIR%%/extension/timetravel--1.0.sql
%%DATADIR%%/extension/timetravel--unpackaged--1.0.sql
%%DATADIR%%/extension/timetravel.control
%%DATADIR%%/extension/tsearch2--1.0.sql
%%DATADIR%%/extension/tsearch2--unpackaged--1.0.sql
%%DATADIR%%/extension/tsearch2.control
%%DATADIR%%/extension/tsm_system_rows--1.0.sql
%%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--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--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--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
%%DATADIR%%/tsearch_data/xsyn_sample.rules

View File

@ -0,0 +1,10 @@
include/postgresql/server/plperl.h
include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperlu--1.0.sql
%%DATADIR%%/extension/plperl.control
%%DATADIR%%/extension/plperl--1.0.sql
%%DATADIR%%/extension/plperlu.control
%%DATADIR%%/extension/plperlu--unpackaged--1.0.sql
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl
lib/postgresql/plperl.so

View File

@ -0,0 +1,14 @@
include/postgresql/server/plpy_util.h
include/postgresql/server/plpython.h
%%DOCSDIR%%/README-plpython
%%PYTHON2%%lib/postgresql/plpython2.so
%%PYTHON3%%lib/postgresql/plpython3.so
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpython2u.control
%%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql
%%PYTHON3%%%%DATADIR%%/extension/plpython3u.control
%%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql
%%PYTHON3%%%%DATADIR%%/extension/plpython3u--unpackaged--1.0.sql

View File

@ -0,0 +1,12 @@
%%DATADIR%%/extension/pltcl--1.0.sql
%%DATADIR%%/extension/pltcl.control
%%DATADIR%%/extension/pltclu.control
%%DATADIR%%/extension/pltclu--1.0.sql
%%DATADIR%%/extension/pltcl--unpackaged--1.0.sql
%%DATADIR%%/extension/pltclu--unpackaged--1.0.sql
%%DOCSDIR%%/README-pltcl
lib/postgresql/pltcl.so
bin/pltcl_loadmod
bin/pltcl_delmod
bin/pltcl_listmod
%%DATADIR%%/unknown.pltcl

View File

@ -0,0 +1,779 @@
bin/initdb
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
bin/pg_xlogdump
bin/pg_upgrade
bin/postgres
bin/postmaster
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
lib/postgresql/euc2004_sjis2004.so
lib/postgresql/euc_cn_and_mic.so
lib/postgresql/euc_jp_and_sjis.so
lib/postgresql/euc_kr_and_mic.so
lib/postgresql/euc_tw_and_big5.so
lib/postgresql/latin2_and_win1250.so
lib/postgresql/latin_and_mic.so
lib/postgresql/libpqwalreceiver.so
lib/postgresql/plpgsql.so
lib/postgresql/utf8_and_ascii.so
lib/postgresql/utf8_and_big5.so
lib/postgresql/utf8_and_cyrillic.so
lib/postgresql/utf8_and_euc2004.so
lib/postgresql/utf8_and_euc_cn.so
lib/postgresql/utf8_and_euc_jp.so
lib/postgresql/utf8_and_euc_kr.so
lib/postgresql/utf8_and_euc_tw.so
lib/postgresql/utf8_and_gb18030.so
lib/postgresql/utf8_and_gbk.so
lib/postgresql/utf8_and_iso8859.so
lib/postgresql/utf8_and_iso8859_1.so
lib/postgresql/utf8_and_johab.so
lib/postgresql/utf8_and_sjis.so
lib/postgresql/utf8_and_sjis2004.so
lib/postgresql/utf8_and_uhc.so
lib/postgresql/utf8_and_win.so
lib/libpgcommon.a
%%PORTDOCS%%%%DOCSDIR%%/README-server
%%DATADIR%%/conversion_create.sql
%%DATADIR%%/information_schema.sql
%%DATADIR%%/pg_hba.conf.sample
%%DATADIR%%/pg_ident.conf.sample
%%DATADIR%%/postgres.bki
%%DATADIR%%/postgres.description
%%DATADIR%%/postgresql.conf.sample
%%DATADIR%%/recovery.conf.sample
%%DATADIR%%/sql_features.txt
%%DATADIR%%/system_views.sql
%%DATADIR%%/extension/plpgsql--1.0.sql
%%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
%%DATADIR%%/extension/plpgsql.control
%%DATADIR%%/postgres.shdescription
%%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
%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/it/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/ja/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/pl/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/ru/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.6.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-9.6.mo
%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.6.mo
%%DATADIR%%/snowball_create.sql
%%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan
%%TZDATA%%%%DATADIR%%/timezone/Africa/Accra
%%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa
%%TZDATA%%%%DATADIR%%/timezone/Africa/Algiers
%%TZDATA%%%%DATADIR%%/timezone/Africa/Asmara
%%TZDATA%%%%DATADIR%%/timezone/Africa/Asmera
%%TZDATA%%%%DATADIR%%/timezone/Africa/Bamako
%%TZDATA%%%%DATADIR%%/timezone/Africa/Bangui
%%TZDATA%%%%DATADIR%%/timezone/Africa/Banjul
%%TZDATA%%%%DATADIR%%/timezone/Africa/Bissau
%%TZDATA%%%%DATADIR%%/timezone/Africa/Blantyre
%%TZDATA%%%%DATADIR%%/timezone/Africa/Brazzaville
%%TZDATA%%%%DATADIR%%/timezone/Africa/Bujumbura
%%TZDATA%%%%DATADIR%%/timezone/Africa/Cairo
%%TZDATA%%%%DATADIR%%/timezone/Africa/Casablanca
%%TZDATA%%%%DATADIR%%/timezone/Africa/Ceuta
%%TZDATA%%%%DATADIR%%/timezone/Africa/Conakry
%%TZDATA%%%%DATADIR%%/timezone/Africa/Dakar
%%TZDATA%%%%DATADIR%%/timezone/Africa/Dar_es_Salaam
%%TZDATA%%%%DATADIR%%/timezone/Africa/Djibouti
%%TZDATA%%%%DATADIR%%/timezone/Africa/Douala
%%TZDATA%%%%DATADIR%%/timezone/Africa/El_Aaiun
%%TZDATA%%%%DATADIR%%/timezone/Africa/Freetown
%%TZDATA%%%%DATADIR%%/timezone/Africa/Gaborone
%%TZDATA%%%%DATADIR%%/timezone/Africa/Harare
%%TZDATA%%%%DATADIR%%/timezone/Africa/Johannesburg
%%TZDATA%%%%DATADIR%%/timezone/Africa/Juba
%%TZDATA%%%%DATADIR%%/timezone/Africa/Kampala
%%TZDATA%%%%DATADIR%%/timezone/Africa/Khartoum
%%TZDATA%%%%DATADIR%%/timezone/Africa/Kigali
%%TZDATA%%%%DATADIR%%/timezone/Africa/Kinshasa
%%TZDATA%%%%DATADIR%%/timezone/Africa/Lagos
%%TZDATA%%%%DATADIR%%/timezone/Africa/Libreville
%%TZDATA%%%%DATADIR%%/timezone/Africa/Lome
%%TZDATA%%%%DATADIR%%/timezone/Africa/Luanda
%%TZDATA%%%%DATADIR%%/timezone/Africa/Lubumbashi
%%TZDATA%%%%DATADIR%%/timezone/Africa/Lusaka
%%TZDATA%%%%DATADIR%%/timezone/Africa/Malabo
%%TZDATA%%%%DATADIR%%/timezone/Africa/Maputo
%%TZDATA%%%%DATADIR%%/timezone/Africa/Maseru
%%TZDATA%%%%DATADIR%%/timezone/Africa/Mbabane
%%TZDATA%%%%DATADIR%%/timezone/Africa/Mogadishu
%%TZDATA%%%%DATADIR%%/timezone/Africa/Monrovia
%%TZDATA%%%%DATADIR%%/timezone/Africa/Nairobi
%%TZDATA%%%%DATADIR%%/timezone/Africa/Ndjamena
%%TZDATA%%%%DATADIR%%/timezone/Africa/Niamey
%%TZDATA%%%%DATADIR%%/timezone/Africa/Nouakchott
%%TZDATA%%%%DATADIR%%/timezone/Africa/Ouagadougou
%%TZDATA%%%%DATADIR%%/timezone/Africa/Porto-Novo
%%TZDATA%%%%DATADIR%%/timezone/Africa/Sao_Tome
%%TZDATA%%%%DATADIR%%/timezone/Africa/Timbuktu
%%TZDATA%%%%DATADIR%%/timezone/Africa/Tripoli
%%TZDATA%%%%DATADIR%%/timezone/Africa/Tunis
%%TZDATA%%%%DATADIR%%/timezone/Africa/Windhoek
%%TZDATA%%%%DATADIR%%/timezone/America/Adak
%%TZDATA%%%%DATADIR%%/timezone/America/Anchorage
%%TZDATA%%%%DATADIR%%/timezone/America/Anguilla
%%TZDATA%%%%DATADIR%%/timezone/America/Antigua
%%TZDATA%%%%DATADIR%%/timezone/America/Araguaina
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Buenos_Aires
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Catamarca
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/ComodRivadavia
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Cordoba
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Jujuy
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/La_Rioja
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Mendoza
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Rio_Gallegos
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Salta
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/San_Juan
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/San_Luis
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Tucuman
%%TZDATA%%%%DATADIR%%/timezone/America/Argentina/Ushuaia
%%TZDATA%%%%DATADIR%%/timezone/America/Aruba
%%TZDATA%%%%DATADIR%%/timezone/America/Asuncion
%%TZDATA%%%%DATADIR%%/timezone/America/Atikokan
%%TZDATA%%%%DATADIR%%/timezone/America/Atka
%%TZDATA%%%%DATADIR%%/timezone/America/Bahia
%%TZDATA%%%%DATADIR%%/timezone/America/Bahia_Banderas
%%TZDATA%%%%DATADIR%%/timezone/America/Barbados
%%TZDATA%%%%DATADIR%%/timezone/America/Belem
%%TZDATA%%%%DATADIR%%/timezone/America/Belize
%%TZDATA%%%%DATADIR%%/timezone/America/Blanc-Sablon
%%TZDATA%%%%DATADIR%%/timezone/America/Boa_Vista
%%TZDATA%%%%DATADIR%%/timezone/America/Bogota
%%TZDATA%%%%DATADIR%%/timezone/America/Boise
%%TZDATA%%%%DATADIR%%/timezone/America/Buenos_Aires
%%TZDATA%%%%DATADIR%%/timezone/America/Cambridge_Bay
%%TZDATA%%%%DATADIR%%/timezone/America/Campo_Grande
%%TZDATA%%%%DATADIR%%/timezone/America/Cancun
%%TZDATA%%%%DATADIR%%/timezone/America/Caracas
%%TZDATA%%%%DATADIR%%/timezone/America/Catamarca
%%TZDATA%%%%DATADIR%%/timezone/America/Cayenne
%%TZDATA%%%%DATADIR%%/timezone/America/Cayman
%%TZDATA%%%%DATADIR%%/timezone/America/Chicago
%%TZDATA%%%%DATADIR%%/timezone/America/Chihuahua
%%TZDATA%%%%DATADIR%%/timezone/America/Coral_Harbour
%%TZDATA%%%%DATADIR%%/timezone/America/Cordoba
%%TZDATA%%%%DATADIR%%/timezone/America/Costa_Rica
%%TZDATA%%%%DATADIR%%/timezone/America/Creston
%%TZDATA%%%%DATADIR%%/timezone/America/Cuiaba
%%TZDATA%%%%DATADIR%%/timezone/America/Curacao
%%TZDATA%%%%DATADIR%%/timezone/America/Danmarkshavn
%%TZDATA%%%%DATADIR%%/timezone/America/Dawson
%%TZDATA%%%%DATADIR%%/timezone/America/Dawson_Creek
%%TZDATA%%%%DATADIR%%/timezone/America/Denver
%%TZDATA%%%%DATADIR%%/timezone/America/Detroit
%%TZDATA%%%%DATADIR%%/timezone/America/Dominica
%%TZDATA%%%%DATADIR%%/timezone/America/Edmonton
%%TZDATA%%%%DATADIR%%/timezone/America/Eirunepe
%%TZDATA%%%%DATADIR%%/timezone/America/El_Salvador
%%TZDATA%%%%DATADIR%%/timezone/America/Ensenada
%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Nelson
%%TZDATA%%%%DATADIR%%/timezone/America/Fort_Wayne
%%TZDATA%%%%DATADIR%%/timezone/America/Fortaleza
%%TZDATA%%%%DATADIR%%/timezone/America/Glace_Bay
%%TZDATA%%%%DATADIR%%/timezone/America/Godthab
%%TZDATA%%%%DATADIR%%/timezone/America/Goose_Bay
%%TZDATA%%%%DATADIR%%/timezone/America/Grand_Turk
%%TZDATA%%%%DATADIR%%/timezone/America/Grenada
%%TZDATA%%%%DATADIR%%/timezone/America/Guadeloupe
%%TZDATA%%%%DATADIR%%/timezone/America/Guatemala
%%TZDATA%%%%DATADIR%%/timezone/America/Guayaquil
%%TZDATA%%%%DATADIR%%/timezone/America/Guyana
%%TZDATA%%%%DATADIR%%/timezone/America/Halifax
%%TZDATA%%%%DATADIR%%/timezone/America/Havana
%%TZDATA%%%%DATADIR%%/timezone/America/Hermosillo
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Indianapolis
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Knox
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Marengo
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Petersburg
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Tell_City
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Vevay
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Vincennes
%%TZDATA%%%%DATADIR%%/timezone/America/Indiana/Winamac
%%TZDATA%%%%DATADIR%%/timezone/America/Indianapolis
%%TZDATA%%%%DATADIR%%/timezone/America/Inuvik
%%TZDATA%%%%DATADIR%%/timezone/America/Iqaluit
%%TZDATA%%%%DATADIR%%/timezone/America/Jamaica
%%TZDATA%%%%DATADIR%%/timezone/America/Jujuy
%%TZDATA%%%%DATADIR%%/timezone/America/Juneau
%%TZDATA%%%%DATADIR%%/timezone/America/Kentucky/Louisville
%%TZDATA%%%%DATADIR%%/timezone/America/Kentucky/Monticello
%%TZDATA%%%%DATADIR%%/timezone/America/Knox_IN
%%TZDATA%%%%DATADIR%%/timezone/America/Kralendijk
%%TZDATA%%%%DATADIR%%/timezone/America/La_Paz
%%TZDATA%%%%DATADIR%%/timezone/America/Lima
%%TZDATA%%%%DATADIR%%/timezone/America/Los_Angeles
%%TZDATA%%%%DATADIR%%/timezone/America/Louisville
%%TZDATA%%%%DATADIR%%/timezone/America/Lower_Princes
%%TZDATA%%%%DATADIR%%/timezone/America/Maceio
%%TZDATA%%%%DATADIR%%/timezone/America/Managua
%%TZDATA%%%%DATADIR%%/timezone/America/Manaus
%%TZDATA%%%%DATADIR%%/timezone/America/Marigot
%%TZDATA%%%%DATADIR%%/timezone/America/Martinique
%%TZDATA%%%%DATADIR%%/timezone/America/Matamoros
%%TZDATA%%%%DATADIR%%/timezone/America/Mazatlan
%%TZDATA%%%%DATADIR%%/timezone/America/Mendoza
%%TZDATA%%%%DATADIR%%/timezone/America/Menominee
%%TZDATA%%%%DATADIR%%/timezone/America/Merida
%%TZDATA%%%%DATADIR%%/timezone/America/Metlakatla
%%TZDATA%%%%DATADIR%%/timezone/America/Mexico_City
%%TZDATA%%%%DATADIR%%/timezone/America/Miquelon
%%TZDATA%%%%DATADIR%%/timezone/America/Moncton
%%TZDATA%%%%DATADIR%%/timezone/America/Monterrey
%%TZDATA%%%%DATADIR%%/timezone/America/Montevideo
%%TZDATA%%%%DATADIR%%/timezone/America/Montreal
%%TZDATA%%%%DATADIR%%/timezone/America/Montserrat
%%TZDATA%%%%DATADIR%%/timezone/America/Nassau
%%TZDATA%%%%DATADIR%%/timezone/America/New_York
%%TZDATA%%%%DATADIR%%/timezone/America/Nipigon
%%TZDATA%%%%DATADIR%%/timezone/America/Nome
%%TZDATA%%%%DATADIR%%/timezone/America/Noronha
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung
%%TZDATA%%%%DATADIR%%/timezone/America/Paramaribo
%%TZDATA%%%%DATADIR%%/timezone/America/Phoenix
%%TZDATA%%%%DATADIR%%/timezone/America/Port-au-Prince
%%TZDATA%%%%DATADIR%%/timezone/America/Port_of_Spain
%%TZDATA%%%%DATADIR%%/timezone/America/Porto_Acre
%%TZDATA%%%%DATADIR%%/timezone/America/Porto_Velho
%%TZDATA%%%%DATADIR%%/timezone/America/Puerto_Rico
%%TZDATA%%%%DATADIR%%/timezone/America/Rainy_River
%%TZDATA%%%%DATADIR%%/timezone/America/Rankin_Inlet
%%TZDATA%%%%DATADIR%%/timezone/America/Recife
%%TZDATA%%%%DATADIR%%/timezone/America/Regina
%%TZDATA%%%%DATADIR%%/timezone/America/Resolute
%%TZDATA%%%%DATADIR%%/timezone/America/Rio_Branco
%%TZDATA%%%%DATADIR%%/timezone/America/Rosario
%%TZDATA%%%%DATADIR%%/timezone/America/Santa_Isabel
%%TZDATA%%%%DATADIR%%/timezone/America/Santarem
%%TZDATA%%%%DATADIR%%/timezone/America/Santiago
%%TZDATA%%%%DATADIR%%/timezone/America/Santo_Domingo
%%TZDATA%%%%DATADIR%%/timezone/America/Sao_Paulo
%%TZDATA%%%%DATADIR%%/timezone/America/Scoresbysund
%%TZDATA%%%%DATADIR%%/timezone/America/Shiprock
%%TZDATA%%%%DATADIR%%/timezone/America/Sitka
%%TZDATA%%%%DATADIR%%/timezone/America/St_Barthelemy
%%TZDATA%%%%DATADIR%%/timezone/America/St_Johns
%%TZDATA%%%%DATADIR%%/timezone/America/St_Kitts
%%TZDATA%%%%DATADIR%%/timezone/America/St_Lucia
%%TZDATA%%%%DATADIR%%/timezone/America/St_Thomas
%%TZDATA%%%%DATADIR%%/timezone/America/St_Vincent
%%TZDATA%%%%DATADIR%%/timezone/America/Swift_Current
%%TZDATA%%%%DATADIR%%/timezone/America/Tegucigalpa
%%TZDATA%%%%DATADIR%%/timezone/America/Thule
%%TZDATA%%%%DATADIR%%/timezone/America/Thunder_Bay
%%TZDATA%%%%DATADIR%%/timezone/America/Tijuana
%%TZDATA%%%%DATADIR%%/timezone/America/Toronto
%%TZDATA%%%%DATADIR%%/timezone/America/Tortola
%%TZDATA%%%%DATADIR%%/timezone/America/Vancouver
%%TZDATA%%%%DATADIR%%/timezone/America/Virgin
%%TZDATA%%%%DATADIR%%/timezone/America/Whitehorse
%%TZDATA%%%%DATADIR%%/timezone/America/Winnipeg
%%TZDATA%%%%DATADIR%%/timezone/America/Yakutat
%%TZDATA%%%%DATADIR%%/timezone/America/Yellowknife
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Casey
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Davis
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/DumontDUrville
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Macquarie
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Mawson
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/McMurdo
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Palmer
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Rothera
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/South_Pole
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Syowa
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Troll
%%TZDATA%%%%DATADIR%%/timezone/Antarctica/Vostok
%%TZDATA%%%%DATADIR%%/timezone/Arctic/Longyearbyen
%%TZDATA%%%%DATADIR%%/timezone/Asia/Aden
%%TZDATA%%%%DATADIR%%/timezone/Asia/Almaty
%%TZDATA%%%%DATADIR%%/timezone/Asia/Amman
%%TZDATA%%%%DATADIR%%/timezone/Asia/Anadyr
%%TZDATA%%%%DATADIR%%/timezone/Asia/Aqtau
%%TZDATA%%%%DATADIR%%/timezone/Asia/Aqtobe
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ashgabat
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ashkhabad
%%TZDATA%%%%DATADIR%%/timezone/Asia/Baghdad
%%TZDATA%%%%DATADIR%%/timezone/Asia/Bahrain
%%TZDATA%%%%DATADIR%%/timezone/Asia/Baku
%%TZDATA%%%%DATADIR%%/timezone/Asia/Bangkok
%%TZDATA%%%%DATADIR%%/timezone/Asia/Barnaul
%%TZDATA%%%%DATADIR%%/timezone/Asia/Beirut
%%TZDATA%%%%DATADIR%%/timezone/Asia/Bishkek
%%TZDATA%%%%DATADIR%%/timezone/Asia/Brunei
%%TZDATA%%%%DATADIR%%/timezone/Asia/Calcutta
%%TZDATA%%%%DATADIR%%/timezone/Asia/Chita
%%TZDATA%%%%DATADIR%%/timezone/Asia/Choibalsan
%%TZDATA%%%%DATADIR%%/timezone/Asia/Chongqing
%%TZDATA%%%%DATADIR%%/timezone/Asia/Chungking
%%TZDATA%%%%DATADIR%%/timezone/Asia/Colombo
%%TZDATA%%%%DATADIR%%/timezone/Asia/Dacca
%%TZDATA%%%%DATADIR%%/timezone/Asia/Damascus
%%TZDATA%%%%DATADIR%%/timezone/Asia/Dhaka
%%TZDATA%%%%DATADIR%%/timezone/Asia/Dili
%%TZDATA%%%%DATADIR%%/timezone/Asia/Dubai
%%TZDATA%%%%DATADIR%%/timezone/Asia/Dushanbe
%%TZDATA%%%%DATADIR%%/timezone/Asia/Gaza
%%TZDATA%%%%DATADIR%%/timezone/Asia/Harbin
%%TZDATA%%%%DATADIR%%/timezone/Asia/Hebron
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ho_Chi_Minh
%%TZDATA%%%%DATADIR%%/timezone/Asia/Hong_Kong
%%TZDATA%%%%DATADIR%%/timezone/Asia/Hovd
%%TZDATA%%%%DATADIR%%/timezone/Asia/Irkutsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Istanbul
%%TZDATA%%%%DATADIR%%/timezone/Asia/Jakarta
%%TZDATA%%%%DATADIR%%/timezone/Asia/Jayapura
%%TZDATA%%%%DATADIR%%/timezone/Asia/Jerusalem
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kabul
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kamchatka
%%TZDATA%%%%DATADIR%%/timezone/Asia/Karachi
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kashgar
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kathmandu
%%TZDATA%%%%DATADIR%%/timezone/Asia/Katmandu
%%TZDATA%%%%DATADIR%%/timezone/Asia/Khandyga
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kolkata
%%TZDATA%%%%DATADIR%%/timezone/Asia/Krasnoyarsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuala_Lumpur
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuching
%%TZDATA%%%%DATADIR%%/timezone/Asia/Kuwait
%%TZDATA%%%%DATADIR%%/timezone/Asia/Macao
%%TZDATA%%%%DATADIR%%/timezone/Asia/Macau
%%TZDATA%%%%DATADIR%%/timezone/Asia/Magadan
%%TZDATA%%%%DATADIR%%/timezone/Asia/Makassar
%%TZDATA%%%%DATADIR%%/timezone/Asia/Manila
%%TZDATA%%%%DATADIR%%/timezone/Asia/Muscat
%%TZDATA%%%%DATADIR%%/timezone/Asia/Nicosia
%%TZDATA%%%%DATADIR%%/timezone/Asia/Novokuznetsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Novosibirsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Omsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Oral
%%TZDATA%%%%DATADIR%%/timezone/Asia/Phnom_Penh
%%TZDATA%%%%DATADIR%%/timezone/Asia/Pontianak
%%TZDATA%%%%DATADIR%%/timezone/Asia/Pyongyang
%%TZDATA%%%%DATADIR%%/timezone/Asia/Qatar
%%TZDATA%%%%DATADIR%%/timezone/Asia/Qyzylorda
%%TZDATA%%%%DATADIR%%/timezone/Asia/Rangoon
%%TZDATA%%%%DATADIR%%/timezone/Asia/Riyadh
%%TZDATA%%%%DATADIR%%/timezone/Asia/Saigon
%%TZDATA%%%%DATADIR%%/timezone/Asia/Sakhalin
%%TZDATA%%%%DATADIR%%/timezone/Asia/Samarkand
%%TZDATA%%%%DATADIR%%/timezone/Asia/Seoul
%%TZDATA%%%%DATADIR%%/timezone/Asia/Shanghai
%%TZDATA%%%%DATADIR%%/timezone/Asia/Singapore
%%TZDATA%%%%DATADIR%%/timezone/Asia/Srednekolymsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Taipei
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tashkent
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tbilisi
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tehran
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tel_Aviv
%%TZDATA%%%%DATADIR%%/timezone/Asia/Thimbu
%%TZDATA%%%%DATADIR%%/timezone/Asia/Thimphu
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tokyo
%%TZDATA%%%%DATADIR%%/timezone/Asia/Tomsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ujung_Pandang
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ulaanbaatar
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ulan_Bator
%%TZDATA%%%%DATADIR%%/timezone/Asia/Urumqi
%%TZDATA%%%%DATADIR%%/timezone/Asia/Ust-Nera
%%TZDATA%%%%DATADIR%%/timezone/Asia/Vientiane
%%TZDATA%%%%DATADIR%%/timezone/Asia/Vladivostok
%%TZDATA%%%%DATADIR%%/timezone/Asia/Yakutsk
%%TZDATA%%%%DATADIR%%/timezone/Asia/Yekaterinburg
%%TZDATA%%%%DATADIR%%/timezone/Asia/Yerevan
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Azores
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Bermuda
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Canary
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Cape_Verde
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Faeroe
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Faroe
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Jan_Mayen
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Madeira
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Reykjavik
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/South_Georgia
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/St_Helena
%%TZDATA%%%%DATADIR%%/timezone/Atlantic/Stanley
%%TZDATA%%%%DATADIR%%/timezone/Australia/ACT
%%TZDATA%%%%DATADIR%%/timezone/Australia/Adelaide
%%TZDATA%%%%DATADIR%%/timezone/Australia/Brisbane
%%TZDATA%%%%DATADIR%%/timezone/Australia/Broken_Hill
%%TZDATA%%%%DATADIR%%/timezone/Australia/Canberra
%%TZDATA%%%%DATADIR%%/timezone/Australia/Currie
%%TZDATA%%%%DATADIR%%/timezone/Australia/Darwin
%%TZDATA%%%%DATADIR%%/timezone/Australia/Eucla
%%TZDATA%%%%DATADIR%%/timezone/Australia/Hobart
%%TZDATA%%%%DATADIR%%/timezone/Australia/LHI
%%TZDATA%%%%DATADIR%%/timezone/Australia/Lindeman
%%TZDATA%%%%DATADIR%%/timezone/Australia/Lord_Howe
%%TZDATA%%%%DATADIR%%/timezone/Australia/Melbourne
%%TZDATA%%%%DATADIR%%/timezone/Australia/NSW
%%TZDATA%%%%DATADIR%%/timezone/Australia/North
%%TZDATA%%%%DATADIR%%/timezone/Australia/Perth
%%TZDATA%%%%DATADIR%%/timezone/Australia/Queensland
%%TZDATA%%%%DATADIR%%/timezone/Australia/South
%%TZDATA%%%%DATADIR%%/timezone/Australia/Sydney
%%TZDATA%%%%DATADIR%%/timezone/Australia/Tasmania
%%TZDATA%%%%DATADIR%%/timezone/Australia/Victoria
%%TZDATA%%%%DATADIR%%/timezone/Australia/West
%%TZDATA%%%%DATADIR%%/timezone/Australia/Yancowinna
%%TZDATA%%%%DATADIR%%/timezone/Brazil/Acre
%%TZDATA%%%%DATADIR%%/timezone/Brazil/DeNoronha
%%TZDATA%%%%DATADIR%%/timezone/Brazil/East
%%TZDATA%%%%DATADIR%%/timezone/Brazil/West
%%TZDATA%%%%DATADIR%%/timezone/CET
%%TZDATA%%%%DATADIR%%/timezone/CST6CDT
%%TZDATA%%%%DATADIR%%/timezone/Canada/Atlantic
%%TZDATA%%%%DATADIR%%/timezone/Canada/Central
%%TZDATA%%%%DATADIR%%/timezone/Canada/East-Saskatchewan
%%TZDATA%%%%DATADIR%%/timezone/Canada/Eastern
%%TZDATA%%%%DATADIR%%/timezone/Canada/Mountain
%%TZDATA%%%%DATADIR%%/timezone/Canada/Newfoundland
%%TZDATA%%%%DATADIR%%/timezone/Canada/Pacific
%%TZDATA%%%%DATADIR%%/timezone/Canada/Saskatchewan
%%TZDATA%%%%DATADIR%%/timezone/Canada/Yukon
%%TZDATA%%%%DATADIR%%/timezone/Chile/Continental
%%TZDATA%%%%DATADIR%%/timezone/Chile/EasterIsland
%%TZDATA%%%%DATADIR%%/timezone/Cuba
%%TZDATA%%%%DATADIR%%/timezone/EET
%%TZDATA%%%%DATADIR%%/timezone/EST
%%TZDATA%%%%DATADIR%%/timezone/EST5EDT
%%TZDATA%%%%DATADIR%%/timezone/Egypt
%%TZDATA%%%%DATADIR%%/timezone/Eire
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+0
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+1
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+10
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+11
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+12
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+2
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+3
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+4
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+5
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+6
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+7
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+8
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT+9
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-0
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-1
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-10
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-11
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-12
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-13
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-14
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-2
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-3
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-4
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-5
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-6
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-7
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-8
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-9
%%TZDATA%%%%DATADIR%%/timezone/Etc/GMT0
%%TZDATA%%%%DATADIR%%/timezone/Etc/Greenwich
%%TZDATA%%%%DATADIR%%/timezone/Etc/UCT
%%TZDATA%%%%DATADIR%%/timezone/Etc/UTC
%%TZDATA%%%%DATADIR%%/timezone/Etc/Universal
%%TZDATA%%%%DATADIR%%/timezone/Etc/Zulu
%%TZDATA%%%%DATADIR%%/timezone/Europe/Amsterdam
%%TZDATA%%%%DATADIR%%/timezone/Europe/Andorra
%%TZDATA%%%%DATADIR%%/timezone/Europe/Astrakhan
%%TZDATA%%%%DATADIR%%/timezone/Europe/Athens
%%TZDATA%%%%DATADIR%%/timezone/Europe/Belfast
%%TZDATA%%%%DATADIR%%/timezone/Europe/Belgrade
%%TZDATA%%%%DATADIR%%/timezone/Europe/Berlin
%%TZDATA%%%%DATADIR%%/timezone/Europe/Bratislava
%%TZDATA%%%%DATADIR%%/timezone/Europe/Brussels
%%TZDATA%%%%DATADIR%%/timezone/Europe/Bucharest
%%TZDATA%%%%DATADIR%%/timezone/Europe/Budapest
%%TZDATA%%%%DATADIR%%/timezone/Europe/Busingen
%%TZDATA%%%%DATADIR%%/timezone/Europe/Chisinau
%%TZDATA%%%%DATADIR%%/timezone/Europe/Copenhagen
%%TZDATA%%%%DATADIR%%/timezone/Europe/Dublin
%%TZDATA%%%%DATADIR%%/timezone/Europe/Gibraltar
%%TZDATA%%%%DATADIR%%/timezone/Europe/Guernsey
%%TZDATA%%%%DATADIR%%/timezone/Europe/Helsinki
%%TZDATA%%%%DATADIR%%/timezone/Europe/Isle_of_Man
%%TZDATA%%%%DATADIR%%/timezone/Europe/Istanbul
%%TZDATA%%%%DATADIR%%/timezone/Europe/Jersey
%%TZDATA%%%%DATADIR%%/timezone/Europe/Kaliningrad
%%TZDATA%%%%DATADIR%%/timezone/Europe/Kiev
%%TZDATA%%%%DATADIR%%/timezone/Europe/Kirov
%%TZDATA%%%%DATADIR%%/timezone/Europe/Lisbon
%%TZDATA%%%%DATADIR%%/timezone/Europe/Ljubljana
%%TZDATA%%%%DATADIR%%/timezone/Europe/London
%%TZDATA%%%%DATADIR%%/timezone/Europe/Luxembourg
%%TZDATA%%%%DATADIR%%/timezone/Europe/Madrid
%%TZDATA%%%%DATADIR%%/timezone/Europe/Malta
%%TZDATA%%%%DATADIR%%/timezone/Europe/Mariehamn
%%TZDATA%%%%DATADIR%%/timezone/Europe/Minsk
%%TZDATA%%%%DATADIR%%/timezone/Europe/Monaco
%%TZDATA%%%%DATADIR%%/timezone/Europe/Moscow
%%TZDATA%%%%DATADIR%%/timezone/Europe/Nicosia
%%TZDATA%%%%DATADIR%%/timezone/Europe/Oslo
%%TZDATA%%%%DATADIR%%/timezone/Europe/Paris
%%TZDATA%%%%DATADIR%%/timezone/Europe/Podgorica
%%TZDATA%%%%DATADIR%%/timezone/Europe/Prague
%%TZDATA%%%%DATADIR%%/timezone/Europe/Riga
%%TZDATA%%%%DATADIR%%/timezone/Europe/Rome
%%TZDATA%%%%DATADIR%%/timezone/Europe/Samara
%%TZDATA%%%%DATADIR%%/timezone/Europe/San_Marino
%%TZDATA%%%%DATADIR%%/timezone/Europe/Sarajevo
%%TZDATA%%%%DATADIR%%/timezone/Europe/Simferopol
%%TZDATA%%%%DATADIR%%/timezone/Europe/Skopje
%%TZDATA%%%%DATADIR%%/timezone/Europe/Sofia
%%TZDATA%%%%DATADIR%%/timezone/Europe/Stockholm
%%TZDATA%%%%DATADIR%%/timezone/Europe/Tallinn
%%TZDATA%%%%DATADIR%%/timezone/Europe/Tirane
%%TZDATA%%%%DATADIR%%/timezone/Europe/Tiraspol
%%TZDATA%%%%DATADIR%%/timezone/Europe/Ulyanovsk
%%TZDATA%%%%DATADIR%%/timezone/Europe/Uzhgorod
%%TZDATA%%%%DATADIR%%/timezone/Europe/Vaduz
%%TZDATA%%%%DATADIR%%/timezone/Europe/Vatican
%%TZDATA%%%%DATADIR%%/timezone/Europe/Vienna
%%TZDATA%%%%DATADIR%%/timezone/Europe/Vilnius
%%TZDATA%%%%DATADIR%%/timezone/Europe/Volgograd
%%TZDATA%%%%DATADIR%%/timezone/Europe/Warsaw
%%TZDATA%%%%DATADIR%%/timezone/Europe/Zagreb
%%TZDATA%%%%DATADIR%%/timezone/Europe/Zaporozhye
%%TZDATA%%%%DATADIR%%/timezone/Europe/Zurich
%%TZDATA%%%%DATADIR%%/timezone/Factory
%%TZDATA%%%%DATADIR%%/timezone/GB
%%TZDATA%%%%DATADIR%%/timezone/GB-Eire
%%TZDATA%%%%DATADIR%%/timezone/GMT
%%TZDATA%%%%DATADIR%%/timezone/GMT+0
%%TZDATA%%%%DATADIR%%/timezone/GMT-0
%%TZDATA%%%%DATADIR%%/timezone/GMT0
%%TZDATA%%%%DATADIR%%/timezone/Greenwich
%%TZDATA%%%%DATADIR%%/timezone/HST
%%TZDATA%%%%DATADIR%%/timezone/Hongkong
%%TZDATA%%%%DATADIR%%/timezone/Iceland
%%TZDATA%%%%DATADIR%%/timezone/Indian/Antananarivo
%%TZDATA%%%%DATADIR%%/timezone/Indian/Chagos
%%TZDATA%%%%DATADIR%%/timezone/Indian/Christmas
%%TZDATA%%%%DATADIR%%/timezone/Indian/Cocos
%%TZDATA%%%%DATADIR%%/timezone/Indian/Comoro
%%TZDATA%%%%DATADIR%%/timezone/Indian/Kerguelen
%%TZDATA%%%%DATADIR%%/timezone/Indian/Mahe
%%TZDATA%%%%DATADIR%%/timezone/Indian/Maldives
%%TZDATA%%%%DATADIR%%/timezone/Indian/Mauritius
%%TZDATA%%%%DATADIR%%/timezone/Indian/Mayotte
%%TZDATA%%%%DATADIR%%/timezone/Indian/Reunion
%%TZDATA%%%%DATADIR%%/timezone/Iran
%%TZDATA%%%%DATADIR%%/timezone/Israel
%%TZDATA%%%%DATADIR%%/timezone/Jamaica
%%TZDATA%%%%DATADIR%%/timezone/Japan
%%TZDATA%%%%DATADIR%%/timezone/Kwajalein
%%TZDATA%%%%DATADIR%%/timezone/Libya
%%TZDATA%%%%DATADIR%%/timezone/MET
%%TZDATA%%%%DATADIR%%/timezone/MST
%%TZDATA%%%%DATADIR%%/timezone/MST7MDT
%%TZDATA%%%%DATADIR%%/timezone/Mexico/BajaNorte
%%TZDATA%%%%DATADIR%%/timezone/Mexico/BajaSur
%%TZDATA%%%%DATADIR%%/timezone/Mexico/General
%%TZDATA%%%%DATADIR%%/timezone/NZ
%%TZDATA%%%%DATADIR%%/timezone/NZ-CHAT
%%TZDATA%%%%DATADIR%%/timezone/Navajo
%%TZDATA%%%%DATADIR%%/timezone/PRC
%%TZDATA%%%%DATADIR%%/timezone/PST8PDT
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Apia
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Auckland
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Bougainville
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Chatham
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Chuuk
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Easter
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Efate
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Enderbury
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Fakaofo
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Fiji
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Funafuti
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Galapagos
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Gambier
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Guadalcanal
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Guam
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Honolulu
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Johnston
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kiritimati
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kosrae
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Kwajalein
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Majuro
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Marquesas
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Midway
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Nauru
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Niue
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Norfolk
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Noumea
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pago_Pago
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Palau
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pitcairn
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Pohnpei
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Ponape
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Port_Moresby
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Rarotonga
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Saipan
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Samoa
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tahiti
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tarawa
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Tongatapu
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Truk
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Wake
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Wallis
%%TZDATA%%%%DATADIR%%/timezone/Pacific/Yap
%%TZDATA%%%%DATADIR%%/timezone/Poland
%%TZDATA%%%%DATADIR%%/timezone/Portugal
%%TZDATA%%%%DATADIR%%/timezone/ROC
%%TZDATA%%%%DATADIR%%/timezone/ROK
%%TZDATA%%%%DATADIR%%/timezone/Singapore
%%TZDATA%%%%DATADIR%%/timezone/Turkey
%%TZDATA%%%%DATADIR%%/timezone/UCT
%%TZDATA%%%%DATADIR%%/timezone/US/Alaska
%%TZDATA%%%%DATADIR%%/timezone/US/Aleutian
%%TZDATA%%%%DATADIR%%/timezone/US/Arizona
%%TZDATA%%%%DATADIR%%/timezone/US/Central
%%TZDATA%%%%DATADIR%%/timezone/US/East-Indiana
%%TZDATA%%%%DATADIR%%/timezone/US/Eastern
%%TZDATA%%%%DATADIR%%/timezone/US/Hawaii
%%TZDATA%%%%DATADIR%%/timezone/US/Indiana-Starke
%%TZDATA%%%%DATADIR%%/timezone/US/Michigan
%%TZDATA%%%%DATADIR%%/timezone/US/Mountain
%%TZDATA%%%%DATADIR%%/timezone/US/Pacific
%%TZDATA%%%%DATADIR%%/timezone/US/Pacific-New
%%TZDATA%%%%DATADIR%%/timezone/US/Samoa
%%TZDATA%%%%DATADIR%%/timezone/UTC
%%TZDATA%%%%DATADIR%%/timezone/Universal
%%TZDATA%%%%DATADIR%%/timezone/W-SU
%%TZDATA%%%%DATADIR%%/timezone/WET
%%TZDATA%%%%DATADIR%%/timezone/Zulu
%%TZDATA%%%%DATADIR%%/timezone/posixrules
%%DATADIR%%/timezonesets/Africa.txt
%%DATADIR%%/timezonesets/America.txt
%%DATADIR%%/timezonesets/Antarctica.txt
%%DATADIR%%/timezonesets/Asia.txt
%%DATADIR%%/timezonesets/Atlantic.txt
%%DATADIR%%/timezonesets/Australia
%%DATADIR%%/timezonesets/Australia.txt
%%DATADIR%%/timezonesets/Default
%%DATADIR%%/timezonesets/Etc.txt
%%DATADIR%%/timezonesets/Europe.txt
%%DATADIR%%/timezonesets/India
%%DATADIR%%/timezonesets/Indian.txt
%%DATADIR%%/timezonesets/Pacific.txt
%%DATADIR%%/tsearch_data/danish.stop
%%DATADIR%%/tsearch_data/dutch.stop
%%DATADIR%%/tsearch_data/english.stop
%%DATADIR%%/tsearch_data/finnish.stop
%%DATADIR%%/tsearch_data/french.stop
%%DATADIR%%/tsearch_data/german.stop
%%DATADIR%%/tsearch_data/hungarian.stop
%%DATADIR%%/tsearch_data/hunspell_sample.affix
%%DATADIR%%/tsearch_data/hunspell_sample_long.affix
%%DATADIR%%/tsearch_data/hunspell_sample_long.dict
%%DATADIR%%/tsearch_data/hunspell_sample_num.affix
%%DATADIR%%/tsearch_data/hunspell_sample_num.dict
%%DATADIR%%/tsearch_data/ispell_sample.affix
%%DATADIR%%/tsearch_data/ispell_sample.dict
%%DATADIR%%/tsearch_data/italian.stop
%%DATADIR%%/tsearch_data/norwegian.stop
%%DATADIR%%/tsearch_data/portuguese.stop
%%DATADIR%%/tsearch_data/russian.stop
%%DATADIR%%/tsearch_data/spanish.stop
%%DATADIR%%/tsearch_data/swedish.stop
%%DATADIR%%/tsearch_data/synonym_sample.syn
%%DATADIR%%/tsearch_data/thesaurus_sample.ths
%%DATADIR%%/tsearch_data/turkish.stop
@dir(%%PG_USER%%,%%PG_GROUP%%,) %%PG_USER%%