1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-01 10:59:55 +00:00

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]
This commit is contained in:
Palle Girgensohn 2020-05-17 20:37:04 +00:00
parent 81c38160be
commit 751aa87e6a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=535676
36 changed files with 173 additions and 28 deletions

View File

@ -3,4 +3,6 @@
WANT_PGSQL_VER= 10 WANT_PGSQL_VER= 10
INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl
.include "${.CURDIR}/../postgresql12-plperl/Makefile" .include "${.CURDIR}/../postgresql12-plperl/Makefile"

View File

@ -2,4 +2,6 @@
WANT_PGSQL_VER= 10 WANT_PGSQL_VER= 10
INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython
.include "${.CURDIR}/../postgresql12-plpython/Makefile" .include "${.CURDIR}/../postgresql12-plpython/Makefile"

View File

@ -1,7 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org> # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$ # $FreeBSD$
DISTVERSION?= 10.12 DISTVERSION?= 10.13
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # 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. # not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 2 PORTREVISION?= 2

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1581419815 TIMESTAMP = 1589614618
SHA256 (postgresql/postgresql-10.12.tar.bz2) = 388f7f888c4fbcbdf424ec2bce52535195b426010b720af7bea767e23e594ae7 SHA256 (postgresql/postgresql-10.13.tar.bz2) = 4d701f450cd92ffb123cf6c296e9656abbc2ab7ea6507894ff1e2475ae0754e1
SIZE (postgresql/postgresql-10.12.tar.bz2) = 19020488 SIZE (postgresql/postgresql-10.13.tar.bz2) = 19028339

View File

@ -8,3 +8,8 @@ include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl %%DOCSDIR%%/README-plperl
lib/postgresql/plperl.so 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

View File

@ -12,3 +12,17 @@ include/postgresql/server/plpython.h
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control %%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

View File

@ -389,6 +389,7 @@ lib/libpgcommon.a
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Nuuk
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung

View File

@ -1,7 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org> # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$ # $FreeBSD$
DISTVERSION?= 11.7 DISTVERSION?= 11.8
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # 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. # not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 2 PORTREVISION?= 2

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1581419816 TIMESTAMP = 1589613918
SHA256 (postgresql/postgresql-11.7.tar.bz2) = 324ae93a8846fbb6a25d562d271bc441ffa8794654c5b2839384834de220a313 SHA256 (postgresql/postgresql-11.8.tar.bz2) = eaf2f4329ccc349c89e950761b81daf8c99bb8966abcab5665ccd6ee95c77ae2
SIZE (postgresql/postgresql-11.7.tar.bz2) = 19890063 SIZE (postgresql/postgresql-11.8.tar.bz2) = 19922770

View File

@ -9,3 +9,13 @@ include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl %%DOCSDIR%%/README-plperl
lib/postgresql/plperl.so 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

View File

@ -24,3 +24,24 @@ lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control %%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

View File

@ -1056,6 +1056,7 @@ lib/libpgcommon.a
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Nuuk
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung

View File

@ -19,8 +19,8 @@ WANT_PGSQL_VER?=12
USES+= perl5 readline USES+= perl5 readline
CONFIGURE_ARGS= --with-perl CONFIGURE_ARGS= --with-perl
BUILD_DIRS= src/backend src/pl/plperl BUILD_DIRS= src/backend ${INSTALL_DIRS}
INSTALL_DIRS= src/pl/plperl INSTALL_DIRS?= src/pl/plperl contrib/hstore_plperl contrib/jsonb_plperl
SLAVE_ONLY= yes SLAVE_ONLY= yes
COMPONENT= -plperl COMPONENT= -plperl

View File

@ -20,8 +20,8 @@ WANT_PYTHON_USE?= python
CONFIGURE_ARGS= --with-python CONFIGURE_ARGS= --with-python
COMPONENT= -plpython COMPONENT= -plpython
BUILD_DIRS= src/backend src/pl/plpython BUILD_DIRS= src/backend ${INSTALL_DIRS}
INSTALL_DIRS= src/pl/plpython INSTALL_DIRS?= src/pl/plpython contrib/hstore_plpython contrib/jsonb_plpython contrib/ltree_plpython
SLAVE_ONLY= yes SLAVE_ONLY= yes
.include "${MASTERDIR}/Makefile" .include "${MASTERDIR}/Makefile"

View File

@ -2,10 +2,10 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME?= postgresql PORTNAME?= postgresql
DISTVERSION?= 12.2 DISTVERSION?= 12.3
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # 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. # not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 2 PORTREVISION?= 0
CATEGORIES?= databases CATEGORIES?= databases
MASTER_SITES= PGSQL/source/v${DISTVERSION} MASTER_SITES= PGSQL/source/v${DISTVERSION}
PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT} PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}
@ -78,7 +78,6 @@ SUB_FILES+= 502.pgsql
.if defined(CLIENT_ONLY) .if defined(CLIENT_ONLY)
OPTIONS_DEFINE+=LIBEDIT DOCS OPTIONS_DEFINE+=LIBEDIT DOCS
LIBEDIT_DESC= Use non-GPL libedit instead of readline LIBEDIT_DESC= Use non-GPL libedit instead of readline
USES+= perl5
.else .else
MAKE_ENV+= PATH=${PREFIX}/bin:${PATH} MAKE_ENV+= PATH=${PREFIX}/bin:${PATH}
CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1581419817 TIMESTAMP = 1589458709
SHA256 (postgresql/postgresql-12.2.tar.bz2) = ad1dcc4c4fc500786b745635a9e1eba950195ce20b8913f50345bb7d5369b5de SHA256 (postgresql/postgresql-12.3.tar.bz2) = 94ed64a6179048190695c86ec707cc25d016056ce10fc9d229267d9a8f1dcf41
SIZE (postgresql/postgresql-12.2.tar.bz2) = 20363545 SIZE (postgresql/postgresql-12.3.tar.bz2) = 20439892

View File

@ -10,9 +10,10 @@ cat <<EOF
=========== BACKUP YOUR DATA! ============= =========== BACKUP YOUR DATA! =============
As always, backup your data before As always, backup your data before
upgrading. If the upgrade leads to a higher 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 and restore of all databases is
required. This is *NOT* done by the port! required. This is *NOT* done by the port!
See https://www.postgresql.org/docs/current/upgrading.html
=========================================== ===========================================
EOF EOF
} }

View File

@ -1199,6 +1199,8 @@ man/man7/WITH.7.gz
%%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-12.mo %%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-12.mo
%%NLS%%share/locale/uk/LC_MESSAGES/libpq5-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_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/uk/LC_MESSAGES/psql-12.mo
%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/ecpg-12.mo
%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-12.mo

View File

@ -9,3 +9,13 @@ include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl %%DOCSDIR%%/README-plperl
lib/postgresql/plperl.so 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

View File

@ -24,3 +24,24 @@ lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control %%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

View File

@ -873,10 +873,15 @@ lib/libpgcommon.a
%%NLS%%share/locale/tr/LC_MESSAGES/postgres-12.mo %%NLS%%share/locale/tr/LC_MESSAGES/postgres-12.mo
%%NLS%%share/locale/uk/LC_MESSAGES/initdb-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_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_controldata-12.mo
%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-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_fsync-12.mo
%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-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/uk/LC_MESSAGES/plpgsql-12.mo
%%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-12.mo %%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-12.mo
%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-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/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Nuuk
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung

View File

@ -2,4 +2,6 @@
WANT_PGSQL_VER= 9.4 WANT_PGSQL_VER= 9.4
INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython
.include "${.CURDIR}/../postgresql12-plpython/Makefile" .include "${.CURDIR}/../postgresql12-plpython/Makefile"

View File

@ -3,4 +3,6 @@
WANT_PGSQL_VER= 9.5 WANT_PGSQL_VER= 9.5
INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl
.include "${.CURDIR}/../postgresql12-plperl/Makefile" .include "${.CURDIR}/../postgresql12-plperl/Makefile"

View File

@ -2,4 +2,6 @@
WANT_PGSQL_VER= 9.5 WANT_PGSQL_VER= 9.5
INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython
.include "${.CURDIR}/../postgresql12-plpython/Makefile" .include "${.CURDIR}/../postgresql12-plpython/Makefile"

View File

@ -1,7 +1,7 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org> # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$ # $FreeBSD$
DISTVERSION?= 9.5.21 DISTVERSION?= 9.5.22
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # 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. # not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 0 PORTREVISION?= 0

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1581419819 TIMESTAMP = 1589613852
SHA256 (postgresql/postgresql-9.5.21.tar.bz2) = 7eb56e4fa877243c2df78adc5a0ef02f851060c282682b4bb97b854100fb732c SHA256 (postgresql/postgresql-9.5.22.tar.bz2) = 48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
SIZE (postgresql/postgresql-9.5.21.tar.bz2) = 17640928 SIZE (postgresql/postgresql-9.5.22.tar.bz2) = 17667386
SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365 SHA256 (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5fa083ec38087d6a0961642208f012e902221270708b919b92e9eedaa755e365
SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952 SIZE (postgresql/pg-954-icu-2016-08-10.diff.gz) = 5952

View File

@ -7,4 +7,9 @@ include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl %%DOCSDIR%%/README-plperl
lib/postgresql/hstore_plperl.so
lib/postgresql/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

View File

@ -12,3 +12,17 @@ include/postgresql/server/plpython.h
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control %%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

View File

@ -327,6 +327,7 @@ lib/libpgcommon.a
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Nuuk
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung

View File

@ -3,4 +3,6 @@
WANT_PGSQL_VER= 9.6 WANT_PGSQL_VER= 9.6
INSTALL_DIRS= src/pl/plperl contrib/hstore_plperl
.include "${.CURDIR}/../postgresql12-plperl/Makefile" .include "${.CURDIR}/../postgresql12-plperl/Makefile"

View File

@ -2,4 +2,6 @@
WANT_PGSQL_VER= 9.6 WANT_PGSQL_VER= 9.6
INSTALL_DIRS= src/pl/plpython contrib/hstore_plpython contrib/ltree_plpython
.include "${.CURDIR}/../postgresql12-plpython/Makefile" .include "${.CURDIR}/../postgresql12-plpython/Makefile"

View File

@ -1,10 +1,10 @@
# Created by: Marc G. Fournier <scrappy@FreeBSD.org> # Created by: Marc G. Fournier <scrappy@FreeBSD.org>
# $FreeBSD$ # $FreeBSD$
DISTVERSION?= 9.6.17 DISTVERSION?= 9.6.18
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and # 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. # not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 2 PORTREVISION?= 0
PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT} PKGNAMESUFFIX?= ${PORTVERSION:R:S/.//}${COMPONENT}
MAINTAINER?= pgsql@FreeBSD.org MAINTAINER?= pgsql@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1581419696 TIMESTAMP = 1589458681
SHA256 (postgresql/postgresql-9.6.17.tar.bz2) = f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2 SHA256 (postgresql/postgresql-9.6.18.tar.bz2) = 517ec282b785e6d22f360c30ba0c5e2a506fca5ca07dcc545427511d94c89999
SIZE (postgresql/postgresql-9.6.17.tar.bz2) = 18812282 SIZE (postgresql/postgresql-9.6.18.tar.bz2) = 18836490
SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e
SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998 SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998

View File

@ -7,4 +7,9 @@ include/postgresql/server/ppport.h
%%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql
%%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql
%%DOCSDIR%%/README-plperl %%DOCSDIR%%/README-plperl
lib/postgresql/hstore_plperl.so
lib/postgresql/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

View File

@ -12,3 +12,17 @@ include/postgresql/server/plpython.h
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql
%%PYTHON2%%%%DATADIR%%/extension/plpythonu.control %%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

View File

@ -342,6 +342,7 @@ lib/libpgcommon.a
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Beulah
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/Center
%%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem %%TZDATA%%%%DATADIR%%/timezone/America/North_Dakota/New_Salem
%%TZDATA%%%%DATADIR%%/timezone/America/Nuuk
%%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga %%TZDATA%%%%DATADIR%%/timezone/America/Ojinaga
%%TZDATA%%%%DATADIR%%/timezone/America/Panama %%TZDATA%%%%DATADIR%%/timezone/America/Panama
%%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung %%TZDATA%%%%DATADIR%%/timezone/America/Pangnirtung