summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2011-12-07 16:00:41 +0000
committeradam <adam@pkgsrc.org>2011-12-07 16:00:41 +0000
commit93dca68e3dd13024f75b440ab2e7c12c40d806c5 (patch)
tree70feff387ec3135d0105a6aa4e6e6f2b852c2528
parent81f1328f4bd622f7e17c2a8fa00f3c11eac61085 (diff)
downloadpkgsrc-93dca68e3dd13024f75b440ab2e7c12c40d806c5.tar.gz
Changes 9.0.6:
* Fix bugs in information_schema.referential_constraints view * Correct collations for citext columns and indexes * Prevent possible crash when joining to a scalar function * Prevent transitory data corruption of GIN indexes after a crash * Prevent data corruption on TOAST columns when copying data * Fix failures during hot standby startup * Correct another "variable not found in subplan target list" bug * Fix bug with sorting on aggregate expressions in windowing functions * Multiple bug fixes for pg_upgrade * Change Foreign Key creation order to better support self-referential keys * Multiple bug fixes to CREATE EXTENSION * Ensure that function return type and data returned from PL/perl agree * Ensure that PL/perl strings are always UTF-8 * Assorted bug fixes for various Extensions * Updates to the time zone database, particularly to CST6
-rw-r--r--databases/postgresql90-docs/PLIST6
-rw-r--r--databases/postgresql90-server/PLIST3
-rw-r--r--databases/postgresql90/Makefile.common4
-rw-r--r--databases/postgresql90/distinfo8
4 files changed, 13 insertions, 8 deletions
diff --git a/databases/postgresql90-docs/PLIST b/databases/postgresql90-docs/PLIST
index 59a7e46c6c8..b7d12b689e5 100644
--- a/databases/postgresql90-docs/PLIST
+++ b/databases/postgresql90-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2011/09/27 11:04:42 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2011/12/07 16:00:41 adam Exp $
${PG_SUBPREFIX}man/man1/clusterdb.1
${PG_SUBPREFIX}man/man1/createdb.1
${PG_SUBPREFIX}man/man1/createlang.1
@@ -884,6 +884,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-2.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-20.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-21.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-22.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-23.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-3.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-4.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-5.html
@@ -900,6 +901,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-13.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-14.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-15.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-16.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-17.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-2.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-3.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-4.html
@@ -910,6 +912,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-8.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-9.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-4-1.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-8-4-10.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-4-2.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-4-3.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-8-4-4.html
@@ -924,6 +927,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0-2.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0-3.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0-4.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0-5.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0-6.html
${PG_SUBPREFIX}share/doc/postgresql/html/release-9-0.html
${PG_SUBPREFIX}share/doc/postgresql/html/release.html
${PG_SUBPREFIX}share/doc/postgresql/html/resources.html
diff --git a/databases/postgresql90-server/PLIST b/databases/postgresql90-server/PLIST
index c845c41bbc0..93e04f348f8 100644
--- a/databases/postgresql90-server/PLIST
+++ b/databases/postgresql90-server/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2011/09/27 11:04:42 adam Exp $
+@comment $NetBSD: PLIST,v 1.8 2011/12/07 16:00:41 adam Exp $
${PG_SUBPREFIX}bin/postgres
${PG_SUBPREFIX}bin/postmaster
${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.so
@@ -323,6 +323,7 @@ ${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dubai
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dushanbe
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Gaza
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Harbin
+${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hebron
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ho_Chi_Minh
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hong_Kong
${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hovd
diff --git a/databases/postgresql90/Makefile.common b/databases/postgresql90/Makefile.common
index b878980c6b3..997b76d5cb0 100644
--- a/databases/postgresql90/Makefile.common
+++ b/databases/postgresql90/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.13 2011/10/12 19:45:25 hans Exp $
+# $NetBSD: Makefile.common,v 1.14 2011/12/07 16:00:41 adam Exp $
#
# used by databases/postgresql90-adminpack/Makefile
# used by databases/postgresql90-client/Makefile
@@ -23,7 +23,7 @@
.include "../../databases/postgresql90/Makefile.mirrors"
-DISTNAME= postgresql-9.0.5
+DISTNAME= postgresql-9.0.6
CATEGORIES= databases
MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/}
EXTRACT_SUFX= .tar.bz2
diff --git a/databases/postgresql90/distinfo b/databases/postgresql90/distinfo
index dd5827efcee..9bb5810e847 100644
--- a/databases/postgresql90/distinfo
+++ b/databases/postgresql90/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.8 2011/10/12 19:45:25 hans Exp $
+$NetBSD: distinfo,v 1.9 2011/12/07 16:00:41 adam Exp $
-SHA1 (postgresql-9.0.5.tar.bz2) = 1c71be5b1a7d519eff33bb60768776f47b44acf3
-RMD160 (postgresql-9.0.5.tar.bz2) = c5f4f37808f7e24d91a6c95d41fc89330624e26f
-Size (postgresql-9.0.5.tar.bz2) = 14344752 bytes
+SHA1 (postgresql-9.0.6.tar.bz2) = 4a9a7d5579d3683ca1992b2ba116a4356094b3ca
+RMD160 (postgresql-9.0.6.tar.bz2) = e1794a28e495b861c2f82b325b4e28e71faa58ca
+Size (postgresql-9.0.6.tar.bz2) = 14777282 bytes
SHA1 (patch-aa) = c7e5aaff1c47d2e33df7692a412ef984c77ffcc0
SHA1 (patch-ab) = 6adfc53e325abe69582f1c7971f56144c697e9c1
SHA1 (patch-ac) = 76ddd3015d93b19cdd6000eaffc4f53cbd4965b5