Date: Sun, 17 May 2020 20:37:04 +0000 (UTC) From: Palle Girgensohn <girgen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535676 - in head/databases: postgresql10-plperl postgresql10-plpython postgresql10-server postgresql11-server postgresql12-plperl postgresql12-plpython postgresql12-server postgresql94... Message-ID: <202005172037.04HKb4rX087129@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: girgen Date: Sun May 17 20:37:04 2020 New Revision: 535676 URL: https://svnweb.freebsd.org/changeset/ports/535676 Log: The PostgreSQL Global Development Group has released an update to all supported versions of our database system, including 12.3, 11.8, 10.13, 9.6.18, and 9.5.22. This release fixes one security issue found in the PostgreSQL server and over 75 bugs reported over the last three months. Please plan to update at your earliest convenience. Update the backup warning text. [1] Add plpython and plperl libs for hstore, jsonb and ltree for the versions where they exist. These libs are added to the postgresql??-plpython and -plperl ports, inspired by [2]. PR: 237910 [1], 245246 [2] Submitted by: Francesco [1], Loïc Bartoletti [2] Modified: head/databases/postgresql10-plperl/Makefile head/databases/postgresql10-plpython/Makefile head/databases/postgresql10-server/Makefile head/databases/postgresql10-server/distinfo head/databases/postgresql10-server/pkg-plist-plperl head/databases/postgresql10-server/pkg-plist-plpython head/databases/postgresql10-server/pkg-plist-server head/databases/postgresql11-server/Makefile head/databases/postgresql11-server/distinfo head/databases/postgresql11-server/pkg-plist-plperl head/databases/postgresql11-server/pkg-plist-plpython head/databases/postgresql11-server/pkg-plist-server head/databases/postgresql12-plperl/Makefile head/databases/postgresql12-plpython/Makefile head/databases/postgresql12-server/Makefile head/databases/postgresql12-server/distinfo head/databases/postgresql12-server/pkg-install-server head/databases/postgresql12-server/pkg-plist-client head/databases/postgresql12-server/pkg-plist-plperl head/databases/postgresql12-server/pkg-plist-plpython head/databases/postgresql12-server/pkg-plist-server head/databases/postgresql94-plpython/Makefile head/databases/postgresql95-plperl/Makefile head/databases/postgresql95-plpython/Makefile head/databases/postgresql95-server/Makefile head/databases/postgresql95-server/distinfo head/databases/postgresql95-server/pkg-plist-plperl head/databases/postgresql95-server/pkg-plist-plpython head/databases/postgresql95-server/pkg-plist-server head/databases/postgresql96-plperl/Makefile head/databases/postgresql96-plpython/Makefile head/databases/postgresql96-server/Makefile head/databases/postgresql96-server/distinfo head/databases/postgresql96-server/pkg-plist-plperl head/databases/postgresql96-server/pkg-plist-plpython head/databases/postgresql96-server/pkg-plist-server Modified: head/databases/postgresql10-plperl/Makefile ============================================================================== --- head/databases/postgresql10-plperl/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-plperl/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -3,4 +3,6 @@ WANT_PGSQL_VER= 10 +INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl + .include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: head/databases/postgresql10-plpython/Makefile ============================================================================== --- head/databases/postgresql10-plpython/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-plpython/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -2,4 +2,6 @@ WANT_PGSQL_VER= 10 +INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython + .include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: head/databases/postgresql10-server/Makefile ============================================================================== --- head/databases/postgresql10-server/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-server/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier <scrappy@FreeBSD.org> # $FreeBSD$ -DISTVERSION?= 10.12 +DISTVERSION?= 10.13 # 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?= 2 Modified: head/databases/postgresql10-server/distinfo ============================================================================== --- head/databases/postgresql10-server/distinfo Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-server/distinfo Sun May 17 20:37:04 2020 (r535676) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581419815 -SHA256 (postgresql/postgresql-10.12.tar.bz2) = 388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7 -SIZE (postgresql/postgresql-10.12.tar.bz2) = 19020488 +TIMESTAMP = 1589614618 +SHA256 (postgresql/postgresql-10.13.tar.bz2) = 4d701f450cd92ffb123cf6c296e9656abbc2ab7ea6507894ff1e2475ae0754e1 +SIZE (postgresql/postgresql-10.13.tar.bz2) = 19028339 Modified: head/databases/postgresql10-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql10-server/pkg-plist-plperl Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-server/pkg-plist-plperl Sun May 17 20:37:04 2020 (r535676) @@ -8,3 +8,8 @@ include/postgresql/server/ppport.h %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl lib/postgresql/plperl.so +lib/postgresql/hstore_plperl.so +%%DATADIR%%/extension/hstore_plperl--1.0.sql +%%DATADIR%%/extension/hstore_plperl.control +%%DATADIR%%/extension/hstore_plperlu--1.0.sql +%%DATADIR%%/extension/hstore_plperlu.control Modified: head/databases/postgresql10-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql10-server/pkg-plist-plpython Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-server/pkg-plist-plpython Sun May 17 20:37:04 2020 (r535676) @@ -12,3 +12,17 @@ include/postgresql/server/plpython.h %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control +lib/postgresql/hstore_plpython3.so +lib/postgresql/ltree_plpython3.so +%%DATADIR%%/extension/hstore_plpython2u--1.0.sql +%%DATADIR%%/extension/hstore_plpython2u.control +%%DATADIR%%/extension/hstore_plpython3u--1.0.sql +%%DATADIR%%/extension/hstore_plpython3u.control +%%DATADIR%%/extension/hstore_plpythonu--1.0.sql +%%DATADIR%%/extension/hstore_plpythonu.control +%%DATADIR%%/extension/ltree_plpython2u--1.0.sql +%%DATADIR%%/extension/ltree_plpython2u.control +%%DATADIR%%/extension/ltree_plpython3u--1.0.sql +%%DATADIR%%/extension/ltree_plpython3u.control +%%DATADIR%%/extension/ltree_plpythonu--1.0.sql +%%DATADIR%%/extension/ltree_plpythonu.control Modified: head/databases/postgresql10-server/pkg-plist-server ============================================================================== --- head/databases/postgresql10-server/pkg-plist-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql10-server/pkg-plist-server Sun May 17 20:37:04 2020 (r535676) @@ -389,6 +389,7 @@ lib/libpgcommon.a %%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/Nuuk %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung Modified: head/databases/postgresql11-server/Makefile ============================================================================== --- head/databases/postgresql11-server/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql11-server/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier <scrappy@FreeBSD.org> # $FreeBSD$ -DISTVERSION?= 11.7 +DISTVERSION?= 11.8 # 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?= 2 Modified: head/databases/postgresql11-server/distinfo ============================================================================== --- head/databases/postgresql11-server/distinfo Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql11-server/distinfo Sun May 17 20:37:04 2020 (r535676) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581419816 -SHA256 (postgresql/postgresql-11.7.tar.bz2) = 324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313 -SIZE (postgresql/postgresql-11.7.tar.bz2) = 19890063 +TIMESTAMP = 1589613918 +SHA256 (postgresql/postgresql-11.8.tar.bz2) = eaf2f4329ccc349c89e950761b81daf8c99bb8966abcab5665ccd6ee95c77ae2 +SIZE (postgresql/postgresql-11.8.tar.bz2) = 19922770 Modified: head/databases/postgresql11-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql11-server/pkg-plist-plperl Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql11-server/pkg-plist-plperl Sun May 17 20:37:04 2020 (r535676) @@ -9,3 +9,13 @@ include/postgresql/server/ppport.h %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl lib/postgresql/plperl.so +lib/postgresql/hstore_plperl.so +lib/postgresql/jsonb_plperl.so +%%DATADIR%%/extension/hstore_plperl--1.0.sql +%%DATADIR%%/extension/hstore_plperl.control +%%DATADIR%%/extension/hstore_plperlu--1.0.sql +%%DATADIR%%/extension/hstore_plperlu.control +%%DATADIR%%/extension/jsonb_plperl--1.0.sql +%%DATADIR%%/extension/jsonb_plperl.control +%%DATADIR%%/extension/jsonb_plperlu--1.0.sql +%%DATADIR%%/extension/jsonb_plperlu.control Modified: head/databases/postgresql11-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql11-server/pkg-plist-plpython Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql11-server/pkg-plist-plpython Sun May 17 20:37:04 2020 (r535676) @@ -24,3 +24,24 @@ lib/postgresql/pgxs/src/pl/plpython/regress-python3-ma %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control +lib/postgresql/hstore_plpython3.so +lib/postgresql/jsonb_plpython3.so +lib/postgresql/ltree_plpython3.so +%%DATADIR%%/extension/hstore_plpython2u--1.0.sql +%%DATADIR%%/extension/hstore_plpython2u.control +%%DATADIR%%/extension/hstore_plpython3u--1.0.sql +%%DATADIR%%/extension/hstore_plpython3u.control +%%DATADIR%%/extension/hstore_plpythonu--1.0.sql +%%DATADIR%%/extension/hstore_plpythonu.control +%%DATADIR%%/extension/jsonb_plpython2u--1.0.sql +%%DATADIR%%/extension/jsonb_plpython2u.control +%%DATADIR%%/extension/jsonb_plpython3u--1.0.sql +%%DATADIR%%/extension/jsonb_plpython3u.control +%%DATADIR%%/extension/jsonb_plpythonu--1.0.sql +%%DATADIR%%/extension/jsonb_plpythonu.control +%%DATADIR%%/extension/ltree_plpython2u--1.0.sql +%%DATADIR%%/extension/ltree_plpython2u.control +%%DATADIR%%/extension/ltree_plpython3u--1.0.sql +%%DATADIR%%/extension/ltree_plpython3u.control +%%DATADIR%%/extension/ltree_plpythonu--1.0.sql +%%DATADIR%%/extension/ltree_plpythonu.control Modified: head/databases/postgresql11-server/pkg-plist-server ============================================================================== --- head/databases/postgresql11-server/pkg-plist-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql11-server/pkg-plist-server Sun May 17 20:37:04 2020 (r535676) @@ -1056,6 +1056,7 @@ lib/libpgcommon.a %%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/Nuuk %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung Modified: head/databases/postgresql12-plperl/Makefile ============================================================================== --- head/databases/postgresql12-plperl/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-plperl/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -19,8 +19,8 @@ WANT_PGSQL_VER?=12 USES+= perl5 readline CONFIGURE_ARGS= --with-perl -BUILD_DIRS= src/backend src/pl/plperl -INSTALL_DIRS= src/pl/plperl +BUILD_DIRS= src/backend ${INSTALL_DIRS} +INSTALL_DIRS?= src/pl/plperl contrib/hstore_plperl contrib/jsonb_plperl SLAVE_ONLY= yes COMPONENT= -plperl Modified: head/databases/postgresql12-plpython/Makefile ============================================================================== --- head/databases/postgresql12-plpython/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-plpython/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -20,8 +20,8 @@ WANT_PYTHON_USE?= python CONFIGURE_ARGS= --with-python COMPONENT= -plpython -BUILD_DIRS= src/backend src/pl/plpython -INSTALL_DIRS= src/pl/plpython +BUILD_DIRS= src/backend ${INSTALL_DIRS} +INSTALL_DIRS?= src/pl/plpython contrib/hstore_plpython contrib/jsonb_plpython contrib/ltree_plpython SLAVE_ONLY= yes .include "${MASTERDIR}/Makefile" Modified: head/databases/postgresql12-server/Makefile ============================================================================== --- head/databases/postgresql12-server/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME?= postgresql -DISTVERSION?= 12.2 +DISTVERSION?= 12.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?= 2 +PORTREVISION?= 0 CATEGORIES?= databases MASTER_SITES= PGSQL/source/v${DISTVERSION} PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT} @@ -78,7 +78,6 @@ SUB_FILES+= 502.pgsql .if defined(CLIENT_ONLY) OPTIONS_DEFINE+=LIBEDIT DOCS LIBEDIT_DESC= Use non-GPL libedit instead of readline -USES+= perl5 .else MAKE_ENV+= PATH=${PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} Modified: head/databases/postgresql12-server/distinfo ============================================================================== --- head/databases/postgresql12-server/distinfo Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/distinfo Sun May 17 20:37:04 2020 (r535676) @@ -1,3 +1,3 @@ -TIMESTAMP = 1581419817 -SHA256 (postgresql/postgresql-12.2.tar.bz2) = ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de -SIZE (postgresql/postgresql-12.2.tar.bz2) = 20363545 +TIMESTAMP = 1589458709 +SHA256 (postgresql/postgresql-12.3.tar.bz2) = 94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41 +SIZE (postgresql/postgresql-12.3.tar.bz2) = 20439892 Modified: head/databases/postgresql12-server/pkg-install-server ============================================================================== --- head/databases/postgresql12-server/pkg-install-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/pkg-install-server Sun May 17 20:37:04 2020 (r535676) @@ -10,9 +10,10 @@ 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 + major revision (e.g. 9.6 -> 10), a dump and restore of all databases is required. This is *NOT* done by the port! + See https://www.postgresql.org/docs/current/upgrading.html =========================================== EOF } Modified: head/databases/postgresql12-server/pkg-plist-client ============================================================================== --- head/databases/postgresql12-server/pkg-plist-client Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/pkg-plist-client Sun May 17 20:37:04 2020 (r535676) @@ -1199,6 +1199,8 @@ man/man7/WITH.7.gz %%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/libpq5-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_config-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_dump-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pgscripts-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/psql-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/ecpg-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-12.mo Modified: head/databases/postgresql12-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql12-server/pkg-plist-plperl Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/pkg-plist-plperl Sun May 17 20:37:04 2020 (r535676) @@ -9,3 +9,13 @@ include/postgresql/server/ppport.h %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl lib/postgresql/plperl.so +lib/postgresql/hstore_plperl.so +lib/postgresql/jsonb_plperl.so +%%DATADIR%%/extension/hstore_plperl--1.0.sql +%%DATADIR%%/extension/hstore_plperl.control +%%DATADIR%%/extension/hstore_plperlu--1.0.sql +%%DATADIR%%/extension/hstore_plperlu.control +%%DATADIR%%/extension/jsonb_plperl--1.0.sql +%%DATADIR%%/extension/jsonb_plperl.control +%%DATADIR%%/extension/jsonb_plperlu--1.0.sql +%%DATADIR%%/extension/jsonb_plperlu.control Modified: head/databases/postgresql12-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql12-server/pkg-plist-plpython Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/pkg-plist-plpython Sun May 17 20:37:04 2020 (r535676) @@ -24,3 +24,24 @@ lib/postgresql/pgxs/src/pl/plpython/regress-python3-ma %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control +lib/postgresql/hstore_plpython3.so +lib/postgresql/jsonb_plpython3.so +lib/postgresql/ltree_plpython3.so +%%DATADIR%%/extension/hstore_plpython2u--1.0.sql +%%DATADIR%%/extension/hstore_plpython2u.control +%%DATADIR%%/extension/hstore_plpython3u--1.0.sql +%%DATADIR%%/extension/hstore_plpython3u.control +%%DATADIR%%/extension/hstore_plpythonu--1.0.sql +%%DATADIR%%/extension/hstore_plpythonu.control +%%DATADIR%%/extension/jsonb_plpython2u--1.0.sql +%%DATADIR%%/extension/jsonb_plpython2u.control +%%DATADIR%%/extension/jsonb_plpython3u--1.0.sql +%%DATADIR%%/extension/jsonb_plpython3u.control +%%DATADIR%%/extension/jsonb_plpythonu--1.0.sql +%%DATADIR%%/extension/jsonb_plpythonu.control +%%DATADIR%%/extension/ltree_plpython2u--1.0.sql +%%DATADIR%%/extension/ltree_plpython2u.control +%%DATADIR%%/extension/ltree_plpython3u--1.0.sql +%%DATADIR%%/extension/ltree_plpython3u.control +%%DATADIR%%/extension/ltree_plpythonu--1.0.sql +%%DATADIR%%/extension/ltree_plpythonu.control Modified: head/databases/postgresql12-server/pkg-plist-server ============================================================================== --- head/databases/postgresql12-server/pkg-plist-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql12-server/pkg-plist-server Sun May 17 20:37:04 2020 (r535676) @@ -873,10 +873,15 @@ lib/libpgcommon.a %%NLS%%share/locale/tr/LC_MESSAGES/postgres-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/initdb-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-12.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-12.mo @@ -1071,6 +1076,7 @@ lib/libpgcommon.a %%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/Nuuk %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung Modified: head/databases/postgresql94-plpython/Makefile ============================================================================== --- head/databases/postgresql94-plpython/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql94-plpython/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -2,4 +2,6 @@ WANT_PGSQL_VER= 9.4 +INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython + .include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: head/databases/postgresql95-plperl/Makefile ============================================================================== --- head/databases/postgresql95-plperl/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-plperl/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -3,4 +3,6 @@ WANT_PGSQL_VER= 9.5 +INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl + .include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: head/databases/postgresql95-plpython/Makefile ============================================================================== --- head/databases/postgresql95-plpython/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-plpython/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -2,4 +2,6 @@ WANT_PGSQL_VER= 9.5 +INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython + .include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: head/databases/postgresql95-server/Makefile ============================================================================== --- head/databases/postgresql95-server/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-server/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -1,7 +1,7 @@ # Created by: Marc G. Fournier <scrappy@FreeBSD.org> # $FreeBSD$ -DISTVERSION?= 9.5.21 +DISTVERSION?= 9.5.22 # 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 Modified: head/databases/postgresql95-server/distinfo ============================================================================== --- head/databases/postgresql95-server/distinfo Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-server/distinfo Sun May 17 20:37:04 2020 (r535676) @@ -1,5 +1,5 @@ -TIMESTAMP = 1581419819 -SHA256 (postgresql/postgresql-9.5.21.tar.bz2) = 7eb56e4fa877243c2df78adc5a0ef02f851060c282682b4bb97b854100fb732c -SIZE (postgresql/postgresql-9.5.21.tar.bz2) = 17640928 +TIMESTAMP = 1589613852 +SHA256 (postgresql/postgresql-9.5.22.tar.bz2) = 48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f +SIZE (postgresql/postgresql-9.5.22.tar.bz2) = 17667386 SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365 SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952 Modified: head/databases/postgresql95-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql95-server/pkg-plist-plperl Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-server/pkg-plist-plperl Sun May 17 20:37:04 2020 (r535676) @@ -7,4 +7,9 @@ include/postgresql/server/ppport.h %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl +lib/postgresql/hstore_plperl.so lib/postgresql/plperl.so +%%DATADIR%%/extension/hstore_plperl--1.0.sql +%%DATADIR%%/extension/hstore_plperl.control +%%DATADIR%%/extension/hstore_plperlu--1.0.sql +%%DATADIR%%/extension/hstore_plperlu.control Modified: head/databases/postgresql95-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql95-server/pkg-plist-plpython Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-server/pkg-plist-plpython Sun May 17 20:37:04 2020 (r535676) @@ -12,3 +12,17 @@ include/postgresql/server/plpython.h %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control +lib/postgresql/hstore_plpython3.so +lib/postgresql/ltree_plpython3.so +%%DATADIR%%/extension/hstore_plpython2u--1.0.sql +%%DATADIR%%/extension/hstore_plpython2u.control +%%DATADIR%%/extension/hstore_plpython3u--1.0.sql +%%DATADIR%%/extension/hstore_plpython3u.control +%%DATADIR%%/extension/hstore_plpythonu--1.0.sql +%%DATADIR%%/extension/hstore_plpythonu.control +%%DATADIR%%/extension/ltree_plpython2u--1.0.sql +%%DATADIR%%/extension/ltree_plpython2u.control +%%DATADIR%%/extension/ltree_plpython3u--1.0.sql +%%DATADIR%%/extension/ltree_plpython3u.control +%%DATADIR%%/extension/ltree_plpythonu--1.0.sql +%%DATADIR%%/extension/ltree_plpythonu.control Modified: head/databases/postgresql95-server/pkg-plist-server ============================================================================== --- head/databases/postgresql95-server/pkg-plist-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql95-server/pkg-plist-server Sun May 17 20:37:04 2020 (r535676) @@ -327,6 +327,7 @@ lib/libpgcommon.a %%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/Nuuk %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung Modified: head/databases/postgresql96-plperl/Makefile ============================================================================== --- head/databases/postgresql96-plperl/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-plperl/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -3,4 +3,6 @@ WANT_PGSQL_VER= 9.6 +INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl + .include "${.CURDIR}/../postgresql12-plperl/Makefile" Modified: head/databases/postgresql96-plpython/Makefile ============================================================================== --- head/databases/postgresql96-plpython/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-plpython/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -2,4 +2,6 @@ WANT_PGSQL_VER= 9.6 +INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython + .include "${.CURDIR}/../postgresql12-plpython/Makefile" Modified: head/databases/postgresql96-server/Makefile ============================================================================== --- head/databases/postgresql96-server/Makefile Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-server/Makefile Sun May 17 20:37:04 2020 (r535676) @@ -1,10 +1,10 @@ # Created by: Marc G. Fournier <scrappy@FreeBSD.org> # $FreeBSD$ -DISTVERSION?= 9.6.17 +DISTVERSION?= 9.6.18 # 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?= 2 +PORTREVISION?= 0 PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT} MAINTAINER?= pgsql@FreeBSD.org Modified: head/databases/postgresql96-server/distinfo ============================================================================== --- head/databases/postgresql96-server/distinfo Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-server/distinfo Sun May 17 20:37:04 2020 (r535676) @@ -1,5 +1,5 @@ -TIMESTAMP = 1581419696 -SHA256 (postgresql/postgresql-9.6.17.tar.bz2) = f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2 -SIZE (postgresql/postgresql-9.6.17.tar.bz2) = 18812282 +TIMESTAMP = 1589458681 +SHA256 (postgresql/postgresql-9.6.18.tar.bz2) = 517ec282b785e6d22f360c30ba0c5e2a506fca5ca07dcc545427511d94c89999 +SIZE (postgresql/postgresql-9.6.18.tar.bz2) = 18836490 SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998 Modified: head/databases/postgresql96-server/pkg-plist-plperl ============================================================================== --- head/databases/postgresql96-server/pkg-plist-plperl Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-server/pkg-plist-plperl Sun May 17 20:37:04 2020 (r535676) @@ -7,4 +7,9 @@ include/postgresql/server/ppport.h %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl +lib/postgresql/hstore_plperl.so lib/postgresql/plperl.so +%%DATADIR%%/extension/hstore_plperl--1.0.sql +%%DATADIR%%/extension/hstore_plperl.control +%%DATADIR%%/extension/hstore_plperlu--1.0.sql +%%DATADIR%%/extension/hstore_plperlu.control Modified: head/databases/postgresql96-server/pkg-plist-plpython ============================================================================== --- head/databases/postgresql96-server/pkg-plist-plpython Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-server/pkg-plist-plpython Sun May 17 20:37:04 2020 (r535676) @@ -12,3 +12,17 @@ include/postgresql/server/plpython.h %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control +lib/postgresql/hstore_plpython3.so +lib/postgresql/ltree_plpython3.so +%%DATADIR%%/extension/hstore_plpython2u--1.0.sql +%%DATADIR%%/extension/hstore_plpython2u.control +%%DATADIR%%/extension/hstore_plpython3u--1.0.sql +%%DATADIR%%/extension/hstore_plpython3u.control +%%DATADIR%%/extension/hstore_plpythonu--1.0.sql +%%DATADIR%%/extension/hstore_plpythonu.control +%%DATADIR%%/extension/ltree_plpython2u--1.0.sql +%%DATADIR%%/extension/ltree_plpython2u.control +%%DATADIR%%/extension/ltree_plpython3u--1.0.sql +%%DATADIR%%/extension/ltree_plpython3u.control +%%DATADIR%%/extension/ltree_plpythonu--1.0.sql +%%DATADIR%%/extension/ltree_plpythonu.control Modified: head/databases/postgresql96-server/pkg-plist-server ============================================================================== --- head/databases/postgresql96-server/pkg-plist-server Sun May 17 20:31:16 2020 (r535675) +++ head/databases/postgresql96-server/pkg-plist-server Sun May 17 20:37:04 2020 (r535676) @@ -342,6 +342,7 @@ lib/libpgcommon.a %%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/Nuuk %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005172037.04HKb4rX087129>