svn commit: r517600 - in head/databases: postgresql10-server postgresql11-server postgresql12-server postgresql94-server postgresql95-server postgresql96-server

Palle Girgensohn girgen at FreeBSD.org
Thu Nov 14 16:24:48 UTC 2019


Author: girgen
Date: Thu Nov 14 16:24:45 2019
New Revision: 517600
URL: https://svnweb.freebsd.org/changeset/ports/517600

Log:
  Upgrade PostgreSQL
  
  The PostgreSQL Global Development Group has released an update to all
  supported versions of our database system, including 12.1, 11.6, 10.11,
  9.6.16, 9.5.20, and 9.4.25. This release fixes over 50 bugs reported
  over the last three months.
  
  PostgreSQL 9.4 will stop receiving fixes on February 13, 2020, which is
  the next planned cumulative update release. We suggest that you make
  plans to upgrade to a newer, supported version of PostgreSQL. Please see
  our versioning policy for more information:
  
  This update also fixes over 50 bugs that were reported in the last
  several months. Some of these issues affect only version 12, but may
  also affect all supported versions.
  
  Specific change to the FreeBSD port:
  Starting now, the default for TZDATA has changed to using the underlying OS'
  time zone database instead of the one built in to PostgreSQL. This change is
  made since PostgreSQL will not release a patch in the event where the time zone
  database changes, whereas FreeBSD will.
  
  Release notes:	https://www.postgresql.org/about/news/1994/
  URL:		https://www.postgresql.org/support/versioning/

Modified:
  head/databases/postgresql10-server/Makefile
  head/databases/postgresql10-server/distinfo
  head/databases/postgresql11-server/Makefile
  head/databases/postgresql11-server/distinfo
  head/databases/postgresql12-server/Makefile
  head/databases/postgresql12-server/distinfo
  head/databases/postgresql94-server/Makefile
  head/databases/postgresql94-server/distinfo
  head/databases/postgresql95-server/Makefile
  head/databases/postgresql95-server/distinfo
  head/databases/postgresql96-server/Makefile
  head/databases/postgresql96-server/distinfo

Modified: head/databases/postgresql10-server/Makefile
==============================================================================
--- head/databases/postgresql10-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql10-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,10 +1,10 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	10.10
+DISTVERSION?=	10.11
 # 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?=	1
+PORTREVISION?=	0
 PKGNAMESUFFIX?=	${DISTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql at FreeBSD.org

Modified: head/databases/postgresql10-server/distinfo
==============================================================================
--- head/databases/postgresql10-server/distinfo	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql10-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1565174246
-SHA256 (postgresql/postgresql-10.10.tar.bz2) = ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
-SIZE (postgresql/postgresql-10.10.tar.bz2) = 19012049
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-10.11.tar.bz2) = 0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09
+SIZE (postgresql/postgresql-10.11.tar.bz2) = 19017947

Modified: head/databases/postgresql11-server/Makefile
==============================================================================
--- head/databases/postgresql11-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql11-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,10 +1,10 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	11.5
+DISTVERSION?=	11.6
 # 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?=	${DISTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql at FreeBSD.org

Modified: head/databases/postgresql11-server/distinfo
==============================================================================
--- head/databases/postgresql11-server/distinfo	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql11-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1565174257
-SHA256 (postgresql/postgresql-11.5.tar.bz2) = 7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180
-SIZE (postgresql/postgresql-11.5.tar.bz2) = 19773087
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-11.6.tar.bz2) = 49924f7ff92965fdb20c86e0696f2dc9f8553e1563124ead7beedf8910c13170
+SIZE (postgresql/postgresql-11.6.tar.bz2) = 19843202

Modified: head/databases/postgresql12-server/Makefile
==============================================================================
--- head/databases/postgresql12-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql12-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME?=	postgresql
-DISTVERSION?=	12.0
+DISTVERSION?=	12.1
 # 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
@@ -110,7 +110,7 @@ USES+=		pkgconfig
 # (requires dump/restore if modified.)
 OPTIONS_DEFINE+=	INTDATE
 INTDATE_DESC=		Builds with 64-bit date/time type
-OPTIONS_DEFAULT+=	TZDATA INTDATE
+OPTIONS_DEFAULT+=	INTDATE
 .endif
 
 .if !defined(SLAVE_ONLY)

Modified: head/databases/postgresql12-server/distinfo
==============================================================================
--- head/databases/postgresql12-server/distinfo	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql12-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1569942321
-SHA256 (postgresql/postgresql-12.0.tar.bz2) = cda2397215f758b793f741c86be05468257b0e6bcb1a6113882ab5d0df0855c6
-SIZE (postgresql/postgresql-12.0.tar.bz2) = 20177458
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-12.1.tar.bz2) = a09bf3abbaf6763980d0f8acbb943b7629a8b20073de18d867aecdb7988483ed
+SIZE (postgresql/postgresql-12.1.tar.bz2) = 20213711

Modified: head/databases/postgresql94-server/Makefile
==============================================================================
--- head/databases/postgresql94-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql94-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,7 +1,7 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.4.24
+DISTVERSION?=	9.4.25
 # 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/postgresql94-server/distinfo
==============================================================================
--- head/databases/postgresql94-server/distinfo	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql94-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1565174268
-SHA256 (postgresql/postgresql-9.4.24.tar.bz2) = 52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429
-SIZE (postgresql/postgresql-9.4.24.tar.bz2) = 16842941
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-9.4.25.tar.bz2) = cb98afaef4748de76c13202c14198e3e4717adde49fd9c90fdc81da877520928
+SIZE (postgresql/postgresql-9.4.25.tar.bz2) = 16849015
 SHA256 (postgresql/pg-949-icu-2016-10-02.diff.gz) = 34612e685a79874db04bc6b66c700bfc6412042840c532eef0da7832d1f70d43
 SIZE (postgresql/pg-949-icu-2016-10-02.diff.gz) = 5289

Modified: head/databases/postgresql95-server/Makefile
==============================================================================
--- head/databases/postgresql95-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql95-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,7 +1,7 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.5.19
+DISTVERSION?=	9.5.20
 # 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	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql95-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1565174279
-SHA256 (postgresql/postgresql-9.5.19.tar.bz2) = 960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
-SIZE (postgresql/postgresql-9.5.19.tar.bz2) = 17571998
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-9.5.20.tar.bz2) = 925751b375cf975bebbe79753fbcb5fe85d7a62abe516d4c56861a6b877dde0d
+SIZE (postgresql/postgresql-9.5.20.tar.bz2) = 17610134
 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/postgresql96-server/Makefile
==============================================================================
--- head/databases/postgresql96-server/Makefile	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql96-server/Makefile	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,10 +1,10 @@
 # Created by: Marc G. Fournier <scrappy at FreeBSD.org>
 # $FreeBSD$
 
-DISTVERSION?=	9.6.15
+DISTVERSION?=	9.6.16
 # 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?=	1
+PORTREVISION?=	0
 PKGNAMESUFFIX?=	${PORTVERSION:R:S/.//}${COMPONENT}
 
 MAINTAINER?=	pgsql at FreeBSD.org

Modified: head/databases/postgresql96-server/distinfo
==============================================================================
--- head/databases/postgresql96-server/distinfo	Thu Nov 14 16:20:57 2019	(r517599)
+++ head/databases/postgresql96-server/distinfo	Thu Nov 14 16:24:45 2019	(r517600)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1565174281
-SHA256 (postgresql/postgresql-9.6.15.tar.bz2) = 3cd9fe9af247167f863030842c1a57f58bdf3e5d50a94997d34a802b6032170a
-SIZE (postgresql/postgresql-9.6.15.tar.bz2) = 18799121
+TIMESTAMP = 1573552509
+SHA256 (postgresql/postgresql-9.6.16.tar.bz2) = 5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7
+SIZE (postgresql/postgresql-9.6.16.tar.bz2) = 18806372
 SHA256 (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 85f81baa0fc8f692bcf802c8645196d9e3afdef4f760cef712d940b87655486e
 SIZE (postgresql/pg-96b4-icu-2016-10-02.diff.gz) = 5998


More information about the svn-ports-head mailing list