pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases postgresqlNN: updated to 11.5, 10.10, 9.6.15...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b0ca8b252962
branches:  trunk
changeset: 337737:b0ca8b252962
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Aug 11 11:40:10 2019 +0000

description:
postgresqlNN: updated to 11.5, 10.10, 9.6.15, 9.5.19, 9.4.24

PostgreSQL 11.5, 10.10, 9.6.15, 9.5.19, 9.4.24

Security Issues

Four security vulnerabilities have been closed by this release:

CVE-2019-10208: TYPE in pg_temp executes arbitrary SQL during SECURITY DEFINER execution

Versions Affected: 9.4 - 11

Given a suitable SECURITY DEFINER function, an attacker can execute arbitrary SQL under the identity of the function owner. An attack requires EXECUTE permission on the function, which must itself 
contain a function call having inexact argument type match. For example, length('foo'::varchar) and length('foo') are inexact, while length('foo'::text) is exact. As part of exploiting this 
vulnerability, the attacker uses CREATE DOMAIN to create a type in a pg_temp schema. The attack pattern and fix are similar to that for CVE-2007-2138.

Writing SECURITY DEFINER functions continues to require
following the considerations noted in the documentation:


The PostgreSQL project thanks Tom Lane for reporting this problem.

CVE-2019-10209: Memory disclosure in cross-type comparison for hashed subplan

Versions Affected: 11

In a database containing hypothetical, user-defined hash equality operators, an attacker could read arbitrary bytes of server memory. For an attack to become possible, a superuser would need to 
create unusual operators. It is possible for operators not purpose-crafted for attack to have the properties that enable an attack, but we are not aware of specific examples.

The PostgreSQL project thanks Andreas Seltenreich for reporting this problem.

CVE-2019-10210: EnterpriseDB Windows installer writes PostgreSQL superuser password to unprotected temporary file

Versions Affected: The EnterpriseDB Windows installer for versions 9.4 - 11

The EnterpriseDB Windows installer writes a password to a temporary file in its installation directory, creates initial databases, and deletes the file. During those seconds while the file exists, a 
local attacker can read the PostgreSQL superuser password from the file.

The PostgreSQL project thanks Noah Misch for reporting this problem.

CVE-2019-10211: EnterpriseDB Windows installer bundled OpenSSL executes code from unprotected directory

Versions Affected: The EnterpriseDB Windows installer for versions 9.4 - 11

When the database server or libpq client library initializes SSL, libeay32.dll attempts to read configuration from a hard-coded directory. Typically, the directory does not exist, but any local user 
could create it and inject configuration. This configuration can direct OpenSSL to load and execute arbitrary code as the user running a PostgreSQL server or client. Most PostgreSQL client tools and 
libraries use libpq, and one can encounter this vulnerability by using any of them. This vulnerability is much like CVE-2019-5443, but it originated independently. One can work around the 
vulnerability by setting environment variable OPENSSL_CONF to "NUL:/openssl.cnf" or any other name that cannot exist as a file.

The PostgreSQL project thanks Daniel Gustafsson of the curl security team for reporting this problem.

Bug Fixes and Improvements

This update also fixes over 40 bugs that were reported in the last several months. Some of these issues affect only version 11, but many affect all supported versions.

Some of these fixes include:

Fix for ALTER TABLE ... ALTER COLUMN TYPE when multiple column types are modified in a single-command. This issue was introduced in the previous cumulative update (11.4, 10.9, 9.6.14, 9.5.18, 9.4.23, 
and 12 beta 2).
Ensure that partition key columns will not be dropped as the result of an "indirect drop," such as from a cascade from dropping the key column's data type (e.g. a custom data type). This fix is 
applied only to newly created partitioned tables: if you believe you have an affected partition table (e.g. one where the partition key uses a custom data type), you will need to either create a new 
table and move your data into it OR use pg_upgrade.
Prevent dropping a partitioned table's trigger if there are pending trigger events in child partitions. This particularly affects foreign key constraints, which are implemented by triggers.
Several additional fixes for partitioning, including a fix for partition pruning that could lead to inefficient queries.
Fix for parallel hash joins that could lead to duplicate result rows in EXISTS queries.
Several fixes for the query planner.
Several fixes for issues that would lead to query deadlocks.
Fix for multi-column foreign keys when rebuilding a foreign key constraint.
Prevent extended statistics from being built for inherited tables.
Fix for the canonicalization of date ranges that include -infinity/infinity endpoints to ensure the behavior matches the documentation.
Fix loss of fractional digits when converting very large money values to numeric.
Fix for PL/pgSQL functions that return composite types.
Make libpq ignore the \r carriage return in connection service files, which was causing connection failures in some edge cases.
Several fixes for psql, which includes avoiding incorrect tab completion options after SET variable =.
Improve reliability of contrib/amcheck's index verification.
Set initdb to prefer the timezone behavior defined by the C library instead of what is defined by localtime or posixrules. This ensures PostgreSQL uses the "real" timezone name instead of an 
artificial name.
Fix pg_dump to ensure that custom operator classes are dumped in the correct order to prevent creating an unrestorable dump.
Fix possible lockup in pgbench when using -R option.
Fix spinlock assembly code for MIPS CPUs so that it works on MIPS r6.
This update also contains tzdata release 2019b for DST law changes in Brazil, plus historical corrections for Hong Kong, Italy, and Palestine. This update also adds support for zic's new -b slim 
option to reduce the size of the installed zone files, though it is not currently being used by PostgreSQL.

diffstat:

 databases/postgresql10-docs/PLIST      |   3 ++-
 databases/postgresql10/Makefile.common |   4 ++--
 databases/postgresql10/distinfo        |  10 +++++-----
 databases/postgresql11-docs/PLIST      |   3 ++-
 databases/postgresql11/Makefile.common |   4 ++--
 databases/postgresql11/distinfo        |  10 +++++-----
 databases/postgresql94-docs/PLIST      |   3 ++-
 databases/postgresql94/Makefile.common |   4 ++--
 databases/postgresql94/distinfo        |  10 +++++-----
 databases/postgresql95-docs/PLIST      |   3 ++-
 databases/postgresql95/Makefile.common |   4 ++--
 databases/postgresql95/distinfo        |  10 +++++-----
 databases/postgresql96-docs/PLIST      |   3 ++-
 databases/postgresql96/Makefile.common |   4 ++--
 databases/postgresql96/distinfo        |  10 +++++-----
 15 files changed, 45 insertions(+), 40 deletions(-)

diffs (265 lines):

diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql10-docs/PLIST
--- a/databases/postgresql10-docs/PLIST Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql10-docs/PLIST Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2019/06/23 07:55:58 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2019/08/11 11:40:10 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -909,6 +909,7 @@
 share/doc/postgresql/html/regress-variant.html
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-10-1.html
+share/doc/postgresql/html/release-10-10.html
 share/doc/postgresql/html/release-10-2.html
 share/doc/postgresql/html/release-10-3.html
 share/doc/postgresql/html/release-10-4.html
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql10/Makefile.common
--- a/databases/postgresql10/Makefile.common    Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql10/Makefile.common    Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.13 2019/06/23 07:55:58 adam Exp $
+# $NetBSD: Makefile.common,v 1.14 2019/08/11 11:40:10 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql10-pltcl/Makefile
 # used by databases/postgresql10-server/Makefile
 
-DISTNAME=      postgresql-10.9
+DISTNAME=      postgresql-10.10
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql10/distinfo
--- a/databases/postgresql10/distinfo   Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql10/distinfo   Sun Aug 11 11:40:10 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.11 2019/06/23 07:55:58 adam Exp $
+$NetBSD: distinfo,v 1.12 2019/08/11 11:40:10 adam Exp $
 
-SHA1 (postgresql-10.9.tar.bz2) = 8c5f14580f52f6f98baf5c2b148eff8613c0e2d1
-RMD160 (postgresql-10.9.tar.bz2) = e8167eec821418c9fc38c4938febab439a1b1d2d
-SHA512 (postgresql-10.9.tar.bz2) = 4e2f30a0fd262f2e3ce5fc836425be635326600cd6cd4e117c57f59ea7ab2e9ea463a8d357fe7adb8c0dd0094e43d08efc2a137f8f9975715a5908e35920f98e
-Size (postgresql-10.9.tar.bz2) = 18981395 bytes
+SHA1 (postgresql-10.10.tar.bz2) = 388b082ea05e385f42ce1521f1a9f7d11561227b
+RMD160 (postgresql-10.10.tar.bz2) = e09deca5db2789d2d35a715fb2a8ff85c4736bb4
+SHA512 (postgresql-10.10.tar.bz2) = 60cafe4b27a194949aff482dcce4fa096a9916f37205868437a32afb8964df71934b619a0b891fe85eb7c7f9b11775cffbbedca589e78feb6c4184eb224b48bc
+Size (postgresql-10.10.tar.bz2) = 19012049 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql11-docs/PLIST
--- a/databases/postgresql11-docs/PLIST Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql11-docs/PLIST Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2019/06/23 07:55:58 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2019/08/11 11:40:11 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -948,6 +948,7 @@
 share/doc/postgresql/html/release-11-2.html
 share/doc/postgresql/html/release-11-3.html
 share/doc/postgresql/html/release-11-4.html
+share/doc/postgresql/html/release-11-5.html
 share/doc/postgresql/html/release-11.html
 share/doc/postgresql/html/release-prior.html
 share/doc/postgresql/html/release.html
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql11/Makefile.common
--- a/databases/postgresql11/Makefile.common    Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql11/Makefile.common    Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2019/06/23 07:55:58 adam Exp $
+# $NetBSD: Makefile.common,v 1.6 2019/08/11 11:40:10 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql11-pltcl/Makefile
 # used by databases/postgresql11-server/Makefile
 
-DISTNAME=      postgresql-11.4
+DISTNAME=      postgresql-11.5
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql11/distinfo
--- a/databases/postgresql11/distinfo   Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql11/distinfo   Sun Aug 11 11:40:10 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.5 2019/06/23 07:55:58 adam Exp $
+$NetBSD: distinfo,v 1.6 2019/08/11 11:40:10 adam Exp $
 
-SHA1 (postgresql-11.4.tar.bz2) = 962721e866cb2f9e4d1e4768833180d7ba59f509
-RMD160 (postgresql-11.4.tar.bz2) = 74afcef82d626536da9d77fbe247d88d00a19f0a
-SHA512 (postgresql-11.4.tar.bz2) = 159fb84134e05ddc58e40a879ca52ed4d58ced7bcd1e7310d59bda84f9055339a31a92cfaab2c063a88685f7417b9a828534394bf9a2477fc33d1fb6cd26186b
-Size (postgresql-11.4.tar.bz2) = 19759635 bytes
+SHA1 (postgresql-11.5.tar.bz2) = 24ceee589a0aec775ea7c4c4a001c710ff27a0d4
+RMD160 (postgresql-11.5.tar.bz2) = 01e22d6f7ec31c89531ebfdb474f997eeaaa992c
+SHA512 (postgresql-11.5.tar.bz2) = 537148079dc6c33cfb9bf9722171e524707b42ef01369deb968d0d6e8fa9b7f16f6ce67139d9dc45fb7385defbf56aa2c0affe5ee9d76e996f31e47486192141
+Size (postgresql-11.5.tar.bz2) = 19773087 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql94-docs/PLIST
--- a/databases/postgresql94-docs/PLIST Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql94-docs/PLIST Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.25 2019/06/23 07:55:59 adam Exp $
+@comment $NetBSD: PLIST,v 1.26 2019/08/11 11:40:11 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createlang.1
@@ -862,6 +862,7 @@
 share/doc/postgresql/html/release-9-4-21.html
 share/doc/postgresql/html/release-9-4-22.html
 share/doc/postgresql/html/release-9-4-23.html
+share/doc/postgresql/html/release-9-4-24.html
 share/doc/postgresql/html/release-9-4-3.html
 share/doc/postgresql/html/release-9-4-4.html
 share/doc/postgresql/html/release-9-4-5.html
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql94/Makefile.common
--- a/databases/postgresql94/Makefile.common    Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql94/Makefile.common    Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.31 2019/06/23 07:55:59 adam Exp $
+# $NetBSD: Makefile.common,v 1.32 2019/08/11 11:40:11 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql94-pltcl/Makefile
 # used by databases/postgresql94-server/Makefile
 
-DISTNAME=      postgresql-9.4.23
+DISTNAME=      postgresql-9.4.24
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql94/distinfo
--- a/databases/postgresql94/distinfo   Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql94/distinfo   Sun Aug 11 11:40:10 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.27 2019/06/23 07:55:59 adam Exp $
+$NetBSD: distinfo,v 1.28 2019/08/11 11:40:11 adam Exp $
 
-SHA1 (postgresql-9.4.23.tar.bz2) = 383e80d113e8d70828aceab5aadefc996f95225c
-RMD160 (postgresql-9.4.23.tar.bz2) = c9b438a695296abc0d6af5181a7e95758410cf1a
-SHA512 (postgresql-9.4.23.tar.bz2) = b1eb392b939ac8369c76e4ecc142c78f380afc498b60ec0ea97acb16c21ffa5c11a24c2c46463032865955b7c531492c08feb6ef1efc46a549369f026594ea61
-Size (postgresql-9.4.23.tar.bz2) = 16848808 bytes
+SHA1 (postgresql-9.4.24.tar.bz2) = c1b28864ff6a3799de897921b50c75301fad2d29
+RMD160 (postgresql-9.4.24.tar.bz2) = ef2761b5c01444d0c5ebb0b6c15a97fba02aa9fd
+SHA512 (postgresql-9.4.24.tar.bz2) = 8e7b4da8a5cf48cf4d98cce117614f7ab594087d0002f996c1fedc2a38af6eaa663ad3ce67ced6d6b0fd6d0b00aee932025bf50a4314933ba535716577e9393f
+Size (postgresql-9.4.24.tar.bz2) = 16842941 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
 SHA1 (patch-configure) = 1c0fee3fb270863eb39118a65769ce170391cfec
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql95-docs/PLIST
--- a/databases/postgresql95-docs/PLIST Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql95-docs/PLIST Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.18 2019/06/23 07:55:59 adam Exp $
+@comment $NetBSD: PLIST,v 1.19 2019/08/11 11:40:11 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createlang.1
@@ -877,6 +877,7 @@
 share/doc/postgresql/html/release-9-5-16.html
 share/doc/postgresql/html/release-9-5-17.html
 share/doc/postgresql/html/release-9-5-18.html
+share/doc/postgresql/html/release-9-5-19.html
 share/doc/postgresql/html/release-9-5-2.html
 share/doc/postgresql/html/release-9-5-3.html
 share/doc/postgresql/html/release-9-5-4.html
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql95/Makefile.common
--- a/databases/postgresql95/Makefile.common    Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql95/Makefile.common    Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.25 2019/06/23 07:55:59 adam Exp $
+# $NetBSD: Makefile.common,v 1.26 2019/08/11 11:40:11 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql95-pltcl/Makefile
 # used by databases/postgresql95-server/Makefile
 
-DISTNAME=      postgresql-9.5.18
+DISTNAME=      postgresql-9.5.19
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql95/distinfo
--- a/databases/postgresql95/distinfo   Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql95/distinfo   Sun Aug 11 11:40:10 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.20 2019/06/23 07:55:59 adam Exp $
+$NetBSD: distinfo,v 1.21 2019/08/11 11:40:11 adam Exp $
 
-SHA1 (postgresql-9.5.18.tar.bz2) = fddca7bd9cbb7ec3d0f14c42c364706d3a978412
-RMD160 (postgresql-9.5.18.tar.bz2) = ea8c8449ae4c487495a26eba854f4f8d66d1a2a9
-SHA512 (postgresql-9.5.18.tar.bz2) = 0487ac2891c800de045135d4b153659ec10c28750a09e0b87343f8e7145a11f1783ed0b6ca60829776faae1430c8050cc7661c780f171f1b2621f1673a32e6d1
-Size (postgresql-9.5.18.tar.bz2) = 17570161 bytes
+SHA1 (postgresql-9.5.19.tar.bz2) = 9b0dcf4940e47c857200f37b8f4b00421a087958
+RMD160 (postgresql-9.5.19.tar.bz2) = bb7383430d9f52fac454b576601b7e9e837d2cfd
+SHA512 (postgresql-9.5.19.tar.bz2) = 46de40e49910311bf5291e1ece421ab9628641b18bf84cd1cb8093a584dd0358e3b6d2b086f82e9b06ce699a6e38018c3515ea591355078392e8d3d2fe4a7c64
+Size (postgresql-9.5.19.tar.bz2) = 17571998 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
 SHA1 (patch-configure) = 18dd4af7f043b090beda157dfd52531b551eafd0
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql96-docs/PLIST
--- a/databases/postgresql96-docs/PLIST Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql96-docs/PLIST Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.14 2019/06/23 07:55:59 adam Exp $
+@comment $NetBSD: PLIST,v 1.15 2019/08/11 11:40:11 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createlang.1
@@ -887,6 +887,7 @@
 share/doc/postgresql/html/release-9-6-12.html
 share/doc/postgresql/html/release-9-6-13.html
 share/doc/postgresql/html/release-9-6-14.html
+share/doc/postgresql/html/release-9-6-15.html
 share/doc/postgresql/html/release-9-6-2.html
 share/doc/postgresql/html/release-9-6-3.html
 share/doc/postgresql/html/release-9-6-4.html
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql96/Makefile.common
--- a/databases/postgresql96/Makefile.common    Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql96/Makefile.common    Sun Aug 11 11:40:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.19 2019/06/23 07:55:59 adam Exp $
+# $NetBSD: Makefile.common,v 1.20 2019/08/11 11:40:11 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -16,7 +16,7 @@
 # used by databases/postgresql96-pltcl/Makefile
 # used by databases/postgresql96-server/Makefile
 
-DISTNAME=      postgresql-9.6.14
+DISTNAME=      postgresql-9.6.15
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 48c4c992be38 -r b0ca8b252962 databases/postgresql96/distinfo
--- a/databases/postgresql96/distinfo   Sun Aug 11 11:36:08 2019 +0000
+++ b/databases/postgresql96/distinfo   Sun Aug 11 11:40:10 2019 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.16 2019/06/23 07:55:59 adam Exp $
+$NetBSD: distinfo,v 1.17 2019/08/11 11:40:11 adam Exp $
 
-SHA1 (postgresql-9.6.14.tar.bz2) = 12ebacbe8138c17a4748b2c3ec6b7473a40a4ca1
-RMD160 (postgresql-9.6.14.tar.bz2) = 541d2fb47049910990b8bab0376506551dd092ef
-SHA512 (postgresql-9.6.14.tar.bz2) = dccc183a6992ef4ece4ef5c638339708ab484e571ecd66ed993c9071cd55f250b4277fd3367f9a5ee545aa83e29dc5f7a239200e200e3314d5acc847f35e790c
-Size (postgresql-9.6.14.tar.bz2) = 18787744 bytes
+SHA1 (postgresql-9.6.15.tar.bz2) = 2375ff8387ed746093f575f2cc69a2dabb5d15ce
+RMD160 (postgresql-9.6.15.tar.bz2) = 54bc598b717cf19b21fa1c70df797e1085eaafac
+SHA512 (postgresql-9.6.15.tar.bz2) = cc35a059bf59ea3487c17a8432b791ca2a19afaa24b07403a8d33904b3a97ebe601e3036ca8ec766c54cb87a7def7d4618a425a4446e6832391185d7c71117db
+Size (postgresql-9.6.15.tar.bz2) = 18799121 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = 14c9564577d0df6f82ae0027aeada2f3a6a8f07c
 SHA1 (patch-configure) = db34614cef013a91dc229be319e5f09c657c3f24



Home | Main Index | Thread Index | Old Index