pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases postgresql: updated to 13.1, 12.5, 11.10, 10...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f3b4edf20a99
branches:  trunk
changeset: 441995:f3b4edf20a99
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Nov 16 12:15:02 2020 +0000

description:
postgresql: updated to 13.1, 12.5, 11.10, 10.15, 9.6.20, and 9.5.24

PostgreSQL 13.1, 12.5, 11.10, 10.15, 9.6.20, and 9.5.24

Security Issues

* CVE-2020-25695: Multiple features escape "security restricted operation" sandbox
* CVE-2020-25694: Reconnection can downgrade connection security settings
* CVE-2020-25696: psql's \gset allows overwriting specially treated variables

Bug Fixes and Improvements

This update also fixes over 65 bugs that were reported in the last several months. Some of these issues only affect version 13, but may also apply to other supported versions.

Some of these fixes include:

Fix a breakage in the replication protocol by ensuring that two "command completion" events are expected for START_REPLICATION.
Ensure fsync is called on the SLRU caches that PostgreSQL maintains. This prevents potential data loss due to an operating system crash.
Fix ALTER ROLE usage for users with the BYPASSRLS permission.
ALTER TABLE ONLY ... DROP EXPRESSION is disallowed on partitioned tables when there are child tables.
Ensure that ALTER TABLE ONLY ... ENABLE/DISABLE TRIGGER does not apply to child tables.
Fix for ALTER TABLE ... SET NOT NULL on partitioned tables to avoid a potential deadlock in parallel pg_restore.
Fix handling of expressions in CREATE TABLE LIKE with inheritance.
DROP INDEX CONCURRENTLY is disallowed on partitioned tables.
Allow LOCK TABLE to succeed on a self-referential view instead of throwing an error.
Several fixes around statistics collection and progress reporting for REINDEX CONCURRENTLY.
Ensure that GENERATED columns are updated when any columns they depend on are updated via a rule or an updatable view.
Support hash partitioning with text array columns as partition keys.
Allow the jsonpath .datetime() method to accept ISO 8601-format timestamps.
During a "smart" shutdown, ensure background processes are not terminated until all foreground client sessions are completed, fixing an issue that broke the processing of parallel queries.
Several fixes for the query planner and optimizer.
Ensure that data is de-toasted before being inserted into a BRIN index. This could manifest itself with errors like "missing chunk number 0 for toast value NNN". If you have seen a similar error in 
an existing BRIN index, you should be able to correct it by using REINDEX on the index.
Fix the output of EXPLAIN to have the correct XML tag nesting for incremental sort plans.
Several fixes for memory leaks, including ones involving RLS policies, using CALL with PL/pgSQL, SIGHUP processing a configuration parameter that cannot be applied without a restart, and an edge-case 
for index lookup for a partition.
libpq can now support arbitrary-length lines in the .pgpass file.
On Windows, psql now reads the output of a backtick command in text mode, not binary mode, so it can now properly handle newlines.
Fix how pg_dump, pg_restore, clusterdb, reindexdb, and vacuumdb use complex connection-string parameters.
When the \connect command of psql reuses connection parameters, ensure that all non-overridden parameters from a previous connection string are also re-used.
Ensure that pg_dump collects per-column information about extension configuration tables, avoiding crashes when specifying --inserts.
Ensure that parallel pg_restore processes foreign keys referencing partitioned tables in the correct order.
Several fixes for contrib/pgcrypto, including a memory leak fix.

diffstat:

 databases/postgresql10-client/Makefile                                    |   5 +--
 databases/postgresql10-contrib/Makefile                                   |   3 +-
 databases/postgresql10-docs/Makefile                                      |   3 +-
 databases/postgresql10-docs/PLIST                                         |   3 +-
 databases/postgresql10-plperl/Makefile                                    |   3 +-
 databases/postgresql10-plpython/Makefile                                  |   3 +-
 databases/postgresql10-pltcl/Makefile                                     |   3 +-
 databases/postgresql10-server/Makefile                                    |   3 +-
 databases/postgresql10/Makefile                                           |   3 +-
 databases/postgresql10/Makefile.common                                    |   7 +++-
 databases/postgresql10/distinfo                                           |  10 +++---
 databases/postgresql11-client/Makefile                                    |   3 +-
 databases/postgresql11-contrib/Makefile                                   |   3 +-
 databases/postgresql11-docs/Makefile                                      |   3 +-
 databases/postgresql11-docs/PLIST                                         |   3 +-
 databases/postgresql11-plperl/Makefile                                    |   3 +-
 databases/postgresql11-plpython/Makefile                                  |   3 +-
 databases/postgresql11-pltcl/Makefile                                     |   3 +-
 databases/postgresql11-server/Makefile                                    |   3 +-
 databases/postgresql11/Makefile                                           |   3 +-
 databases/postgresql11/Makefile.common                                    |   6 ++--
 databases/postgresql11/distinfo                                           |  10 +++---
 databases/postgresql12-client/Makefile                                    |   5 +--
 databases/postgresql12-client/PLIST                                       |   3 +-
 databases/postgresql12-contrib/Makefile                                   |   3 +-
 databases/postgresql12-docs/Makefile                                      |   3 +-
 databases/postgresql12-docs/PLIST                                         |   3 +-
 databases/postgresql12-plperl/Makefile                                    |   3 +-
 databases/postgresql12-plpython/Makefile                                  |   3 +-
 databases/postgresql12-pltcl/Makefile                                     |   3 +-
 databases/postgresql12-server/Makefile                                    |   3 +-
 databases/postgresql12/Makefile                                           |   3 +-
 databases/postgresql12/Makefile.common                                    |   6 ++--
 databases/postgresql12/distinfo                                           |  11 ++++---
 databases/postgresql12/patches/patch-src_backend_commands_collationcmds.c |  15 ++++++++++
 databases/postgresql13-client/Makefile                                    |   3 +-
 databases/postgresql13-client/PLIST                                       |   3 +-
 databases/postgresql13-contrib/Makefile                                   |   3 +-
 databases/postgresql13-docs/Makefile                                      |   3 +-
 databases/postgresql13-docs/PLIST                                         |   3 +-
 databases/postgresql13-plperl/Makefile                                    |   3 +-
 databases/postgresql13-plpython/Makefile                                  |   3 +-
 databases/postgresql13-pltcl/Makefile                                     |   3 +-
 databases/postgresql13-server/Makefile                                    |   3 +-
 databases/postgresql13/Makefile                                           |   3 +-
 databases/postgresql13/Makefile.common                                    |   6 ++--
 databases/postgresql13/distinfo                                           |  10 +++---
 databases/postgresql95-client/Makefile                                    |   3 +-
 databases/postgresql95-client/PLIST                                       |   9 +++++-
 databases/postgresql95-contrib/Makefile                                   |   3 +-
 databases/postgresql95-docs/Makefile                                      |   3 +-
 databases/postgresql95-docs/PLIST                                         |   3 +-
 databases/postgresql95-plperl/Makefile                                    |   3 +-
 databases/postgresql95-plpython/Makefile                                  |   3 +-
 databases/postgresql95-plpython/PLIST                                     |   4 +-
 databases/postgresql95-pltcl/Makefile                                     |   3 +-
 databases/postgresql95-pltcl/PLIST                                        |   3 +-
 databases/postgresql95-server/Makefile                                    |   3 +-
 databases/postgresql95-server/PLIST                                       |   4 ++-
 databases/postgresql95/Makefile                                           |   3 +-
 databases/postgresql95/Makefile.common                                    |   4 +-
 databases/postgresql95/distinfo                                           |  10 +++---
 databases/postgresql96-client/Makefile                                    |   3 +-
 databases/postgresql96-contrib/Makefile                                   |   3 +-
 databases/postgresql96-docs/Makefile                                      |   3 +-
 databases/postgresql96-docs/PLIST                                         |   3 +-
 databases/postgresql96-plperl/Makefile                                    |   3 +-
 databases/postgresql96-plpython/Makefile                                  |   3 +-
 databases/postgresql96-pltcl/Makefile                                     |   3 +-
 databases/postgresql96-server/Makefile                                    |   3 +-
 databases/postgresql96/Makefile                                           |   3 +-
 databases/postgresql96/Makefile.common                                    |   4 +-
 databases/postgresql96/distinfo                                           |  10 +++---
 73 files changed, 144 insertions(+), 157 deletions(-)

diffs (truncated from 1090 to 300 lines):

diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-client/Makefile
--- a/databases/postgresql10-client/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-client/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,12 +1,11 @@
-# $NetBSD: Makefile,v 1.12 2020/11/05 09:07:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.13 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-client-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql10/Makefile.common"
 
-USE_TOOLS+=            gzip tar
+USE_TOOLS+=            gzip msgfmt tar
 TOOLS_BROKEN+=         perl
 CONFIGURE_ARGS+=       --with-openssl
 CONFIGURE_ARGS+=       --with-zlib
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-contrib/Makefile
--- a/databases/postgresql10-contrib/Makefile   Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-contrib/Makefile   Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2020/11/05 09:07:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.13 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-contrib-/}
-PKGREVISION=   2
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-docs/Makefile
--- a/databases/postgresql10-docs/Makefile      Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-docs/Makefile      Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2020/11/05 09:07:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.9 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-docs-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql10/Makefile.common"
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-docs/PLIST
--- a/databases/postgresql10-docs/PLIST Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-docs/PLIST Mon Nov 16 12:15:02 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2020/08/14 06:56:22 adam Exp $
+@comment $NetBSD: PLIST,v 1.16 2020/11/16 12:15:02 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -915,6 +915,7 @@
 share/doc/postgresql/html/release-10-12.html
 share/doc/postgresql/html/release-10-13.html
 share/doc/postgresql/html/release-10-14.html
+share/doc/postgresql/html/release-10-15.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 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-plperl/Makefile
--- a/databases/postgresql10-plperl/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-plperl/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.9 2020/11/05 09:07:43 ryoon Exp $
+#$ $NetBSD: Makefile,v 1.10 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-plperl-/}
-PKGREVISION=   2
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-plpython/Makefile
--- a/databases/postgresql10-plpython/Makefile  Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-plpython/Makefile  Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.12 2020/11/05 09:07:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.13 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-plpython-/}
-PKGREVISION=   2
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-pltcl/Makefile
--- a/databases/postgresql10-pltcl/Makefile     Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-pltcl/Makefile     Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.11 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-pltcl-/}
-PKGREVISION=   2
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql10-server>=${PKGVERSION_NOREV}:../../databases/postgresql10-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10-server/Makefile
--- a/databases/postgresql10-server/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10-server/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.14 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.15 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-server-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10/Makefile
--- a/databases/postgresql10/Makefile   Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10/Makefile   Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2020/11/05 09:07:43 ryoon Exp $
+# $NetBSD: Makefile,v 1.21 2020/11/16 12:15:02 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/10-/}
-PKGREVISION=   2
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql10-client>=${PKGVERSION_NOREV}:../../databases/postgresql10-client
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10/Makefile.common
--- a/databases/postgresql10/Makefile.common    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10/Makefile.common    Mon Nov 16 12:15:02 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.22 2020/08/14 06:56:22 adam Exp $
+# $NetBSD: Makefile.common,v 1.23 2020/11/16 12:15:02 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.14
+DISTNAME=      postgresql-10.15
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
@@ -68,6 +68,9 @@
 CONFIGURE_ARGS+=       --without-python
 CONFIGURE_ARGS+=       --without-tcl
 
+# avoid pointing to a wrapper
+CONFIGURE_ENV+=                MSGFMT=${TOOLS_PATH.msgfmt}
+
 # sys/ucred.h shouldn't be included on Solaris, causes conflicts between
 # procfs and largefile.
 CONFIGURE_ENV.SunOS+=  ac_cv_header_sys_ucred_h=no
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql10/distinfo
--- a/databases/postgresql10/distinfo   Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql10/distinfo   Mon Nov 16 12:15:02 2020 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.16 2020/08/14 06:56:22 adam Exp $
+$NetBSD: distinfo,v 1.17 2020/11/16 12:15:02 adam Exp $
 
-SHA1 (postgresql-10.14.tar.bz2) = db230e62422673814419e76508708164a2cbfb09
-RMD160 (postgresql-10.14.tar.bz2) = 7f73551d98a67bbfd285be9185e529a43755da50
-SHA512 (postgresql-10.14.tar.bz2) = eecd2aa8df7e4779606ec547b7bf0207ebb2be10a4b332f06c3b72116f0619fe27fb651f2fd4504c73b740ab7f92468919244a615d460bb9c35085174a0dbc78
-Size (postgresql-10.14.tar.bz2) = 19042154 bytes
+SHA1 (postgresql-10.15.tar.bz2) = 3d688f05d2de7c9ed89ef6be8d33906a4e7a833d
+RMD160 (postgresql-10.15.tar.bz2) = d913c1f991c16bae10db941d9b9fdb0d31f92ebe
+SHA512 (postgresql-10.15.tar.bz2) = 88fe322a8691692f8c1b8ca7f7a5a035c399c1d2a0e6276b60863f2c0cb8e4857b041d7364641e0738438aee0836688e712b9c176ac454ee98386dfd18754636
+Size (postgresql-10.15.tar.bz2) = 19089779 bytes
 SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
 SHA1 (patch-config_perl.m4) = b3393d0f28e97f89ae20297d85553c508b3896bb
 SHA1 (patch-configure) = b0a758023b3b263ff51b154d0da32cf02520c6cd
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-client/Makefile
--- a/databases/postgresql11-client/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-client/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.9 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-client-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-contrib/Makefile
--- a/databases/postgresql11-contrib/Makefile   Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-contrib/Makefile   Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.10 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-contrib-/}
-PKGREVISION=   2
 COMMENT=       Contrib subtree of tools and plug-ins
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-docs/Makefile
--- a/databases/postgresql11-docs/Makefile      Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-docs/Makefile      Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.7 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-docs-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database documentation
 
 .include "../../databases/postgresql11/Makefile.common"
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-docs/PLIST
--- a/databases/postgresql11-docs/PLIST Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-docs/PLIST Mon Nov 16 12:15:02 2020 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2020/08/14 06:56:23 adam Exp $
+@comment $NetBSD: PLIST,v 1.11 2020/11/16 12:15:03 adam Exp $
 man/man1/clusterdb.1
 man/man1/createdb.1
 man/man1/createuser.1
@@ -946,6 +946,7 @@
 share/doc/postgresql/html/regress-variant.html
 share/doc/postgresql/html/regress.html
 share/doc/postgresql/html/release-11-1.html
+share/doc/postgresql/html/release-11-10.html
 share/doc/postgresql/html/release-11-2.html
 share/doc/postgresql/html/release-11-3.html
 share/doc/postgresql/html/release-11-4.html
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-plperl/Makefile
--- a/databases/postgresql11-plperl/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-plperl/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-#$ $NetBSD: Makefile,v 1.7 2020/11/05 09:07:44 ryoon Exp $
+#$ $NetBSD: Makefile,v 1.8 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-plperl-/}
-PKGREVISION=   2
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-plpython/Makefile
--- a/databases/postgresql11-plpython/Makefile  Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-plpython/Makefile  Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.11 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-plpython-/}
-PKGREVISION=   2
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-pltcl/Makefile
--- a/databases/postgresql11-pltcl/Makefile     Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-pltcl/Makefile     Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.9 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-pltcl-/}
-PKGREVISION=   2
 COMMENT=       PL/Tcl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql11-server>=${PKGVERSION_NOREV}:../../databases/postgresql11-server
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11-server/Makefile
--- a/databases/postgresql11-server/Makefile    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11-server/Makefile    Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2020/11/05 09:07:45 ryoon Exp $
+# $NetBSD: Makefile,v 1.12 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-server-/}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11/Makefile
--- a/databases/postgresql11/Makefile   Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11/Makefile   Mon Nov 16 12:15:02 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2020/11/05 09:07:44 ryoon Exp $
+# $NetBSD: Makefile,v 1.14 2020/11/16 12:15:03 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/11-/}
-PKGREVISION=   2
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql11-client>=${PKGVERSION_NOREV}:../../databases/postgresql11-client
diff -r 4214b5afb65b -r f3b4edf20a99 databases/postgresql11/Makefile.common
--- a/databases/postgresql11/Makefile.common    Mon Nov 16 12:10:05 2020 +0000
+++ b/databases/postgresql11/Makefile.common    Mon Nov 16 12:15:02 2020 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.15 2020/08/14 06:56:23 adam Exp $
+# $NetBSD: Makefile.common,v 1.16 2020/11/16 12:15:03 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.9
+DISTNAME=      postgresql-11.10
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
 EXTRACT_SUFX=  .tar.bz2
@@ -45,7 +45,7 @@
 PG_TEMPLATE.SunOS=     solaris
 PG_TEMPLATE.IRIX=      irix5
 PG_TEMPLATE.MirBSD=    openbsd



Home | Main Index | Thread Index | Old Index