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.17:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/93dc28bee679
branches:  trunk
changeset: 556356:93dc28bee679
user:      adam <adam%pkgsrc.org@localhost>
date:      Fri Mar 20 16:02:02 2009 +0000

description:
Changes 8.1.17:
* Prevent error recursion crashes when encoding conversion fails.
* Disallow "CREATE CONVERSION" with the wrong encodings for the
  specified conversion function.
* Fix core dump when to_char() is given format codes that are
  inappropriate for the type of the data argument.
* Fix decompilation of CASE WHEN with an implicit coercion.
* Fix possible misassignment of the owner of a TOAST table's rowtype.
* Clean up PL/pgSQL error status variables fully at block exit.
* Add MUST (Mauritius Island Summer Time) to the default list of
  known timezone abbreviations.

diffstat:

 databases/postgresql81-client/PLIST      |  5 ++++-
 databases/postgresql81-plpython/Makefile |  3 +--
 databases/postgresql81/Makefile.common   |  4 ++--
 databases/postgresql81/distinfo          |  8 ++++----
 4 files changed, 11 insertions(+), 9 deletions(-)

diffs (79 lines):

diff -r 90833432c164 -r 93dc28bee679 databases/postgresql81-client/PLIST
--- a/databases/postgresql81-client/PLIST       Fri Mar 20 15:46:11 2009 +0000
+++ b/databases/postgresql81-client/PLIST       Fri Mar 20 16:02:02 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.13 2009/02/07 17:43:54 adam Exp $
+@comment $NetBSD: PLIST,v 1.14 2009/03/20 16:02:02 adam Exp $
 ${PG_SUBPREFIX}bin/clusterdb
 ${PG_SUBPREFIX}bin/createdb
 ${PG_SUBPREFIX}bin/createlang
@@ -1016,6 +1016,7 @@
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-22.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-23.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-24.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-25.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
@@ -1037,6 +1038,7 @@
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-18.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-19.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-20.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-21.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
@@ -1053,6 +1055,7 @@
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-13.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-14.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-15.html
+${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-16.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-2.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-3.html
 ${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-4.html
diff -r 90833432c164 -r 93dc28bee679 databases/postgresql81-plpython/Makefile
--- a/databases/postgresql81-plpython/Makefile  Fri Mar 20 15:46:11 2009 +0000
+++ b/databases/postgresql81-plpython/Makefile  Fri Mar 20 16:02:02 2009 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2009/02/09 22:56:22 joerg Exp $
+# $NetBSD: Makefile,v 1.8 2009/03/20 16:02:02 adam Exp $
 
 PKGNAME=       postgresql81-plpython-${BASE_VERS}
-PKGREVISION=   1
 COMMENT=       PL/Python procedural language for the PostgreSQL backend
 
 DEPENDS+=      postgresql81-server>=${BASE_VERS}:../../databases/postgresql81-server
diff -r 90833432c164 -r 93dc28bee679 databases/postgresql81/Makefile.common
--- a/databases/postgresql81/Makefile.common    Fri Mar 20 15:46:11 2009 +0000
+++ b/databases/postgresql81/Makefile.common    Fri Mar 20 16:02:02 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.20 2009/02/07 17:43:54 adam Exp $
+# $NetBSD: Makefile.common,v 1.21 2009/03/20 16:02:02 adam Exp $
 #
 # This Makefile fragment is included by all PostgreSQL packages built from
 # the main sources of the PostgreSQL distribution except jdbc-postgresql.
@@ -37,7 +37,7 @@
 #
 # Note: Do not forget jdbc-postgresql81 when updating version
 #
-DIST_VERS?=            8.1.16
+DIST_VERS?=            8.1.17
 BASE_VERS?=            ${DIST_VERS}
 
 BUILDLINK_API_DEPENDS.postgresql81-client+=    postgresql81-client>=${BASE_VERS}
diff -r 90833432c164 -r 93dc28bee679 databases/postgresql81/distinfo
--- a/databases/postgresql81/distinfo   Fri Mar 20 15:46:11 2009 +0000
+++ b/databases/postgresql81/distinfo   Fri Mar 20 16:02:02 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2009/02/07 17:43:54 adam Exp $
+$NetBSD: distinfo,v 1.16 2009/03/20 16:02:02 adam Exp $
 
-SHA1 (postgresql-8.1.16.tar.bz2) = efa4a5030b6bfef705bf9a704856670fdddf3bcc
-RMD160 (postgresql-8.1.16.tar.bz2) = 9828538def68da9923e29ae72ffb87f812177446
-Size (postgresql-8.1.16.tar.bz2) = 11772484 bytes
+SHA1 (postgresql-8.1.17.tar.bz2) = c2ff35d867007ebed1c7974025cad7a4c48095eb
+RMD160 (postgresql-8.1.17.tar.bz2) = ddbfff887bdb1a1d3c80e9bd116810e619b72e7a
+Size (postgresql-8.1.17.tar.bz2) = 11780776 bytes
 SHA1 (patch-aa) = 87b4234efe45d0ba24d61b837d0e00598ad7122e
 SHA1 (patch-ab) = ca98792f85ec42ab38323f06ead5e23def81da14
 SHA1 (patch-ac) = cbd302a60d43171854c37171b57ee7bbf1194ad9



Home | Main Index | Thread Index | Old Index