summaryrefslogtreecommitdiff
path: root/databases/p5-DBD-postgresql
diff options
context:
space:
mode:
authormjl <mjl>2003-04-20 19:47:20 +0000
committermjl <mjl>2003-04-20 19:47:20 +0000
commitccc2bf61c05592963bd9dd957155537625c7d1af (patch)
treef033709385137f66f4ddbc813ad19a066ce83378 /databases/p5-DBD-postgresql
parent1b071e3bd2187169d4e1c69d39dc9df355b062f0 (diff)
downloadpkgsrc-ccc2bf61c05592963bd9dd957155537625c7d1af.tar.gz
Update p5-DBD-postgresql to 1.22
- Fix memory allocation problem in bytea escaping - Add utf8 support - Transform Perl arrays into PostgreSQL arrays - Fix for foreign_key_info() - Fix PG_TEXT parameter binding - Doc cleanups - Fix warning from func($table, 'table_attributes') - Added suppport for schemas - Fix binary to a bytea field conversion
Diffstat (limited to 'databases/p5-DBD-postgresql')
-rw-r--r--databases/p5-DBD-postgresql/Makefile4
-rw-r--r--databases/p5-DBD-postgresql/distinfo8
-rw-r--r--databases/p5-DBD-postgresql/patches/patch-ab14
3 files changed, 13 insertions, 13 deletions
diff --git a/databases/p5-DBD-postgresql/Makefile b/databases/p5-DBD-postgresql/Makefile
index 5fede39e25b..3dbed17ef38 100644
--- a/databases/p5-DBD-postgresql/Makefile
+++ b/databases/p5-DBD-postgresql/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2003/01/17 16:41:37 mjl Exp $
+# $NetBSD: Makefile,v 1.23 2003/04/20 19:47:20 mjl Exp $
#
-VER= 1.21
+VER= 1.22
DISTNAME= DBD-Pg-${VER}
PKGNAME= p5-DBD-postgresql-${VER}
# PKGREVISION= 3
diff --git a/databases/p5-DBD-postgresql/distinfo b/databases/p5-DBD-postgresql/distinfo
index 0ff8ccf04fd..d16893c7338 100644
--- a/databases/p5-DBD-postgresql/distinfo
+++ b/databases/p5-DBD-postgresql/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.13 2003/01/17 16:41:38 mjl Exp $
+$NetBSD: distinfo,v 1.14 2003/04/20 19:47:20 mjl Exp $
-SHA1 (DBD-Pg-1.21.tar.gz) = d52b6005fc6e7de1c5f8274e3c80e5375e94c413
-Size (DBD-Pg-1.21.tar.gz) = 77446 bytes
+SHA1 (DBD-Pg-1.22.tar.gz) = 9050d14aacc3d66af9c8b51af835902f5d971d35
+Size (DBD-Pg-1.22.tar.gz) = 80896 bytes
SHA1 (patch-aa) = c1e39f684ea515d09801a714ab4ba06c01b13f6f
-SHA1 (patch-ab) = 628bbc7bf3b4862b4c53ba4843dcc7161bff1ead
+SHA1 (patch-ab) = 08d771dc86d9cc9d1007383d2122003640f69fdb
diff --git a/databases/p5-DBD-postgresql/patches/patch-ab b/databases/p5-DBD-postgresql/patches/patch-ab
index 487b01adc99..69a64741d1d 100644
--- a/databases/p5-DBD-postgresql/patches/patch-ab
+++ b/databases/p5-DBD-postgresql/patches/patch-ab
@@ -1,11 +1,11 @@
-$NetBSD: patch-ab,v 1.2 2003/01/17 16:41:39 mjl Exp $
+$NetBSD: patch-ab,v 1.3 2003/04/20 19:47:21 mjl Exp $
---- dbdimp.h.orig Wed Jan 8 23:08:17 2003
-+++ dbdimp.h Fri Jan 17 17:25:12 2003
-@@ -23,6 +23,7 @@
- int init_commit; /* initialize AutoCommit */
- int pg_auto_escape; /* initialize AutoEscape */
- int pg_bool_tf; /* do bools return 't'/'f' */
+--- dbdimp.h.orig Tue Mar 25 23:17:00 2003
++++ dbdimp.h Sun Apr 20 21:39:17 2003
+@@ -28,6 +28,7 @@
+ #ifdef SvUTF8_off
+ int pg_enable_utf8; /* should we attempt to make utf8 strings? */
+ #endif
+ int need_begin; /* need a begin */
};