pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/doc Update postgresql80-related packages to 8.0.4. On...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4f931ebe14de
branches:  trunk
changeset: 501528:4f931ebe14de
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Sun Oct 23 20:16:52 2005 +0000

description:
Update postgresql80-related packages to 8.0.4.  On updating from any
previous 8.0.x release, no dump-and-restore is necessary.  Changes
from version 8.0.3 include:

postgresql80-client:
     - Clarify comment for pgsql-hier-query option to note that it is
       considered buggy by PostgreSQL developers.
     * Make psql -f filename return a nonzero exit code when opening the
       file fails
     * Change pg_dump to handle inherited check constraints more reliably

postgresql80-server:
     * Fix error that allowed "VACUUM" to remove ctid chains too soon, and
       add more checking in code that follows ctid links
       This fixes a long-standing problem that could cause crashes in very
       rare circumstances.
     * Fix CHAR() to properly pad spaces to the specified length when
       using a multiple-byte character set (Yoshiyuki Asaba)
       In prior releases, the padding of CHAR() was incorrect because it
       only padded to the specified number of bytes without considering
       how many characters were stored.
     * Force a checkpoint before committing "CREATE DATABASE"
       This should fix recent reports of "index is not a btree" failures
       when a crash occurs shortly after "CREATE DATABASE".
     * Fix the sense of the test for read-only transaction in "COPY"
       The code formerly prohibited "COPY TO", where it should prohibit
       "COPY FROM".
     * Handle consecutive embedded newlines in "COPY" CSV-mode input
     * Fix date_trunc(week) for dates near year end
     * Fix planning problem with outer-join ON clauses that reference only
       the inner-side relation
     * Further fixes for x FULL JOIN y ON true corner cases
     * Fix overenthusiastic optimization of x IN (SELECT DISTINCT ...) and
       related cases
     * Fix mis-planning of queries with small LIMIT values due to poorly
       thought out "fuzzy" cost comparison
     * Make array_in and array_recv more paranoid about validating their
       OID parameter
     * Fix missing rows in queries like UPDATE a=... WHERE a... with GiST
       index on column a
     * Improve robustness of datetime parsing
     * Improve checking for partially-written WAL pages
     * Improve robustness of signal handling when SSL is enabled
     * Improve MIPS and M68K spinlock code
     * Don't try to open more than max_files_per_process files during
       postmaster startup
     * Various memory leakage fixes
     * Various portability improvements
     * Update timezone data files
     * Fix PL/PgSQL to handle var := var correctly when the variable is of
       pass-by-reference type

postgresql80-plperl:
     * Fix PL/Perl %_SHARED so it's actually shared

diffstat:

 databases/postgresql80-client/Makefile |   5 ++---
 databases/postgresql80-client/PLIST    |   6 +++++-
 databases/postgresql80-plperl/Makefile |   3 +--
 databases/postgresql80-server/Makefile |   3 +--
 databases/postgresql80-server/PLIST    |   4 +++-
 databases/postgresql80/Makefile        |   3 +--
 databases/postgresql80/Makefile.common |   4 ++--
 databases/postgresql80/distinfo        |  11 ++++-------
 databases/postgresql80/options.mk      |   6 ++++--
 doc/CHANGES                            |   8 +++++++-
 10 files changed, 30 insertions(+), 23 deletions(-)

diffs (195 lines):

diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80-client/Makefile
--- a/databases/postgresql80-client/Makefile    Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80-client/Makefile    Sun Oct 23 20:16:52 2005 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2005/10/10 23:29:00 joerg Exp $
+# $NetBSD: Makefile,v 1.11 2005/10/23 20:16:52 jlam Exp $
 
 PKGNAME=       postgresql80-client-${BASE_VERS}
-PKGREVISION=   3
 COMMENT=       PostgreSQL database client programs
 
 .include "../../databases/postgresql80/Makefile.common"
@@ -16,7 +15,7 @@
 CONFLICTS+=    postgresql80-docs-*
 
 # The thread-safety test in ${WRSRC}/src/tools/thread does not pass on
-# NetBSD or DragonFly.
+# NetBSD (missing strerror_r) or DragonFly.
 #
 .if ${OPSYS} == "NetBSD" || ${OPSYS} == "DragonFly"
 PGSQL_THREAD_SAFETY?=  no
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80-client/PLIST
--- a/databases/postgresql80-client/PLIST       Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80-client/PLIST       Sun Oct 23 20:16:52 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2005/10/10 16:46:02 joerg Exp $
+@comment $NetBSD: PLIST,v 1.8 2005/10/23 20:16:52 jlam Exp $
 ${PG_SUBPREFIX}bin/clusterdb
 ${PG_SUBPREFIX}bin/createdb
 ${PG_SUBPREFIX}bin/createlang
@@ -556,6 +556,7 @@
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_SCO
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_Solaris
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_brazilian
+${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_czech
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_farsi
 ${PG_SUBPREFIX}share/doc/postgresql/FAQ_french
@@ -949,6 +950,7 @@
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-8.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-9.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-10.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-11.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-1.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html
@@ -958,9 +960,11 @@
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-6.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-7.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-8.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-9.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-1.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.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/resources.html
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80-plperl/Makefile
--- a/databases/postgresql80-plperl/Makefile    Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80-plperl/Makefile    Sun Oct 23 20:16:52 2005 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2005/09/19 05:52:18 jlam Exp $
+# $NetBSD: Makefile,v 1.3 2005/10/23 20:16:52 jlam Exp $
 
 PKGNAME=       postgresql80-plperl-${BASE_VERS}
-PKGREVISION=   1
 COMMENT=       PL/Perl procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql80-server>=${BASE_VERS}:../../databases/postgresql80-server
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80-server/Makefile
--- a/databases/postgresql80-server/Makefile    Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80-server/Makefile    Sun Oct 23 20:16:52 2005 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.13 2005/10/10 23:29:00 joerg Exp $
+# $NetBSD: Makefile,v 1.14 2005/10/23 20:16:52 jlam Exp $
 
 PKGNAME=       postgresql80-server-${BASE_VERS}
-PKGREVISION=   2
 COMMENT=       PostgreSQL database server programs
 
 # mips has no TAS implementation
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80-server/PLIST
--- a/databases/postgresql80-server/PLIST       Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80-server/PLIST       Sun Oct 23 20:16:52 2005 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2005/08/05 19:43:45 jlam Exp $
+@comment $NetBSD: PLIST,v 1.7 2005/10/23 20:16:52 jlam Exp $
 ${PG_SUBPREFIX}bin/postgres
 ${PG_SUBPREFIX}bin/postmaster
 ${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la
@@ -146,6 +146,7 @@
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Cayman
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Chicago
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Chihuahua
+${PG_SUBPREFIX}share/postgresql/timezone/America/Coral_Harbour
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Cordoba
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Costa_Rica
 ${PG_SUBPREFIX}share/postgresql/timezone/America/Cuiaba
@@ -363,6 +364,7 @@
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/Brisbane
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/Broken_Hill
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/Canberra
+${PG_SUBPREFIX}share/postgresql/timezone/Australia/Currie
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/Darwin
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/Hobart
 ${PG_SUBPREFIX}share/postgresql/timezone/Australia/LHI
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80/Makefile
--- a/databases/postgresql80/Makefile   Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80/Makefile   Sun Oct 23 20:16:52 2005 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.5 2005/08/05 19:43:44 jlam Exp $
+# $NetBSD: Makefile,v 1.6 2005/10/23 20:16:52 jlam Exp $
 
 PKGNAME=       postgresql80-${BASE_VERS}
-PKGREVISION=   1
 COMMENT=       Robust, next generation, object-relational DBMS
 
 DEPENDS+=      postgresql80-client>=${BASE_VERS}nb2:../../databases/postgresql80-client
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80/Makefile.common
--- a/databases/postgresql80/Makefile.common    Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80/Makefile.common    Sun Oct 23 20:16:52 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.8 2005/08/08 23:19:26 jlam Exp $
+# $NetBSD: Makefile.common,v 1.9 2005/10/23 20:16:52 jlam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -32,7 +32,7 @@
 #
 # Note: Do not forget jdbc-postgresql when updating version
 #
-DIST_VERS?=            8.0.3
+DIST_VERS?=            8.0.4
 BASE_VERS?=            ${DIST_VERS}
 
 BUILDLINK_DEPENDS.postgresql80-client+=        postgresql80-client>=${BASE_VERS}
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80/distinfo
--- a/databases/postgresql80/distinfo   Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80/distinfo   Sun Oct 23 20:16:52 2005 +0000
@@ -1,11 +1,8 @@
-$NetBSD: distinfo,v 1.9 2005/10/10 16:46:02 joerg Exp $
+$NetBSD: distinfo,v 1.10 2005/10/23 20:16:52 jlam Exp $
 
-SHA1 (postgresql-8.0.3.tar.bz2) = 45f9a739e414e617d1e5f43779046546ee1a0d3a
-RMD160 (postgresql-8.0.3.tar.bz2) = 62e6a28c0041a3f0d456efe1e985f03778e4bdfa
-Size (postgresql-8.0.3.tar.bz2) = 11069624 bytes
-SHA1 (hier-Pg8.0.3-0.5.5.diff.gz) = d054398f7d9c899dbeb033168ed84f4edbed0f1e
-RMD160 (hier-Pg8.0.3-0.5.5.diff.gz) = d43083bf10e58941fe546e38f6b453fe28d98721
-Size (hier-Pg8.0.3-0.5.5.diff.gz) = 30555 bytes
+SHA1 (postgresql-8.0.4.tar.bz2) = 19a83cc4bb61880c6078f1507cd876d582498220
+RMD160 (postgresql-8.0.4.tar.bz2) = 04d00f77a5139c654eb4d90cc4ee2a515ee1a15d
+Size (postgresql-8.0.4.tar.bz2) = 11102847 bytes
 SHA1 (patch-aa) = d681a5b2bb4dfce4e3db1490b97fed1b99ff445f
 SHA1 (patch-ab) = 1a80710d13723f2c8130d8235bb40c43af9d9ccd
 SHA1 (patch-ac) = 092d96fe2baafe8eef731b45a85d33fc40584044
diff -r ec1aeedf7ca7 -r 4f931ebe14de databases/postgresql80/options.mk
--- a/databases/postgresql80/options.mk Sun Oct 23 20:15:07 2005 +0000
+++ b/databases/postgresql80/options.mk Sun Oct 23 20:16:52 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2005/10/05 13:29:50 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2005/10/23 20:16:52 jlam Exp $
 
 PKG_SUPPORTED_OPTIONS+=                pgsql-hier-query
 
@@ -14,7 +14,9 @@
 
 ###
 ### Support for hierarchical queries with Oracle-like CONNECT BY syntax.
-### See http://gppl.moonbone.ru/README.html for details.
+### See http://gppl.moonbone.ru/README.html for details.  Note that use of
+### this patch is discouraged by PostgreSQL developers because it is
+### considered somewhat buggy and incomplete.
 ###
 .if !empty(PKG_OPTIONS:Mpgsql-hier-query)
 PATCH_SITES=           http://gppl.moonbone.ru/
diff -r ec1aeedf7ca7 -r 4f931ebe14de doc/CHANGES
--- a/doc/CHANGES       Sun Oct 23 20:15:07 2005 +0000
+++ b/doc/CHANGES       Sun Oct 23 20:16:52 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.11629 2005/10/23 20:06:35 kristerw Exp $
+$NetBSD: CHANGES,v 1.11630 2005/10/23 20:16:55 jlam Exp $
 
 Changes to the packages collection and infrastructure in 2005:
 
@@ -4793,3 +4793,9 @@
        Added games/teg version 0.11.1 [minskim 2005-10-23]
        Updated emulators/xmame to 0.101 [kristerw 2005-10-23]
        Updated emulators/xmess to 0.101 [kristerw 2005-10-23]
+       Updated databases/postgresql80 to 8.0.4 [jlam 2005-10-23]
+       Updated databases/postgresql80-client to 8.0.4 [jlam 2005-10-23]
+       Updated databases/postgresql80-plperl to 8.0.4 [jlam 2005-10-23]
+       Updated databases/postgresql80-plpython to 8.0.4 [jlam 2005-10-23]
+       Updated databases/postgresql80-pltcl to 8.0.4 [jlam 2005-10-23]
+       Updated databases/postgresql80-server to 8.0.4 [jlam 2005-10-23]



Home | Main Index | Thread Index | Old Index