pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases Changes 8.1.10:
details: https://anonhg.NetBSD.org/pkgsrc/rev/d1a7e2945f83
branches: trunk
changeset: 533463:d1a7e2945f83
user: adam <adam%pkgsrc.org@localhost>
date: Wed Sep 19 20:01:58 2007 +0000
description:
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
diffstat:
databases/postgresql81-client/PLIST | 6 +++++-
databases/postgresql81-server/PLIST | 3 ++-
databases/postgresql81/Makefile.common | 4 ++--
databases/postgresql81/distinfo | 8 ++++----
4 files changed, 13 insertions(+), 8 deletions(-)
diffs (92 lines):
diff -r 73fa07a400ca -r d1a7e2945f83 databases/postgresql81-client/PLIST
--- a/databases/postgresql81-client/PLIST Wed Sep 19 20:01:47 2007 +0000
+++ b/databases/postgresql81-client/PLIST Wed Sep 19 20:01:58 2007 +0000
@@ -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-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-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-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-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 -r 73fa07a400ca -r d1a7e2945f83 databases/postgresql81-server/PLIST
--- a/databases/postgresql81-server/PLIST Wed Sep 19 20:01:47 2007 +0000
+++ b/databases/postgresql81-server/PLIST Wed Sep 19 20:01:58 2007 +0000
@@ -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/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 -r 73fa07a400ca -r d1a7e2945f83 databases/postgresql81/Makefile.common
--- a/databases/postgresql81/Makefile.common Wed Sep 19 20:01:47 2007 +0000
+++ b/databases/postgresql81/Makefile.common Wed Sep 19 20:01:58 2007 +0000
@@ -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 @@
#
# 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 -r 73fa07a400ca -r d1a7e2945f83 databases/postgresql81/distinfo
--- a/databases/postgresql81/distinfo Wed Sep 19 20:01:47 2007 +0000
+++ b/databases/postgresql81/distinfo Wed Sep 19 20:01:58 2007 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index