diff options
author | adam <adam@pkgsrc.org> | 2011-12-15 17:16:13 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2011-12-15 17:16:13 +0000 |
commit | bbc876eebd6a57dae03b28729bdb4e9fd1bf656f (patch) | |
tree | 8fd7d021a8f3260ee48d779318598a0a7f504635 | |
parent | c51fe5d06a5ce49ebe2c3e27a8654ae30a6a6df5 (diff) | |
download | pkgsrc-bbc876eebd6a57dae03b28729bdb4e9fd1bf656f.tar.gz |
Changes 8.4.10:
* 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/postgresql84-client/PLIST | 6 | ||||
-rw-r--r-- | databases/postgresql84-plpython/PLIST | 3 | ||||
-rw-r--r-- | databases/postgresql84-server/PLIST | 3 | ||||
-rw-r--r-- | databases/postgresql84/Makefile.common | 4 | ||||
-rw-r--r-- | databases/postgresql84/distinfo | 8 |
5 files changed, 15 insertions, 9 deletions
diff --git a/databases/postgresql84-client/PLIST b/databases/postgresql84-client/PLIST index a500d64f53c..8339a0aaff5 100644 --- a/databases/postgresql84-client/PLIST +++ b/databases/postgresql84-client/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2011/09/27 11:04:30 adam Exp $ +@comment $NetBSD: PLIST,v 1.12 2011/12/15 17:16:13 adam Exp $ bin/clusterdb bin/createdb bin/createlang @@ -1314,6 +1314,7 @@ share/doc/postgresql/html/release-8-2-2.html share/doc/postgresql/html/release-8-2-20.html share/doc/postgresql/html/release-8-2-21.html share/doc/postgresql/html/release-8-2-22.html +share/doc/postgresql/html/release-8-2-23.html share/doc/postgresql/html/release-8-2-3.html share/doc/postgresql/html/release-8-2-4.html share/doc/postgresql/html/release-8-2-5.html @@ -1330,6 +1331,7 @@ share/doc/postgresql/html/release-8-3-13.html share/doc/postgresql/html/release-8-3-14.html share/doc/postgresql/html/release-8-3-15.html share/doc/postgresql/html/release-8-3-16.html +share/doc/postgresql/html/release-8-3-17.html share/doc/postgresql/html/release-8-3-2.html share/doc/postgresql/html/release-8-3-3.html share/doc/postgresql/html/release-8-3-4.html @@ -1340,6 +1342,7 @@ share/doc/postgresql/html/release-8-3-8.html share/doc/postgresql/html/release-8-3-9.html share/doc/postgresql/html/release-8-3.html share/doc/postgresql/html/release-8-4-1.html +share/doc/postgresql/html/release-8-4-10.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 @@ -1766,6 +1769,7 @@ share/locale/pl/LC_MESSAGES/pg_ctl-8.4.mo share/locale/pl/LC_MESSAGES/pg_dump-8.4.mo share/locale/pl/LC_MESSAGES/pg_resetxlog-8.4.mo share/locale/pl/LC_MESSAGES/pgscripts-8.4.mo +share/locale/pl/LC_MESSAGES/psql-8.4.mo share/locale/pt_BR/LC_MESSAGES/ecpg-8.4.mo share/locale/pt_BR/LC_MESSAGES/ecpglib6-8.4.mo share/locale/pt_BR/LC_MESSAGES/initdb-8.4.mo diff --git a/databases/postgresql84-plpython/PLIST b/databases/postgresql84-plpython/PLIST index 68e63d18b13..0767ade8c86 100644 --- a/databases/postgresql84-plpython/PLIST +++ b/databases/postgresql84-plpython/PLIST @@ -1,10 +1,11 @@ -@comment $NetBSD: PLIST,v 1.5 2011/02/15 08:14:16 adam Exp $ +@comment $NetBSD: PLIST,v 1.6 2011/12/15 17:16:13 adam Exp $ lib/postgresql/plpython.so share/locale/de/LC_MESSAGES/plpython-8.4.mo share/locale/es/LC_MESSAGES/plpython-8.4.mo share/locale/fr/LC_MESSAGES/plpython-8.4.mo share/locale/it/LC_MESSAGES/plpython-8.4.mo share/locale/ja/LC_MESSAGES/plpython-8.4.mo +share/locale/pl/LC_MESSAGES/plpython-8.4.mo share/locale/pt_BR/LC_MESSAGES/plpython-8.4.mo share/locale/tr/LC_MESSAGES/plpython-8.4.mo share/locale/zh_CN/LC_MESSAGES/plpython-8.4.mo diff --git a/databases/postgresql84-server/PLIST b/databases/postgresql84-server/PLIST index 35c17111704..6f96c1a93d3 100644 --- a/databases/postgresql84-server/PLIST +++ b/databases/postgresql84-server/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2011/09/27 11:04:30 adam Exp $ +@comment $NetBSD: PLIST,v 1.11 2011/12/15 17:16:13 adam Exp $ bin/postgres bin/postmaster lib/postgresql/ascii_and_mic.so @@ -320,6 +320,7 @@ share/postgresql/timezone/Asia/Dubai share/postgresql/timezone/Asia/Dushanbe share/postgresql/timezone/Asia/Gaza share/postgresql/timezone/Asia/Harbin +share/postgresql/timezone/Asia/Hebron share/postgresql/timezone/Asia/Ho_Chi_Minh share/postgresql/timezone/Asia/Hong_Kong share/postgresql/timezone/Asia/Hovd diff --git a/databases/postgresql84/Makefile.common b/databases/postgresql84/Makefile.common index 84dac2720c3..c8573c2b2fd 100644 --- a/databases/postgresql84/Makefile.common +++ b/databases/postgresql84/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.16 2011/10/12 19:44:51 hans Exp $ +# $NetBSD: Makefile.common,v 1.17 2011/12/15 17:16:13 adam Exp $ # # used by databases/postgresql84-adminpack/Makefile # used by databases/postgresql84-client/Makefile @@ -19,7 +19,7 @@ .include "../../databases/postgresql84/Makefile.mirrors" -DISTNAME= postgresql-8.4.9 +DISTNAME= postgresql-8.4.10 CATEGORIES= databases MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/} EXTRACT_SUFX= .tar.bz2 diff --git a/databases/postgresql84/distinfo b/databases/postgresql84/distinfo index 8e31218e607..8bae5914522 100644 --- a/databases/postgresql84/distinfo +++ b/databases/postgresql84/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.15 2011/10/12 19:44:51 hans Exp $ +$NetBSD: distinfo,v 1.16 2011/12/15 17:16:13 adam Exp $ -SHA1 (postgresql-8.4.9.tar.bz2) = 7b6bbd72db0f63ea55890427ab6c7a40e7c7ff1b -RMD160 (postgresql-8.4.9.tar.bz2) = 469acc1d1358c48334896fb8fa84de1d287183d5 -Size (postgresql-8.4.9.tar.bz2) = 14275979 bytes +SHA1 (postgresql-8.4.10.tar.bz2) = 31202e47fd2274b3a846d98c961cd7281d1798e8 +RMD160 (postgresql-8.4.10.tar.bz2) = ce5961033fc05b9e862cfef3c164d8faed19ce89 +Size (postgresql-8.4.10.tar.bz2) = 14481565 bytes SHA1 (patch-aa) = 72437773d67939c8d8c8e9a99caf430590fd726f SHA1 (patch-ab) = aa46d88c8a72edaf95880de48474ea484d6d2bf5 SHA1 (patch-ac) = 0b82797d0b80bdd1e9b5f3de4989fe3848adf6cb |