diff options
author | adam <adam> | 2007-09-19 20:01:58 +0000 |
---|---|---|
committer | adam <adam> | 2007-09-19 20:01:58 +0000 |
commit | 826d113f7823cd2cdf6bfc98ff55dfc9c93de821 (patch) | |
tree | cd625f98d93383eddf3eae18f2fb57649867d6dc | |
parent | 5c70997657c69bf47f37c93742fa3a3e1d560904 (diff) | |
download | pkgsrc-826d113f7823cd2cdf6bfc98ff55dfc9c93de821.tar.gz |
Changes 8.1.10:
* Prevent index corruption when a transaction inserts rows and then
aborts close to the end of a concurrent "VACUUM" on the same table
* Make "CREATE DOMAIN ... DEFAULT NULL" work properly
* Allow the interval data type to accept input consisting only of
milliseconds or microseconds
* Speed up rtree index insertion
* Fix excessive logging of SSL error messages
* Fix logging so that log messages are never interleaved when using
the syslogger process
* Fix crash when log_min_error_statement logging runs out of memory
* Fix incorrect handling of some foreign-key corner cases
* Prevent "REINDEX" and "CLUSTER" from failing due to attempting to
process temporary tables of other sessions
* Update the time zone database rules, particularly New Zealand's
upcoming changes
* Windows socket improvements
* Suppress timezone name (%Z) in log timestamps on Windows because of
possible encoding mismatches
* Require non-superusers who use "/contrib/dblink" to use only
password authentication, as a security measure
-rw-r--r-- | databases/postgresql81-client/PLIST | 6 | ||||
-rw-r--r-- | databases/postgresql81-server/PLIST | 3 | ||||
-rw-r--r-- | databases/postgresql81/Makefile.common | 4 | ||||
-rw-r--r-- | databases/postgresql81/distinfo | 8 |
4 files changed, 13 insertions, 8 deletions
diff --git a/databases/postgresql81-client/PLIST b/databases/postgresql81-client/PLIST index 999c227f057..1547dc0026d 100644 --- a/databases/postgresql81-client/PLIST +++ b/databases/postgresql81-client/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2007/04/30 13:37:22 adam Exp $ +@comment $NetBSD: PLIST,v 1.8 2007/09/19 20:01:58 adam Exp $ ${PG_SUBPREFIX}bin/clusterdb ${PG_SUBPREFIX}bin/createdb ${PG_SUBPREFIX}bin/createlang @@ -988,6 +988,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-16.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-17.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-18.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-19.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-20.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-4.html @@ -1006,6 +1007,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-14.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-15.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-16.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-17.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-18.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-4.html @@ -1020,6 +1022,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-10.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-11.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-12.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-13.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-14.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-2.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html @@ -1037,6 +1040,7 @@ ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-5.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-6.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-7.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-8.html +${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-9.html ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1.html ${PG_SUBPREFIX}share/doc/postgresql/html/release.html ${PG_SUBPREFIX}share/doc/postgresql/html/resources.html diff --git a/databases/postgresql81-server/PLIST b/databases/postgresql81-server/PLIST index 0db9c64e436..17e0186b6e8 100644 --- a/databases/postgresql81-server/PLIST +++ b/databases/postgresql81-server/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2007/04/30 13:37:22 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2007/09/19 20:01:58 adam Exp $ ${PG_SUBPREFIX}bin/postgres ${PG_SUBPREFIX}bin/postmaster ${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la @@ -183,6 +183,7 @@ ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Indianapolis ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Knox ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Marengo ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Petersburg +${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Tell_City ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vevay ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vincennes ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Winamac diff --git a/databases/postgresql81/Makefile.common b/databases/postgresql81/Makefile.common index 6a00ab8a981..337859c8cd7 100644 --- a/databases/postgresql81/Makefile.common +++ b/databases/postgresql81/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.13 2007/05/04 20:04:52 adam Exp $ +# $NetBSD: Makefile.common,v 1.14 2007/09/19 20:01:58 adam Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -36,7 +36,7 @@ PATCHDIR?= ${.CURDIR}/../postgresql81/patches # # Note: Do not forget jdbc-postgresql81 when updating version # -DIST_VERS?= 8.1.9 +DIST_VERS?= 8.1.10 BASE_VERS?= ${DIST_VERS} BUILDLINK_API_DEPENDS.postgresql81-client+= postgresql81-client>=${BASE_VERS} diff --git a/databases/postgresql81/distinfo b/databases/postgresql81/distinfo index 32f89e6cc60..a254c63ba1c 100644 --- a/databases/postgresql81/distinfo +++ b/databases/postgresql81/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.9 2007/04/30 13:37:22 adam Exp $ +$NetBSD: distinfo,v 1.10 2007/09/19 20:01:58 adam Exp $ -SHA1 (postgresql-8.1.9.tar.bz2) = ba0b09ce916ee19a3cc6eb9f614bc05c7babc5ac -RMD160 (postgresql-8.1.9.tar.bz2) = ab86aac72e6ecdc5806da14afd877d86ace0a626 -Size (postgresql-8.1.9.tar.bz2) = 11723124 bytes +SHA1 (postgresql-8.1.10.tar.bz2) = c24adba8e3e6cc2ec2e3ce6cda592a8d8850b7c5 +RMD160 (postgresql-8.1.10.tar.bz2) = 0786f3bc568cddba8eb5e2682f35037ec20a60c1 +Size (postgresql-8.1.10.tar.bz2) = 11720107 bytes SHA1 (patch-aa) = a7112ce2e9fc28f638afcf2e196d3cdc0f4c254d SHA1 (patch-ab) = 5bf5f46e86025772cbdb9c9d22c942b40288f82f SHA1 (patch-ac) = cbd302a60d43171854c37171b57ee7bbf1194ad9 |