Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Sep 2018 15:57:06 +0000 (UTC)
From:      Palle Girgensohn <girgen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r480671 - in branches/2018Q3: . databases/postgresql10-server databases/postgresql93-server databases/postgresql94-server databases/postgresql95-server databases/postgresql96-server
Message-ID:  <201809251557.w8PFv6Bu012713@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: girgen
Date: Tue Sep 25 15:57:06 2018
New Revision: 480671
URL: https://svnweb.freebsd.org/changeset/ports/480671

Log:
  MFH: r476819
  
  The PostgreSQL Global Development Group has released an update to all supported
  versions of our database system, including 10.5, 9.6.10, 9.5.14, 9.4.19,
  9.3.24.  This release fixes two security issues as well as bugs reported over
  the last three months.
  
  If you have untrusted users accessing your system and you are either running
  PostgreSQL 9.5 or a newer version OR have installed the "dblink" or
  "postgres_fdw" extensions, you must apply this update as soon as possible. All
  other users can upgrade at the next convenient downtime.
  
  Please note that PostgreSQL changed its versioning scheme with the release of
  version 10.0, so updating to version 10.5 from any 10.x release is considered a
  minor update.
  
  The PostgreSQL Global Development Group also announces that the third beta
  release of PostgreSQL 11 is now available for download. This release contains
  previews of all features that will be available in the final release of
  PostgreSQL 11 (though some details of the release could change before then) as
  well as bug fixes that were reported during the second beta.
  
  This release also changes the default option for the server packages to *not*
  include XML support per default. If you need this, please check the XML option
  knob and build the port.
  
  Releasenotes:	https://www.postgresql.org/about/news/1878/
  PR:		229523, 198588
  Security:	96eab874-9c79-11e8-b34b-6cc21735f730
  Security:	CVE-2018-10915, CVE-2018-10925
  
  Approved by:	ports-secteam

Modified:
  branches/2018Q3/UPDATING
  branches/2018Q3/databases/postgresql10-server/Makefile
  branches/2018Q3/databases/postgresql10-server/distinfo
  branches/2018Q3/databases/postgresql10-server/pkg-plist-client
  branches/2018Q3/databases/postgresql10-server/pkg-plist-server
  branches/2018Q3/databases/postgresql93-server/Makefile
  branches/2018Q3/databases/postgresql93-server/distinfo
  branches/2018Q3/databases/postgresql93-server/pkg-plist-client
  branches/2018Q3/databases/postgresql94-server/Makefile
  branches/2018Q3/databases/postgresql94-server/distinfo
  branches/2018Q3/databases/postgresql94-server/pkg-plist-client
  branches/2018Q3/databases/postgresql94-server/pkg-plist-server
  branches/2018Q3/databases/postgresql95-server/Makefile
  branches/2018Q3/databases/postgresql95-server/distinfo
  branches/2018Q3/databases/postgresql95-server/pkg-plist-client
  branches/2018Q3/databases/postgresql95-server/pkg-plist-server
  branches/2018Q3/databases/postgresql96-server/Makefile
  branches/2018Q3/databases/postgresql96-server/distinfo
  branches/2018Q3/databases/postgresql96-server/pkg-plist-client
  branches/2018Q3/databases/postgresql96-server/pkg-plist-server
Directory Properties:
  branches/2018Q3/   (props changed)

Modified: branches/2018Q3/UPDATING
==============================================================================
--- branches/2018Q3/UPDATING	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/UPDATING	Tue Sep 25 15:57:06 2018	(r480671)
@@ -5,6 +5,15 @@ 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.
 
+20180810:
+  AFFECTS: databases/postgresql??-server
+  AUTHOR: girgen@FreeBSD.org
+
+  The PostgreSQL server packages are no longer built with support for the XML
+  datatype per default. To retain support for the XML datatype you should build
+  the port and check the XML option in the option dialog. The reason for this
+  is the bad security reputation of libxml2.
+ 
 20180704:
   AFFECTS: users of www/gitlab
   AUTHOR: mfechner@FreeBSD.org

Modified: branches/2018Q3/databases/postgresql10-server/Makefile
==============================================================================
--- branches/2018Q3/databases/postgresql10-server/Makefile	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql10-server/Makefile	Tue Sep 25 15:57:06 2018	(r480671)
@@ -2,8 +2,7 @@
 # $FreeBSD$
 
 PORTNAME?=	postgresql
-DISTVERSION?=	10.4
-PORTREVISION?=	1
+DISTVERSION?=	10.5
 CATEGORIES?=	databases
 MASTER_SITES=	PGSQL/source/v${DISTVERSION}
 PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}
@@ -14,9 +13,9 @@ COMMENT?=	PostgreSQL is the most advanced open-source 
 LICENSE=	PostgreSQL
 
 .if ${DISTVERSION:C/([0-9]*).*/\1/} == 10
-CONFLICTS+=	${PORTNAME}*-9.*
+CONFLICTS+=	${PORTNAME}9*
 .else
-CONFLICTS+=	${PORTNAME}*-9.[^${PORTVERSION:R:E}].* ${PORTNAME}10*
+CONFLICTS+=	${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}10*
 .endif
 
 WRKSRC=		${WRKDIR}/postgresql-${DISTVERSION}
@@ -29,7 +28,6 @@ USES+=		tar:bzip2 cpe
 .if !defined(NO_BUILD)
 USES+=	gmake
 GNU_CONFIGURE=	yes
-LLD_UNSAFE=	yes
 .endif
 
 PG_USER?=	postgres
@@ -102,7 +100,7 @@ USES+=		pkgconfig
 # (requires dump/restore if modified.)
 OPTIONS_DEFINE+=	INTDATE
 INTDATE_DESC=	Builds with 64-bit date/time type
-OPTIONS_DEFAULT+=	XML TZDATA INTDATE
+OPTIONS_DEFAULT+=	TZDATA INTDATE
 .endif
 
 .if !defined(SLAVE_ONLY)

Modified: branches/2018Q3/databases/postgresql10-server/distinfo
==============================================================================
--- branches/2018Q3/databases/postgresql10-server/distinfo	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql10-server/distinfo	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1525980865
-SHA256 (postgresql/postgresql-10.4.tar.bz2) = 1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048
-SIZE (postgresql/postgresql-10.4.tar.bz2) = 20201838
+TIMESTAMP = 1533847537
+SHA256 (postgresql/postgresql-10.5.tar.bz2) = 6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011
+SIZE (postgresql/postgresql-10.5.tar.bz2) = 20284578

Modified: branches/2018Q3/databases/postgresql10-server/pkg-plist-client
==============================================================================
--- branches/2018Q3/databases/postgresql10-server/pkg-plist-client	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql10-server/pkg-plist-client	Tue Sep 25 15:57:06 2018	(r480671)
@@ -25,6 +25,7 @@ include/pg_config.h
 include/pg_config_ext.h
 include/pg_config_manual.h
 include/pg_config_os.h
+include/pgtypes.h
 include/pgtypes_date.h
 include/pgtypes_error.h
 include/pgtypes_interval.h
@@ -1010,6 +1011,7 @@ man/man7/WITH.7.gz
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_config-10.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-10.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/psql-10.mo
 %%NLS%%share/locale/de/LC_MESSAGES/ecpg-10.mo
 %%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-10.mo
 %%NLS%%share/locale/de/LC_MESSAGES/libpq5-10.mo

Modified: branches/2018Q3/databases/postgresql10-server/pkg-plist-server
==============================================================================
--- branches/2018Q3/databases/postgresql10-server/pkg-plist-server	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql10-server/pkg-plist-server	Tue Sep 25 15:57:06 2018	(r480671)
@@ -62,8 +62,16 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql.control
 %%DATADIR%%/postgres.shdescription
 %%NLS%%share/locale/cs/LC_MESSAGES/initdb-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-10.mo
 %%NLS%%share/locale/de/LC_MESSAGES/initdb-10.mo
 %%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo

Modified: branches/2018Q3/databases/postgresql93-server/Makefile
==============================================================================
--- branches/2018Q3/databases/postgresql93-server/Makefile	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql93-server/Makefile	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,8 +1,7 @@
 # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.3.23
-PORTREVISION=	0
+DISTVERSION?=	9.3.24
 PKGNAMESUFFIX?=	${DISTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql@FreeBSD.org

Modified: branches/2018Q3/databases/postgresql93-server/distinfo
==============================================================================
--- branches/2018Q3/databases/postgresql93-server/distinfo	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql93-server/distinfo	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1525980865
-SHA256 (postgresql/postgresql-9.3.23.tar.bz2) = 1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb
-SIZE (postgresql/postgresql-9.3.23.tar.bz2) = 17033683
+TIMESTAMP = 1533847538
+SHA256 (postgresql/postgresql-9.3.24.tar.bz2) = 8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9
+SIZE (postgresql/postgresql-9.3.24.tar.bz2) = 17042985
 SHA256 (postgresql/pg-9314-icu-2016-08-10.diff.gz) = 4be31ad9899d5caf9f57ad7ebfc0d14f0fcf58ad539c82fb353b016fb76c0c30
 SIZE (postgresql/pg-9314-icu-2016-08-10.diff.gz) = 5583

Modified: branches/2018Q3/databases/postgresql93-server/pkg-plist-client
==============================================================================
--- branches/2018Q3/databases/postgresql93-server/pkg-plist-client	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql93-server/pkg-plist-client	Tue Sep 25 15:57:06 2018	(r480671)
@@ -26,6 +26,7 @@ include/pg_config.h
 include/pg_config_ext.h
 include/pg_config_manual.h
 include/pg_config_os.h
+include/pgtypes.h
 include/pgtypes_date.h
 include/pgtypes_error.h
 include/pgtypes_interval.h

Modified: branches/2018Q3/databases/postgresql94-server/Makefile
==============================================================================
--- branches/2018Q3/databases/postgresql94-server/Makefile	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql94-server/Makefile	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,8 +1,7 @@
 # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.4.18
-PORTREVISION=	0
+DISTVERSION?=	9.4.19
 PKGNAMESUFFIX?=	${PORTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql@FreeBSD.org

Modified: branches/2018Q3/databases/postgresql94-server/distinfo
==============================================================================
--- branches/2018Q3/databases/postgresql94-server/distinfo	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql94-server/distinfo	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1525980866
-SHA256 (postgresql/postgresql-9.4.18.tar.bz2) = 428337f2b2f5e3ea21b8a44f88eb89c99a07a324559b99aebe777c9abdf4c4c0
-SIZE (postgresql/postgresql-9.4.18.tar.bz2) = 17828085
+TIMESTAMP = 1533847539
+SHA256 (postgresql/postgresql-9.4.19.tar.bz2) = 03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b
+SIZE (postgresql/postgresql-9.4.19.tar.bz2) = 17879273
 SHA256 (postgresql/pg-949-icu-2016-10-02.diff.gz) = 34612e685a79874db04bc6b66c700bfc6412042840c532eef0da7832d1f70d43
 SIZE (postgresql/pg-949-icu-2016-10-02.diff.gz) = 5289

Modified: branches/2018Q3/databases/postgresql94-server/pkg-plist-client
==============================================================================
--- branches/2018Q3/databases/postgresql94-server/pkg-plist-client	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql94-server/pkg-plist-client	Tue Sep 25 15:57:06 2018	(r480671)
@@ -26,6 +26,7 @@ include/pg_config.h
 include/pg_config_ext.h
 include/pg_config_manual.h
 include/pg_config_os.h
+include/pgtypes.h
 include/pgtypes_date.h
 include/pgtypes_error.h
 include/pgtypes_interval.h

Modified: branches/2018Q3/databases/postgresql94-server/pkg-plist-server
==============================================================================
--- branches/2018Q3/databases/postgresql94-server/pkg-plist-server	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql94-server/pkg-plist-server	Tue Sep 25 15:57:06 2018	(r480671)
@@ -54,6 +54,7 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
 %%DATADIR%%/extension/plpgsql.control
 %%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.4.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.4.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.4.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.4.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.4.mo

Modified: branches/2018Q3/databases/postgresql95-server/Makefile
==============================================================================
--- branches/2018Q3/databases/postgresql95-server/Makefile	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql95-server/Makefile	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,8 +1,7 @@
 # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.5.13
-PORTREVISION=	0
+DISTVERSION?=	9.5.14
 PKGNAMESUFFIX?=	${PORTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql@FreeBSD.org

Modified: branches/2018Q3/databases/postgresql95-server/distinfo
==============================================================================
--- branches/2018Q3/databases/postgresql95-server/distinfo	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql95-server/distinfo	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1525980866
-SHA256 (postgresql/postgresql-9.5.13.tar.bz2) = 5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
-SIZE (postgresql/postgresql-9.5.13.tar.bz2) = 18600185
+TIMESTAMP = 1533847546
+SHA256 (postgresql/postgresql-9.5.14.tar.bz2) = 3e2cd5ea0117431f72c9917c1bbad578ea68732cb284d1691f37356ca0301a4d
+SIZE (postgresql/postgresql-9.5.14.tar.bz2) = 18687959
 SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365
 SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952

Modified: branches/2018Q3/databases/postgresql95-server/pkg-plist-client
==============================================================================
--- branches/2018Q3/databases/postgresql95-server/pkg-plist-client	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql95-server/pkg-plist-client	Tue Sep 25 15:57:06 2018	(r480671)
@@ -27,6 +27,7 @@ include/pg_config.h
 include/pg_config_ext.h
 include/pg_config_manual.h
 include/pg_config_os.h
+include/pgtypes.h
 include/pgtypes_date.h
 include/pgtypes_error.h
 include/pgtypes_interval.h

Modified: branches/2018Q3/databases/postgresql95-server/pkg-plist-server
==============================================================================
--- branches/2018Q3/databases/postgresql95-server/pkg-plist-server	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql95-server/pkg-plist-server	Tue Sep 25 15:57:06 2018	(r480671)
@@ -61,9 +61,11 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql.control
 %%DATADIR%%/postgres.shdescription
 %%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.5.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.5.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.5.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.5.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.5.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-9.5.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.5.mo
 %%NLS%%share/locale/de/LC_MESSAGES/initdb-9.5.mo
 %%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.5.mo

Modified: branches/2018Q3/databases/postgresql96-server/Makefile
==============================================================================
--- branches/2018Q3/databases/postgresql96-server/Makefile	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql96-server/Makefile	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,8 +1,7 @@
 # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.6.9
-PORTREVISION?=	1
+DISTVERSION?=	9.6.10
 PKGNAMESUFFIX?=	${PORTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql@FreeBSD.org

Modified: branches/2018Q3/databases/postgresql96-server/distinfo
==============================================================================
--- branches/2018Q3/databases/postgresql96-server/distinfo	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql96-server/distinfo	Tue Sep 25 15:57:06 2018	(r480671)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1525980867
-SHA256 (postgresql/postgresql-9.6.9.tar.bz2) = b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
-SIZE (postgresql/postgresql-9.6.9.tar.bz2) = 19566222
+TIMESTAMP = 1533847550
+SHA256 (postgresql/postgresql-9.6.10.tar.bz2) = 8615acc56646401f0ede97a767dfd27ce07a8ae9c952afdb57163b7234fe8426
+SIZE (postgresql/postgresql-9.6.10.tar.bz2) = 19991204
 SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e
 SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998

Modified: branches/2018Q3/databases/postgresql96-server/pkg-plist-client
==============================================================================
--- branches/2018Q3/databases/postgresql96-server/pkg-plist-client	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql96-server/pkg-plist-client	Tue Sep 25 15:57:06 2018	(r480671)
@@ -27,6 +27,7 @@ include/pg_config.h
 include/pg_config_ext.h
 include/pg_config_manual.h
 include/pg_config_os.h
+include/pgtypes.h
 include/pgtypes_date.h
 include/pgtypes_error.h
 include/pgtypes_interval.h
@@ -1018,7 +1019,11 @@ man/man7/WITH.7.gz
 %%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-9.6.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-9.6.mo
 %%NLS%%share/locale/ru/LC_MESSAGES/psql-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-9.6.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-9.6.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-9.6.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/psql-9.6.mo
 %%NLS%%share/locale/ta/LC_MESSAGES/pg_config-9.6.mo
@@ -1026,6 +1031,9 @@ man/man7/WITH.7.gz
 %%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-9.6.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/libpq5-9.6.mo
 %%NLS%%share/locale/tr/LC_MESSAGES/pg_config-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/psql-9.6.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-9.6.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.6.mo
 %%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-9.6.mo

Modified: branches/2018Q3/databases/postgresql96-server/pkg-plist-server
==============================================================================
--- branches/2018Q3/databases/postgresql96-server/pkg-plist-server	Tue Sep 25 15:47:26 2018	(r480670)
+++ branches/2018Q3/databases/postgresql96-server/pkg-plist-server	Tue Sep 25 15:57:06 2018	(r480671)
@@ -61,9 +61,11 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql.control
 %%DATADIR%%/postgres.shdescription
 %%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-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/pg_rewind-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
@@ -140,9 +142,21 @@ lib/libpgcommon.a
 %%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_basebackup-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/sv/LC_MESSAGES/pg_rewind-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/postgres-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/initdb-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-9.6.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/postgres-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



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