pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases Changes 8.0.14:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/73fa07a400ca
branches:  trunk
changeset: 533462:73fa07a400ca
user:      adam <adam%pkgsrc.org@localhost>
date:      Wed Sep 19 20:01:47 2007 +0000

description:
Changes 8.0.14:
* 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
* 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 "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/postgresql80-client/PLIST    |  5 ++++-
 databases/postgresql80-server/Makefile |  3 +--
 databases/postgresql80-server/PLIST    |  3 ++-
 databases/postgresql80/Makefile.common |  4 ++--
 databases/postgresql80/distinfo        |  8 ++++----
 5 files changed, 13 insertions(+), 10 deletions(-)

diffs (96 lines):

diff -r 7216b57e3b1f -r 73fa07a400ca databases/postgresql80-client/PLIST
--- a/databases/postgresql80-client/PLIST       Wed Sep 19 19:13:53 2007 +0000
+++ b/databases/postgresql80-client/PLIST       Wed Sep 19 20:01:47 2007 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.16 2007/05/04 20:04:06 adam Exp $
+@comment $NetBSD: PLIST,v 1.17 2007/09/19 20:01:47 adam Exp $
 ${PG_SUBPREFIX}bin/clusterdb
 ${PG_SUBPREFIX}bin/createdb
 ${PG_SUBPREFIX}bin/createlang
@@ -951,6 +951,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
@@ -969,6 +970,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
@@ -982,6 +984,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-2.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html
diff -r 7216b57e3b1f -r 73fa07a400ca databases/postgresql80-server/Makefile
--- a/databases/postgresql80-server/Makefile    Wed Sep 19 19:13:53 2007 +0000
+++ b/databases/postgresql80-server/Makefile    Wed Sep 19 20:01:47 2007 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2007/07/04 20:54:36 jlam Exp $
+# $NetBSD: Makefile,v 1.26 2007/09/19 20:01:47 adam Exp $
 
 PKGNAME=       postgresql80-server-${BASE_VERS}
-PKGREVISION=   1
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r 7216b57e3b1f -r 73fa07a400ca databases/postgresql80-server/PLIST
--- a/databases/postgresql80-server/PLIST       Wed Sep 19 19:13:53 2007 +0000
+++ b/databases/postgresql80-server/PLIST       Wed Sep 19 20:01:47 2007 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2007/05/08 15:58:38 joerg Exp $
+@comment $NetBSD: PLIST,v 1.10 2007/09/19 20:01:48 adam Exp $
 ${PG_SUBPREFIX}bin/postgres
 ${PG_SUBPREFIX}bin/postmaster
 ${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la
@@ -182,6 +182,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 7216b57e3b1f -r 73fa07a400ca databases/postgresql80/Makefile.common
--- a/databases/postgresql80/Makefile.common    Wed Sep 19 19:13:53 2007 +0000
+++ b/databases/postgresql80/Makefile.common    Wed Sep 19 20:01:47 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.29 2007/05/04 20:04:06 adam Exp $
+# $NetBSD: Makefile.common,v 1.30 2007/09/19 20:01:47 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -39,7 +39,7 @@
 #
 # Note: Do not forget jdbc-postgresql80 when updating version
 #
-DIST_VERS?=            8.0.13
+DIST_VERS?=            8.0.14
 BASE_VERS?=            ${DIST_VERS}
 
 BUILDLINK_API_DEPENDS.postgresql80-client+=    postgresql80-client>=${BASE_VERS}
diff -r 7216b57e3b1f -r 73fa07a400ca databases/postgresql80/distinfo
--- a/databases/postgresql80/distinfo   Wed Sep 19 19:13:53 2007 +0000
+++ b/databases/postgresql80/distinfo   Wed Sep 19 20:01:47 2007 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.18 2007/04/30 13:37:36 adam Exp $
+$NetBSD: distinfo,v 1.19 2007/09/19 20:01:47 adam Exp $
 
-SHA1 (postgresql-8.0.13.tar.bz2) = 9c3b7ce5090f9cbf3fe288cec81ee1b68b14dce0
-RMD160 (postgresql-8.0.13.tar.bz2) = 75c660a79cb851175a1d4980ccae9abb11d41c0f
-Size (postgresql-8.0.13.tar.bz2) = 11181003 bytes
+SHA1 (postgresql-8.0.14.tar.bz2) = e5a8c4747833a9b3ac80098c48886e84af40677f
+RMD160 (postgresql-8.0.14.tar.bz2) = 2f7d7fc4244f19f96ec01f8ad07c1267d6cfc0fd
+Size (postgresql-8.0.14.tar.bz2) = 11236071 bytes
 SHA1 (patch-aa) = d681a5b2bb4dfce4e3db1490b97fed1b99ff445f
 SHA1 (patch-ab) = 1a80710d13723f2c8130d8235bb40c43af9d9ccd
 SHA1 (patch-ac) = 092d96fe2baafe8eef731b45a85d33fc40584044



Home | Main Index | Thread Index | Old Index