summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam>2013-10-12 07:04:22 +0000
committeradam <adam>2013-10-12 07:04:22 +0000
commit1ddf523ca95b0fd2ca4980d00e6276461239062e (patch)
tree57b1d2a4930ae447449414002d947a6fd426b297
parent546e526b97c3e98c60bc977c008612d42bf12c47 (diff)
downloadpkgsrc-1ddf523ca95b0fd2ca4980d00e6276461239062e.tar.gz
Changes 9.2.5:
Guarantee transmission of all WAL files before replica failover Prevent downcasing of non-ASCII identifiers Fix several minor memory leaks Correct overcommit behavior when using more than 24GB of work memory Improve planner cost estimates for choosing generic plans Fix estimates of NULL rows in boolean columns Make UNION ALL and inheritance query plans recheck parameterized paths Correct pg_dump bugs for foreign tables, views, and extensions Prevent a parallel pg_restore failure on certain indexes Make REINDEX revalidate constraints Prevent two deadlock issues in SP-GIST and REINDEX CONCURRENTLY Prevent GiST index lookup crash Fix several regular expression failures Allow ALTER DEFAULT PRIVILEGES to work on all schemas Loosen restrictions on keywords Allow various spellings of infinity Expand ability to compare rows to records and arrays Prevent psql client crash on bad PSQLRC file Add spinlock support for ARM64
-rw-r--r--databases/postgresql92-docs/Makefile3
-rw-r--r--databases/postgresql92-docs/PLIST6
-rw-r--r--databases/postgresql92-server/Makefile3
-rw-r--r--databases/postgresql92/Makefile3
-rw-r--r--databases/postgresql92/Makefile.common4
-rw-r--r--databases/postgresql92/distinfo8
6 files changed, 14 insertions, 13 deletions
diff --git a/databases/postgresql92-docs/Makefile b/databases/postgresql92-docs/Makefile
index 8c04cfa00f5..55981d25aa0 100644
--- a/databases/postgresql92-docs/Makefile
+++ b/databases/postgresql92-docs/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2013/05/31 12:39:56 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2013/10/12 07:04:22 adam Exp $
PKGNAME= ${DISTNAME:C/-/92-docs-/}
-PKGREVISION= 1
COMMENT= PostgreSQL database documentation
.include "../../databases/postgresql92/Makefile.common"
diff --git a/databases/postgresql92-docs/PLIST b/databases/postgresql92-docs/PLIST
index 9d04d0ec017..e2a9506234f 100644
--- a/databases/postgresql92-docs/PLIST
+++ b/databases/postgresql92-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2013/04/04 21:08:37 adam Exp $
+@comment $NetBSD: PLIST,v 1.5 2013/10/12 07:04:22 adam Exp $
man/man1/clusterdb.1
man/man1/createdb.1
man/man1/createlang.1
@@ -1001,6 +1001,7 @@ share/doc/postgresql/html/release-8-4-14.html
share/doc/postgresql/html/release-8-4-15.html
share/doc/postgresql/html/release-8-4-16.html
share/doc/postgresql/html/release-8-4-17.html
+share/doc/postgresql/html/release-8-4-18.html
share/doc/postgresql/html/release-8-4-2.html
share/doc/postgresql/html/release-8-4-3.html
share/doc/postgresql/html/release-8-4-4.html
@@ -1015,6 +1016,7 @@ share/doc/postgresql/html/release-9-0-10.html
share/doc/postgresql/html/release-9-0-11.html
share/doc/postgresql/html/release-9-0-12.html
share/doc/postgresql/html/release-9-0-13.html
+share/doc/postgresql/html/release-9-0-14.html
share/doc/postgresql/html/release-9-0-2.html
share/doc/postgresql/html/release-9-0-3.html
share/doc/postgresql/html/release-9-0-4.html
@@ -1025,6 +1027,7 @@ share/doc/postgresql/html/release-9-0-8.html
share/doc/postgresql/html/release-9-0-9.html
share/doc/postgresql/html/release-9-0.html
share/doc/postgresql/html/release-9-1-1.html
+share/doc/postgresql/html/release-9-1-10.html
share/doc/postgresql/html/release-9-1-2.html
share/doc/postgresql/html/release-9-1-3.html
share/doc/postgresql/html/release-9-1-4.html
@@ -1038,6 +1041,7 @@ share/doc/postgresql/html/release-9-2-1.html
share/doc/postgresql/html/release-9-2-2.html
share/doc/postgresql/html/release-9-2-3.html
share/doc/postgresql/html/release-9-2-4.html
+share/doc/postgresql/html/release-9-2-5.html
share/doc/postgresql/html/release-9-2.html
share/doc/postgresql/html/release.html
share/doc/postgresql/html/resources.html
diff --git a/databases/postgresql92-server/Makefile b/databases/postgresql92-server/Makefile
index 7659b437ffa..d4d42be1155 100644
--- a/databases/postgresql92-server/Makefile
+++ b/databases/postgresql92-server/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2013/07/12 10:44:54 jperkin Exp $
+# $NetBSD: Makefile,v 1.6 2013/10/12 07:04:22 adam Exp $
PKGNAME= ${DISTNAME:C/-/92-server-/}
-PKGREVISION= 1
COMMENT= PostgreSQL database server programs
# mips has no TAS implementation
diff --git a/databases/postgresql92/Makefile b/databases/postgresql92/Makefile
index 8a815380739..9f1580e0b98 100644
--- a/databases/postgresql92/Makefile
+++ b/databases/postgresql92/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2013/05/31 12:39:56 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2013/10/12 07:04:22 adam Exp $
PKGNAME= ${DISTNAME:C/-/92-/}
-PKGREVISION= 1
COMMENT= Robust, next generation, object-relational DBMS
DEPENDS+= postgresql92-client>=${PKGVERSION_NOREV}:../../databases/postgresql92-client
diff --git a/databases/postgresql92/Makefile.common b/databases/postgresql92/Makefile.common
index e5413a6f78e..9a62e802ecc 100644
--- a/databases/postgresql92/Makefile.common
+++ b/databases/postgresql92/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.5 2013/04/04 21:08:36 adam Exp $
+# $NetBSD: Makefile.common,v 1.6 2013/10/12 07:04:22 adam Exp $
#
# used by databases/postgresql92-adminpack/Makefile
# used by databases/postgresql92-client/Makefile
@@ -21,7 +21,7 @@
# <lang>-postgresql client-side interface to PostgreSQL
# postgresql-<lang> server-side module for PostgreSQL backend
-DISTNAME= postgresql-9.2.4
+DISTNAME= postgresql-9.2.5
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_PGSQL:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2
diff --git a/databases/postgresql92/distinfo b/databases/postgresql92/distinfo
index 408b1c2a0e2..a707dd15142 100644
--- a/databases/postgresql92/distinfo
+++ b/databases/postgresql92/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.4 2013/04/04 21:08:36 adam Exp $
+$NetBSD: distinfo,v 1.5 2013/10/12 07:04:22 adam Exp $
-SHA1 (postgresql-9.2.4.tar.bz2) = 75b53c884cb10ed9404747b51677358f12082152
-RMD160 (postgresql-9.2.4.tar.bz2) = 7d3f523e20e79651ca0dbfe2c8ee240da52cb404
-Size (postgresql-9.2.4.tar.bz2) = 16395184 bytes
+SHA1 (postgresql-9.2.5.tar.bz2) = 176ac1de372c06192ec1012b17001414cfa40929
+RMD160 (postgresql-9.2.5.tar.bz2) = f156ac1770deab4d5f7bc7ed1dba1e97181a6968
+Size (postgresql-9.2.5.tar.bz2) = 16485711 bytes
SHA1 (patch-config_missing) = c2d7d742922ba6861e7660c75b7b53f09e564813
SHA1 (patch-config_perl.m4) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
SHA1 (patch-configure) = 21b27add570cff1a24c440201eb1ed49f8223747