pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases update to 7.4.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1e1d2ad8ab6e
branches:  trunk
changeset: 477180:1e1d2ad8ab6e
user:      recht <recht%pkgsrc.org@localhost>
date:      Sun Jun 27 16:38:32 2004 +0000

description:
update to 7.4.3

changes:

* Fix temporary memory leak when using non-hashed aggregates (Tom)
* ECPG fixes, including some for Informix compatibility (Michael)
* Fixes for compiling with thread-safety, particularly Solaris (Bruce)
* Fix error in COPY IN termination when using the old network
  protocol (ljb)
* Several important fixes in pg_autovacuum (Matthew T. O'Connor)
* Fix problem with reading tar-format dumps on NetBSD and BSD/OS (Bruce)
* Several JDBC fixes
* Fix ALTER SEQUENCE RESTART where last_value equals the restart
  value (Tom)
* Repair failure to recalculate nested sub-selects (Tom)
* Fix problems with non-constant expressions in LIMIT/OFFSET
* Support FULL JOIN with no join clause, such as X FULL JOIN Y ON
  TRUE (Tom)
* Fix another zero-column table bug (Tom)
* Improve handling of non-qualified identifiers in GROUP BY clauses
  in sub-selects (Tom)
* Do not generate "NATURAL CROSS JOIN" when decompiling rules (Tom)
* Add checks for invalid field length in binary COPY (Tom)
* Avoid locking conflict between ANALYZE and LISTEN/NOTIFY
* Numerous translation updates (various contributors)

diffstat:

 databases/jdbc-postgresql74/Makefile     |     5 +-
 databases/jdbc-postgresql74/PLIST        |     6 +-
 databases/jdbc-postgresql74/distinfo     |     6 +-
 databases/postgresql74-client/Makefile   |     3 +-
 databases/postgresql74-client/PLIST      |     5 +-
 databases/postgresql74-docs/Makefile     |     6 +-
 databases/postgresql74-docs/PLIST        |  1207 +++++++++++++++--------------
 databases/postgresql74-lib/Makefile      |     7 +-
 databases/postgresql74-lib/PLIST         |     4 +-
 databases/postgresql74-lib/buildlink3.mk |     4 +-
 databases/postgresql74/Makefile          |     5 +-
 databases/postgresql74/Makefile.common   |     5 +-
 databases/postgresql74/distinfo          |     8 +-
 13 files changed, 633 insertions(+), 638 deletions(-)

diffs (truncated from 1465 to 300 lines):

diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/jdbc-postgresql74/Makefile
--- a/databases/jdbc-postgresql74/Makefile      Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/jdbc-postgresql74/Makefile      Sun Jun 27 16:38:32 2004 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.1.1.1 2004/06/03 10:23:19 abs Exp $
+# $NetBSD: Makefile,v 1.2 2004/06/27 16:38:32 recht Exp $
 #
 
-DIST_VERS=             7.4.2
+DIST_VERS=             7.4.3
 DISTNAME=              postgresql-${DIST_VERS}
 PKGNAME=               jdbc-${DISTNAME}
-PKGREVISION=           1
 CATEGORIES=            databases java
 MASTER_SITES?=         http://www.postgresql.org/ftpsite/source/v${DIST_VERS}/ \
                        ftp://ftp.postgresql.org/pub/source/v${DIST_VERS}/ \
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/jdbc-postgresql74/PLIST
--- a/databases/jdbc-postgresql74/PLIST Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/jdbc-postgresql74/PLIST Sun Jun 27 16:38:32 2004 +0000
@@ -1,14 +1,14 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/06/03 10:23:19 abs Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/06/27 16:38:32 recht Exp $
 lib/java/postgresql.jar
-share/examples/java/jdbc-postgresql/postgresql-examples.jar
+share/doc/java/jdbc-postgresql/README
 share/examples/java/jdbc-postgresql/ImageViewer.java
 share/examples/java/jdbc-postgresql/Unicode.java
 share/examples/java/jdbc-postgresql/basic.java
 share/examples/java/jdbc-postgresql/blobtest.java
 share/examples/java/jdbc-postgresql/datestyle.java
 share/examples/java/jdbc-postgresql/metadata.java
+share/examples/java/jdbc-postgresql/postgresql-examples.jar
 share/examples/java/jdbc-postgresql/psql.java
 share/examples/java/jdbc-postgresql/threadsafe.java
-share/doc/java/jdbc-postgresql/README
 @dirrm share/examples/java/jdbc-postgresql
 @dirrm share/doc/java/jdbc-postgresql
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/jdbc-postgresql74/distinfo
--- a/databases/jdbc-postgresql74/distinfo      Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/jdbc-postgresql74/distinfo      Sun Jun 27 16:38:32 2004 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1.1.1 2004/06/03 10:23:19 abs Exp $
+$NetBSD: distinfo,v 1.2 2004/06/27 16:38:32 recht Exp $
 
-SHA1 (postgresql-7.4.2.tar.bz2) = 52b8a8a3467298c659e424213b72a15b08be9d59
-Size (postgresql-7.4.2.tar.bz2) = 10100398 bytes
+SHA1 (postgresql-7.4.3.tar.bz2) = 26df04f0a32a482646850d9b34d95509c97cb585
+Size (postgresql-7.4.3.tar.bz2) = 10149755 bytes
 SHA1 (patch-aa) = 3dea03b653408c0191959c9f2532f6150d7d5d95
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/postgresql74-client/Makefile
--- a/databases/postgresql74-client/Makefile    Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/postgresql74-client/Makefile    Sun Jun 27 16:38:32 2004 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2004/05/07 15:25:13 cjep Exp $
+# $NetBSD: Makefile,v 1.4 2004/06/27 16:38:32 recht Exp $
 
 PKGNAME=               postgresql-client-${BASE_VERS}
-PKGREVISION=           1
 SVR4_PKGNAME=          pstgc
 COMMENT=               PostgreSQL database client programs
 
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/postgresql74-client/PLIST
--- a/databases/postgresql74-client/PLIST       Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/postgresql74-client/PLIST       Sun Jun 27 16:38:32 2004 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/04/19 00:03:25 recht Exp $
+@comment $NetBSD: PLIST,v 1.2 2004/06/27 16:38:32 recht Exp $
 bin/clusterdb
 bin/createdb
 bin/createlang
@@ -148,6 +148,9 @@
 ${PKGLOCALEDIR}/locale/es/LC_MESSAGES/pgscripts.mo
 ${PKGLOCALEDIR}/locale/es/LC_MESSAGES/psql.mo
 ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_controldata.mo
+${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_dump.mo
+${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pg_resetxlog.mo
+${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/pgscripts.mo
 ${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/psql.mo
 ${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/pg_controldata.mo
 ${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/pg_resetxlog.mo
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/postgresql74-docs/Makefile
--- a/databases/postgresql74-docs/Makefile      Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/postgresql74-docs/Makefile      Sun Jun 27 16:38:32 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2004/04/19 22:39:55 recht Exp $
+# $NetBSD: Makefile,v 1.3 2004/06/27 16:38:32 recht Exp $
 
 PKGNAME=               postgresql-docs-${BASE_VERS}
 SVR4_PKGNAME=          pstgd
@@ -12,7 +12,6 @@
 
 #BUILD_DIRS=   ${WRKSRC}/doc
 DOCDIR=                ${PREFIX}/share/doc/postgresql
-HTMLDIR=       ${PREFIX}/share/doc/html/postgresql
 
 # The manpage documentation is installed with the relevant packages.
 #pre-build:
@@ -21,7 +20,6 @@
 do-install:
        ${INSTALL_DATA_DIR} ${DOCDIR}
        ${INSTALL_DATA_DIR} ${DOCDIR}/TODO.detail
-       ${INSTALL_DATA_DIR} ${HTMLDIR}
        cd ${WRKSRC}/doc; for file in                                   \
                FAQ* KNOWN_BUGS MISSING_FEATURES README.* TODO          \
                bug.template;                                           \
@@ -30,6 +28,6 @@
        done
        cd ${WRKSRC}/doc/TODO.detail && \
                ${PAX} -rwppm . ${DOCDIR}/TODO.detail
-       ${TAR} -zxm -C ${HTMLDIR} -f ${WRKSRC}/doc/postgres.tar.gz
+       ${TAR} -zxm -C ${DOCDIR} -f ${WRKSRC}/doc/postgres.tar.gz
 
 .include "../../mk/bsd.pkg.mk"
diff -r 6098efb42520 -r 1e1d2ad8ab6e databases/postgresql74-docs/PLIST
--- a/databases/postgresql74-docs/PLIST Sun Jun 27 16:34:25 2004 +0000
+++ b/databases/postgresql74-docs/PLIST Sun Jun 27 16:38:32 2004 +0000
@@ -1,604 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2004/04/19 22:39:55 recht Exp $
-share/doc/html/postgresql/LEGALNOTICE.html
-share/doc/html/postgresql/admin.html
-share/doc/html/postgresql/app-clusterdb.html
-share/doc/html/postgresql/app-createdb.html
-share/doc/html/postgresql/app-createlang.html
-share/doc/html/postgresql/app-createuser.html
-share/doc/html/postgresql/app-dropdb.html
-share/doc/html/postgresql/app-droplang.html
-share/doc/html/postgresql/app-dropuser.html
-share/doc/html/postgresql/app-ecpg.html
-share/doc/html/postgresql/app-initdb.html
-share/doc/html/postgresql/app-initlocation.html
-share/doc/html/postgresql/app-ipcclean.html
-share/doc/html/postgresql/app-pg-ctl.html
-share/doc/html/postgresql/app-pg-dumpall.html
-share/doc/html/postgresql/app-pgconfig.html
-share/doc/html/postgresql/app-pgcontroldata.html
-share/doc/html/postgresql/app-pgdump.html
-share/doc/html/postgresql/app-pgresetxlog.html
-share/doc/html/postgresql/app-pgrestore.html
-share/doc/html/postgresql/app-pgtclsh.html
-share/doc/html/postgresql/app-pgtksh.html
-share/doc/html/postgresql/app-postgres.html
-share/doc/html/postgresql/app-postmaster.html
-share/doc/html/postgresql/app-psql.html
-share/doc/html/postgresql/app-vacuumdb.html
-share/doc/html/postgresql/appendixes.html
-share/doc/html/postgresql/applevel-consistency.html
-share/doc/html/postgresql/arrays.html
-share/doc/html/postgresql/auth-methods.html
-share/doc/html/postgresql/backup-file.html
-share/doc/html/postgresql/backup.html
-share/doc/html/postgresql/biblio.html
-share/doc/html/postgresql/bki-commands.html
-share/doc/html/postgresql/bki-example.html
-share/doc/html/postgresql/bki.html
-share/doc/html/postgresql/bookindex.html
-share/doc/html/postgresql/bug-reporting.html
-share/doc/html/postgresql/catalog-pg-aggregate.html
-share/doc/html/postgresql/catalog-pg-am.html
-share/doc/html/postgresql/catalog-pg-amop.html
-share/doc/html/postgresql/catalog-pg-amproc.html
-share/doc/html/postgresql/catalog-pg-attrdef.html
-share/doc/html/postgresql/catalog-pg-attribute.html
-share/doc/html/postgresql/catalog-pg-cast.html
-share/doc/html/postgresql/catalog-pg-class.html
-share/doc/html/postgresql/catalog-pg-constraint.html
-share/doc/html/postgresql/catalog-pg-conversion.html
-share/doc/html/postgresql/catalog-pg-database.html
-share/doc/html/postgresql/catalog-pg-depend.html
-share/doc/html/postgresql/catalog-pg-description.html
-share/doc/html/postgresql/catalog-pg-group.html
-share/doc/html/postgresql/catalog-pg-index.html
-share/doc/html/postgresql/catalog-pg-inherits.html
-share/doc/html/postgresql/catalog-pg-language.html
-share/doc/html/postgresql/catalog-pg-largeobject.html
-share/doc/html/postgresql/catalog-pg-listener.html
-share/doc/html/postgresql/catalog-pg-namespace.html
-share/doc/html/postgresql/catalog-pg-opclass.html
-share/doc/html/postgresql/catalog-pg-operator.html
-share/doc/html/postgresql/catalog-pg-proc.html
-share/doc/html/postgresql/catalog-pg-rewrite.html
-share/doc/html/postgresql/catalog-pg-shadow.html
-share/doc/html/postgresql/catalog-pg-statistic.html
-share/doc/html/postgresql/catalog-pg-trigger.html
-share/doc/html/postgresql/catalog-pg-type.html
-share/doc/html/postgresql/catalogs.html
-share/doc/html/postgresql/charset.html
-share/doc/html/postgresql/client-authentication-problems.html
-share/doc/html/postgresql/client-authentication.html
-share/doc/html/postgresql/client-interfaces.html
-share/doc/html/postgresql/connect-estab.html
-share/doc/html/postgresql/creating-cluster.html
-share/doc/html/postgresql/cvs-tree.html
-share/doc/html/postgresql/cvs.html
-share/doc/html/postgresql/cvsup.html
-share/doc/html/postgresql/datatype-binary.html
-share/doc/html/postgresql/datatype-bit.html
-share/doc/html/postgresql/datatype-boolean.html
-share/doc/html/postgresql/datatype-character.html
-share/doc/html/postgresql/datatype-datetime.html
-share/doc/html/postgresql/datatype-geometric.html
-share/doc/html/postgresql/datatype-money.html
-share/doc/html/postgresql/datatype-net-types.html
-share/doc/html/postgresql/datatype-oid.html
-share/doc/html/postgresql/datatype-pseudo.html
-share/doc/html/postgresql/datatype.html
-share/doc/html/postgresql/datetime-appendix.html
-share/doc/html/postgresql/datetime-keywords.html
-share/doc/html/postgresql/datetime-units-history.html
-share/doc/html/postgresql/ddl-alter.html
-share/doc/html/postgresql/ddl-constraints.html
-share/doc/html/postgresql/ddl-default.html
-share/doc/html/postgresql/ddl-depend.html
-share/doc/html/postgresql/ddl-inherit.html
-share/doc/html/postgresql/ddl-others.html
-share/doc/html/postgresql/ddl-priv.html
-share/doc/html/postgresql/ddl-schemas.html
-share/doc/html/postgresql/ddl-system-columns.html
-share/doc/html/postgresql/ddl.html
-share/doc/html/postgresql/disk-full.html
-share/doc/html/postgresql/diskusage.html
-share/doc/html/postgresql/dml-delete.html
-share/doc/html/postgresql/dml-update.html
-share/doc/html/postgresql/dml.html
-share/doc/html/postgresql/docguide-authoring.html
-share/doc/html/postgresql/docguide-build.html
-share/doc/html/postgresql/docguide-style.html
-share/doc/html/postgresql/docguide-toolsets.html
-share/doc/html/postgresql/docguide.html
-share/doc/html/postgresql/ecpg-commands.html
-share/doc/html/postgresql/ecpg-connect.html
-share/doc/html/postgresql/ecpg-descriptors.html
-share/doc/html/postgresql/ecpg-develop.html
-share/doc/html/postgresql/ecpg-disconnect.html
-share/doc/html/postgresql/ecpg-dynamic.html
-share/doc/html/postgresql/ecpg-errors.html
-share/doc/html/postgresql/ecpg-include.html
-share/doc/html/postgresql/ecpg-library.html
-share/doc/html/postgresql/ecpg-process.html
-share/doc/html/postgresql/ecpg-set-connection.html
-share/doc/html/postgresql/ecpg-variables.html
-share/doc/html/postgresql/ecpg.html
-share/doc/html/postgresql/errcodes-appendix.html
-share/doc/html/postgresql/error-message-reporting.html
-share/doc/html/postgresql/error-style-guide.html
-share/doc/html/postgresql/examples.html
-share/doc/html/postgresql/executor.html
-share/doc/html/postgresql/explicit-joins.html
-share/doc/html/postgresql/explicit-locking.html
-share/doc/html/postgresql/extend-type-system.html
-share/doc/html/postgresql/extend.html
-share/doc/html/postgresql/extensibility.html
-share/doc/html/postgresql/features.html
-share/doc/html/postgresql/functions-aggregate.html
-share/doc/html/postgresql/functions-array.html
-share/doc/html/postgresql/functions-binarystring.html
-share/doc/html/postgresql/functions-comparison.html
-share/doc/html/postgresql/functions-comparisons.html
-share/doc/html/postgresql/functions-conditional.html
-share/doc/html/postgresql/functions-datetime.html
-share/doc/html/postgresql/functions-formatting.html
-share/doc/html/postgresql/functions-geometry.html
-share/doc/html/postgresql/functions-matching.html
-share/doc/html/postgresql/functions-math.html
-share/doc/html/postgresql/functions-misc.html
-share/doc/html/postgresql/functions-net.html
-share/doc/html/postgresql/functions-sequence.html
-share/doc/html/postgresql/functions-string.html
-share/doc/html/postgresql/functions-subquery.html
-share/doc/html/postgresql/functions.html
-share/doc/html/postgresql/geqo-biblio.html
-share/doc/html/postgresql/geqo-intro2.html
-share/doc/html/postgresql/geqo-pg-intro.html
-share/doc/html/postgresql/geqo.html
-share/doc/html/postgresql/gist.html
-share/doc/html/postgresql/groups.html
-share/doc/html/postgresql/history.html
-share/doc/html/postgresql/implementation.html
-share/doc/html/postgresql/index.html
-share/doc/html/postgresql/indexcost.html
-share/doc/html/postgresql/indexes-examine.html
-share/doc/html/postgresql/indexes-expressional.html
-share/doc/html/postgresql/indexes-multicolumn.html
-share/doc/html/postgresql/indexes-opclass.html
-share/doc/html/postgresql/indexes-partial.html
-share/doc/html/postgresql/indexes-types.html
-share/doc/html/postgresql/indexes-unique.html
-share/doc/html/postgresql/indexes.html
-share/doc/html/postgresql/information-schema.html
-share/doc/html/postgresql/infoschema-applicable-roles.html
-share/doc/html/postgresql/infoschema-check-constraints.html
-share/doc/html/postgresql/infoschema-column-domain-usage.html
-share/doc/html/postgresql/infoschema-column-privileges.html
-share/doc/html/postgresql/infoschema-column-udt-usage.html
-share/doc/html/postgresql/infoschema-columns.html
-share/doc/html/postgresql/infoschema-constraint-column-usage.html
-share/doc/html/postgresql/infoschema-constraint-table-usage.html
-share/doc/html/postgresql/infoschema-data-type-privileges.html
-share/doc/html/postgresql/infoschema-datatypes.html
-share/doc/html/postgresql/infoschema-domain-constraints.html
-share/doc/html/postgresql/infoschema-domain-udt-usage.html



Home | Main Index | Thread Index | Old Index