diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2022-05-18 21:11:48 +0200 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2022-05-19 15:36:48 +0200 |
commit | 5b11f47f0d59c95f6dcf1ff75badede5ec84e72e (patch) | |
tree | ddbd6345593e54c390ac3b9b04b4403cae76366b /databases/postgresql14-server | |
parent | shell/zsh: remove unnneeded patch (diff) |
databases/postgresql??-*: add postgresql-15 to the ports tree
Introduce PostgreSQL-15 to the ports tree.
Make version 15 the master port, and add plist parameter for the
postgresql version.
Release notes: https://www.postgresql.org/docs/devel/release.html
Diffstat (limited to 'databases/postgresql14-server')
-rw-r--r-- | databases/postgresql14-server/Makefile | 346 | ||||
-rw-r--r-- | databases/postgresql14-server/files/postgresql.in | 4 | ||||
-rw-r--r-- | databases/postgresql14-server/pkg-plist-client | 196 | ||||
-rw-r--r-- | databases/postgresql14-server/pkg-plist-server | 338 |
4 files changed, 273 insertions, 611 deletions
diff --git a/databases/postgresql14-server/Makefile b/databases/postgresql14-server/Makefile index 38b7c5fcfd4f..9e8c55ebe165 100644 --- a/databases/postgresql14-server/Makefile +++ b/databases/postgresql14-server/Makefile @@ -1,53 +1,11 @@ # Created by: Marc G. Fournier <scrappy@FreeBSD.org> -PORTNAME?= postgresql DISTVERSION?= 14.3 # PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # not their own. Probably best to keep it at ?=0 when reset here too. PORTREVISION?= 0 -CATEGORIES?= databases -MASTER_SITES= PGSQL/source/v${DISTVERSION} -PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org -COMMENT?= PostgreSQL is the most advanced open-source database available anywhere - -LICENSE= PostgreSQL - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 10 -CONFLICTS+= ${PORTNAME}9* ${PORTNAME}1[^${PORTVERSION:R:C/.*([0-9]$)/\\1/}]* -.else -CONFLICTS+= ${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}1[0-9]* -.endif - -WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} -DIST_SUBDIR= postgresql - -OPTIONS_SUB= yes - -PKGINSTALL?= ${PKGDIR}/pkg-install${COMPONENT} -USES+= tar:bzip2 cpe -.if !defined(NO_BUILD) -USES+= gmake -GNU_CONFIGURE= yes -.endif - -PG_USER?= postgres -PG_GROUP?= postgres -PG_UID?= 770 - -LDFLAGS+= -L${LOCALBASE}/lib -INCLUDES+= -I${LOCALBASE}/include -CONFIGURE_ARGS+=--with-libraries=${PREFIX}/lib \ - --with-includes=${PREFIX}/include \ - --enable-thread-safety -CONFIGURE_ENV+= INCLUDES="${INCLUDES}" \ - PTHREAD_LIBS="-lpthread" \ - LDFLAGS_SL="${LDFLAGS_SL}" -LDFLAGS+= -lpthread -MAKE_ENV= MAKELEVEL=0 - -PLIST= ${PKGDIR}/pkg-plist${COMPONENT} INSTALL_DIRS?= src/common src/timezone src/backend \ src/backend/utils/mb/conversion_procs \ @@ -61,304 +19,8 @@ INSTALL_DIRS?= src/common src/timezone src/backend \ src/bin/pg_test_fsync src/bin/pg_test_timing \ src/bin/pg_waldump src/bin/pg_upgrade -BUILD_DIRS?= src/port ${INSTALL_DIRS} -INSTALL_TARGET?=install-strip - -.if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY) -SERVER_ONLY= yes -COMPONENT= -server -USE_RC_SUBR= postgresql -USES+= pgsql:${DISTVERSION:C/([0-9]\.?[0-9]).*/\1/g} -USERS= ${PG_USER} -GROUPS= ${PG_GROUP} -SUB_FILES+= 502.pgsql -.endif - -OPTIONS_SUB= yes - -.if defined(CLIENT_ONLY) -OPTIONS_DEFINE+=LIBEDIT DOCS -LIBEDIT_DESC= Use non-GPL libedit instead of readline -.else -MAKE_ENV+= PATH=${PREFIX}/bin:${PATH} -CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} -.endif - -.if defined(SERVER_ONLY) -OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA XML DOCS -LDAP_DESC= Build with LDAP authentication support -TZDATA_DESC= Use internal timezone database -XML_DESC= Build with XML data type - -DTRACE_CONFIGURE_ENABLE=dtrace -DTRACE_LDFLAGS= -lelf -DTRACE_INSTALL_TARGET= install - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 14 -OPTIONS_DEFINE+= LZ4 -OPTIONS_DEFAULT+= LZ4 -LZ4_DESC= Build with LZ4 compression support -LZ4_CONFIGURE_WITH= lz4 -LZ4_LIB_DEPENDS+= liblz4.so:archivers/liblz4 -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 11 -OPTIONS_DEFINE+= LLVM -OPTIONS_DEFAULT+= LLVM -LLVM_DESC= Build with support for JIT-compiling expressions -OPTIONS_EXCLUDE+= ${OPTIONS_EXCLUDE_${ARCH}_${OSREL:R}} -OPTIONS_EXCLUDE_powerpc64_12= LLVM -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10 -# See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info -OPTIONS_DEFINE+= ICU -ICU_DESC= Use ICU for unicode collation -.else -CONFIGURE_ARGS+=--with-icu -LIB_DEPENDS+= libicudata.so:devel/icu -USES+= pkgconfig -.endif - -# See http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76999 for more info -# (requires dump/restore if modified.) -OPTIONS_DEFINE+= INTDATE -INTDATE_DESC= Builds with 64-bit date/time type -OPTIONS_DEFAULT+= INTDATE -.endif - -.if !defined(SLAVE_ONLY) -OPTIONS_DEFINE+= NLS PAM GSSAPI OPTIMIZED_CFLAGS DEBUG DOCS -. if ${DISTVERSION:R} == 9.2 || ${DISTVERSION:R} == 9.3 - OPTIONS_RADIO= KRB5 - OPTIONS_RADIO_KRB5= MIT_KRB5 HEIMDAL_KRB5 -. endif - -KRB5_DESC= Build with kerberos provider support -NLS_DESC= Use internationalized messages -PAM_DESC= Build with PAM Support -MIT_KRB5_DESC= Build with MIT kerberos support -HEIMDAL_KRB5_DESC= Builds with Heimdal kerberos -GSSAPI_DESC= Build with GSSAPI support -OPTIMIZED_CFLAGS_DESC= Builds with compiler optimizations (-O3) - -OPTIONS_DEFINE+= SSL -SSL_DESC= Build with OpenSSL support - -OPTIONS_DEFAULT+= SSL - -GSSAPI_CONFIGURE_WITH= gssapi -.endif # !SLAVE_ONLY - -.if defined(CLIENT_ONLY) -LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred -LIBEDIT_USES= libedit -LIBEDIT_USES_OFF= readline -.endif # CLIENT_ONLY - -SSL_USES= ssl -SSL_CONFIGURE_WITH= openssl - -PAM_CONFIGURE_WITH= pam - -XML_CONFIGURE_WITH= libxml -XML_LIB_DEPENDS= libxml2.so:textproc/libxml2 - -TZDATA_CONFIGURE_OFF= --with-system-tzdata=/usr/share/zoneinfo - -INTDATE_CONFIGURE_OFF= --disable-integer-datetimes - -NLS_CONFIGURE_ENABLE= nls -NLS_USES= gettext - -LDAP_CONFIGURE_WITH= ldap -LDAP_USE= OPENLDAP=yes - -OPTIMIZED_CFLAGS_CFLAGS=-O3 -funroll-loops - -DEBUG_CONFIGURE_ENABLE= debug - -PLIST_SUB+= PG_USER=${PG_USER} \ - PG_USER_regex=[[:<:]]${PG_USER}[[:>:]] \ - PG_GROUP=${PG_GROUP} \ - PG_GROUP_regex=[[:<:]]${PG_GROUP}[[:>:]] -SUB_LIST+= PG_GROUP=${PG_GROUP} \ - PG_USER=${PG_USER} \ - PG_UID=${PG_UID} - -.include <bsd.port.options.mk> - -.if ${ARCH} == "i386" -USES+= compiler:gcc-c++11-lib -.else -USES+= compiler -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10 -. if ( defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} ) || make(makesum) -USES+= autoreconf -CONFIGURE_ARGS+=--with-icu -PATCH_SITES+= http://people.freebsd.org/~girgen/postgresql-icu/:icu -PATCHFILES+= ${ICU_PATCHFILE}:icu -LIB_DEPENDS+= libicudata.so:devel/icu -. endif -.endif # server && version < 10 - -.if !defined(SLAVE_ONLY) - -PATCH_DIST_STRIP=-p1 - -.if ${PORT_OPTIONS:MGSSAPI} -.if empty(PORT_OPTIONS:MMIT_KRB5) && empty(PORT_OPTIONS:MHEIMDAL_KRB5) -# Kerberos libraries will pull the proper GSSAPI library -# via linker dependencies, but otherwise we must specify -# it explicitely: ld --as-needed is used for compilation, -# so configure's -lgssapi_krb5 won't go. -LDFLAGS+= -lgssapi -LDFLAGS_SL+= -lgssapi -.endif -.endif - -. if ${PORT_OPTIONS:MMIT_KRB5} -. if defined(IGNORE_WITH_SRC_KRB5) && (exists(/usr/lib/libkrb5.so) || exists(/usr/bin/krb5-config)) -IGNORE= requires that you remove heimdal\'s /usr/bin/krb5-config and /usr/lib/libkrb5.so*, and set NO_KERBEROS=true in /etc/src.conf to build successfully with MIT-KRB -. else -CONFIGURE_ARGS+=--with-krb5 -# Allow defining a home built MIT Kerberos by setting KRB5_HOME -. if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) && exists(${KRB5_HOME}/bin/krb5-config) -LIB_DEPENDS+= libkrb5.so.3:security/krb5 -. endif -. endif -. endif - -. if ${PORT_OPTIONS:MHEIMDAL_KRB5} -CONFIGURE_ARGS+=--with-krb5 -. endif - -.endif # !SLAVE_ONLY - -# For testing files in FILESDIR -.include <bsd.port.pre.mk> - -.if ${PORT_OPTIONS:MLLVM} -CONFIGURE_ARGS+= --with-llvm -BUILD_DEPENDS+= llvm${PG_LLVM_VERSION}>0:devel/llvm${PG_LLVM_VERSION} -BUILD_DEPENDS+= llvm-config${PG_LLVM_VERSION}:devel/llvm${PG_LLVM_VERSION} -RUN_DEPENDS+= llvm-config${PG_LLVM_VERSION}:devel/llvm${PG_LLVM_VERSION} -CONFIGURE_ENV+= LLVM_CONFIG=${LOCALBASE}/bin/llvm-config${PG_LLVM_VERSION} -.endif - -# Convert LLVM_DEFAULT to COMPILER_VERSION format to make it -# suitable for version comparison. -.if ${LLVM_DEFAULT} >= 70 && ${LLVM_DEFAULT} <= 90 -LLVM_DEFAULT_VERSION= ${LLVM_DEFAULT} -.else -LLVM_DEFAULT_VERSION= ${LLVM_DEFAULT}0 -.endif - -# Convert COMPILER_VERSION to LLVM_DEFAULT format to make it -# suitable for LLVM port name. -# All supported FreeBSD versions have Clang 10.0.1 or later. -LLVM_PORT_SUFFIX= ${COMPILER_VERSION:C/.$//} - -# sync LLVM to the preferred compiler if possible -# or else use a lower version compiler that is compatible -.if ${COMPILER_VERSION} > ${LLVM_DEFAULT_VERSION} -# LLVM versions in ports are, in order, 70, 80 90, 10, 11, 12... where 10 > 90. [sic] -. if ${LLVM_PORT_SUFFIX} < 70 -# PR 261976 postgresql fails to build with LLVM 14 -. if ${LLVM_PORT_SUFFIX} > 13 -PG_LLVM_VERSION=13 -PG_COMPILER_VERSION=13 -. else -PG_LLVM_VERSION=${LLVM_PORT_SUFFIX} -PG_COMPILER_VERSION=${LLVM_PORT_SUFFIX} -. endif -. else -PG_LLVM_VERSION=11 -PG_COMPILER_VERSION=11 -. endif -.else -. if ${LLVM_PORT_SUFFIX} > 13 -PG_LLVM_VERSION=13 -PG_COMPILER_VERSION=13 -. else -PG_LLVM_VERSION=${LLVM_DEFAULT} -PG_COMPILER_VERSION=${LLVM_PORT_SUFFIX} -. endif -.endif - -.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 11 -. if defined(SERVER_ONLY) && ${PORT_OPTIONS:MLLVM} -INSTALL_DIRS+= src/backend/jit/llvm -. if ${LLVM_PORT_SUFFIX} != ${PG_COMPILER_VERSION} -LLVM_CONFIGURE_ARGS?= CC=${LOCALBASE}/bin/clang${PG_COMPILER_VERSION} -. endif -. endif -.endif - -.if defined(SERVER_ONLY) -pre-build: - @${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL -.endif - -.if !defined(NO_BUILD) && !target(do-build) - -do-build: - @ cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks - @ for dir in ${BUILD_DIRS}; do \ - cd ${WRKSRC}/$${dir} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ; \ - done - -. if exists(${FILESDIR}/pkg-message${COMPONENT}.in) -SUB_FILES+= pkg-message${COMPONENT} -PKGMESSAGE= ${WRKSRC}/pkg-message${COMPONENT} -. endif -. if exists(${FILESDIR}/pkg-install${COMPONENT}.in) -SUB_FILES+= pkg-install${COMPONENT} -. endif - -post-patch: -. if defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} - @${REINPLACE_CMD} \ - -e '/m4_PACKAGE_VERSION/s/\[2\.6[0-9]\]/m4_defn([m4_PACKAGE_VERSION])/' \ - -e '/icu/s/_57//' \ - ${WRKSRC}/configure.in -. elif defined(CLIENT_ONLY) && !defined(OPENSSL_PORT) - @${REINPLACE_CMD} \ - -e '/^PKG_CONFIG_REQUIRES_PRIVATE = libssl libcrypto/d' \ - ${WRKSRC}/src/interfaces/libpq/Makefile -. endif - -do-install: - @for dir in ${INSTALL_DIRS}; do \ - cd ${WRKSRC}/$${dir} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${INSTALL_TARGET}; \ - done -. if defined(SERVER_ONLY) - @ ${MKDIR} ${STAGEDIR}${PREFIX}/share/postgresql ;\ - ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ;\ - ${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \ - ${STAGEDIR}${PREFIX}/etc/periodic/daily -. endif # SERVER_ONLY -. if defined(CLIENT_ONLY) - @ cd ${WRKSRC}/src && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} install-local -. endif - @ if [ -r ${PKGMESSAGE} ]; then \ - ${MKDIR} ${STAGEDIR}${DOCSDIR} ;\ - ${INSTALL_DATA} ${PKGMESSAGE} ${STAGEDIR}${DOCSDIR}/README${COMPONENT} ;\ - fi -.endif # !NO_BUILD - -.if defined(SERVER_ONLY) -check: - @if [ `id -u` != 0 ] ; then \ - ${ECHO} "Running postgresql regressions tests" ;\ - cd ${WRKSRC}; ${MAKE_CMD} check ;\ - else \ - ${ECHO} "You cannot run regression tests when postgresql is built as user root." ; \ - ${ECHO} "Clean and rebuild the port as a regular user to run the tests." ;\ - fi -.endif +PG_USER?= postgres +PG_GROUP?= postgres +PG_UID?= 770 -.include <bsd.port.post.mk> +.include "${.CURDIR}/../postgresql15-server/Makefile" diff --git a/databases/postgresql14-server/files/postgresql.in b/databases/postgresql14-server/files/postgresql.in index 06673e8e4e63..444ab22e89da 100644 --- a/databases/postgresql14-server/files/postgresql.in +++ b/databases/postgresql14-server/files/postgresql.in @@ -8,7 +8,7 @@ # # postgresql_enable="YES" # # optional -# postgresql_data="/var/db/%%PG_USER%%/data14" +# postgresql_data="/var/db/%%PG_USER%%/data%%PG_VERSION%%" # postgresql_flags="-w -s -m fast" # postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" # postgresql_login_class="default" @@ -32,7 +32,7 @@ load_rc_config postgresql postgresql_enable=${postgresql_enable:-"NO"} postgresql_flags=${postgresql_flags:-"-w -s -m fast"} postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data14"} +eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data%%PG_VERSION%%"} postgresql_login_class=${postgresql_login_class:-"default"} postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} diff --git a/databases/postgresql14-server/pkg-plist-client b/databases/postgresql14-server/pkg-plist-client index 3e7b016bd27e..bdd2a30d69cd 100644 --- a/databases/postgresql14-server/pkg-plist-client +++ b/databases/postgresql14-server/pkg-plist-client @@ -1176,103 +1176,103 @@ man/man7/VACUUM.7.gz man/man7/VALUES.7.gz man/man7/WITH.7.gz %%PORTDOCS%%%%DOCSDIR%%/README-client -%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-14.mo +%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo %%DATADIR%%/pg_service.conf.sample %%DATADIR%%/psqlrc.sample diff --git a/databases/postgresql14-server/pkg-plist-server b/databases/postgresql14-server/pkg-plist-server index 4996dd8c31ad..daf76de91817 100644 --- a/databases/postgresql14-server/pkg-plist-server +++ b/databases/postgresql14-server/pkg-plist-server @@ -759,174 +759,174 @@ lib/postgresql/utf8_and_win.so %%DATADIR%%/system_constraints.sql %%DATADIR%%/system_functions.sql %%DATADIR%%/system_views.sql -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-14.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/postgres-%%PG_VERSION%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_VERSION%%.mo %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra %%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa @@ -1337,7 +1337,7 @@ lib/postgresql/utf8_and_win.so %%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-%%PG_VERSION%% %%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-2 %%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-3 %%TZDATA%%%%DATADIR%%/timezone/Etc/GMT-4 |