summaryrefslogtreecommitdiff
path: root/databases/jdbc-postgresql
diff options
context:
space:
mode:
authorjwise <jwise>2000-06-07 14:58:57 +0000
committerjwise <jwise>2000-06-07 14:58:57 +0000
commit8ac086f77b80034f96dcc4acb699e5f2ca83455c (patch)
treed44a0116b7bf785de4a57295fce5c443d96d8117 /databases/jdbc-postgresql
parente8df2d78057d59a41822548e2e488816cb6869ee (diff)
downloadpkgsrc-8ac086f77b80034f96dcc4acb699e5f2ca83455c.tar.gz
Update jdbc-postgresql to the version shipped with postgresql-7.0.
Thu May 04 11:38:00 BST 2000 petermount@it.maidstone.gov.uk - Corrected incorrect date in CHANGELOG - Fixed the ImageViewer example Wed May 03 16:47:00 BST 2000 petermount@it.maidstone.gov.uk - Fixed the Makefile so that postgresql.jar is built everytime the jdbc1 or jdbc2 rules are called. - Fixed the threadsafe example. It had problems with autocommit Wed May 03 14:32:00 BST 2000 petermount@it.maidstone.gov.uk - Rewrote the README file (the old one was 18 months old!) - Added @deprecated tags to org.postgresql.jdbc2.ResultSet to clear some warnings issued during compilation. Wed Apr 12 22:14:00 BST 2000 peter@retep.org.uk - Implemented the JDBC2 Blob interface, and ResultSet.getBlob(). Wed Apr 12 20:20:00 BST 2000 peter@retep.org.uk - Fixed bug in ResultSet.absolute(). Negative rows are now supported. - Implemented ResultSet.relative(), afterLast(). Tue Feb 1 21:40:00 GMT 2000 peter@retep.org.uk - Finally imported the contributed javax extensions by Assaf Arkin arkin@exoffice.com Mon Jan 24 21:00:00 GMT 2000 peter@retep.org.uk - Finally introduced the 7.0 additions to the core CVS repository. - All source files are now under the org.postgresql package (previously they were under postgresql). The package lines now changed accordingly. - The Makefile was rewritten so it should now work on machines that can't handle the $( ) syntax. - Dutch translation by Arnout Kuiper (ajkuiper@wxs.nl) Mon Sep 13 23:56:00 BST 1999 peter@retep.org.uk - PG_Stream.SendChar() optimised, increased default buffer size of output stream to 8k, and introduced an 8k buffer on the input stream Sverre H Huseby <sverrehu@online.no> - Added a finalize() method to Connection class in both drivers so that the connection to the backend is really closed. - Due to many JVM's not returning a meaningful value for java.version the decision for building the JDBC1.2 or JDBC2 driver is now a compile time option. - Replaced $$(cmd...) with `cmd...` in the Makefile. This should allow the driver to compile when using shells other than Bash. Thu Sep 9 01:18:39 MEST 1999 jens@jens.de - fixed bug in handling of DECIMAL type Wed Aug 4 00:25:18 CEST 1999 jens@jens.de - updated ResultSetMetaData.getColumnDisplaySize() to return the actual display size - updated driver to use postgresql FE/BE-protocol version 2 Mon Aug 2 03:29:35 CEST 1999 jens@jens.de - fixed bug in DatabaseMetaData.getPrimaryKeys() Sun Aug 1 18:05:42 CEST 1999 jens@jens.de - added support for getTransactionIsolation and setTransactionIsolation
Diffstat (limited to 'databases/jdbc-postgresql')
-rw-r--r--databases/jdbc-postgresql/Makefile7
-rw-r--r--databases/jdbc-postgresql/files/patch-sum3
-rw-r--r--databases/jdbc-postgresql/patches/patch-aa12
-rw-r--r--databases/jdbc-postgresql/pkg/MESSAGE7
-rw-r--r--databases/jdbc-postgresql/pkg/PLIST28
5 files changed, 40 insertions, 17 deletions
diff --git a/databases/jdbc-postgresql/Makefile b/databases/jdbc-postgresql/Makefile
index b24d64d1943..ffdbe3f0530 100644
--- a/databases/jdbc-postgresql/Makefile
+++ b/databases/jdbc-postgresql/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2000/05/09 18:30:12 jwise Exp $
+# $NetBSD: Makefile,v 1.3 2000/06/07 14:58:57 jwise Exp $
#
-DISTNAME= postgresql-6.5.3
+DISTNAME= postgresql-7.0
PKGNAME= jdbc-${DISTNAME}
WRKSRC= ${WRKDIR}/${DISTNAME}/src/interfaces/jdbc
CATEGORIES= databases
@@ -22,9 +22,8 @@ MD5_FILE= ${PKGSRCDIR}/databases/postgresql/files/md5
USE_GMAKE=
USE_JAVA=
NO_CONFIGURE=
-NO_PATCH=
ALL_TARGET= jdbc1 doc
-MAKE_ENV+= CLASSPATH=${CLASSPATH}:.
+CLASSPATH:= ${CLASSPATH}:.
HELP_FILES= README README_6.3 Implementation CHANGELOG
diff --git a/databases/jdbc-postgresql/files/patch-sum b/databases/jdbc-postgresql/files/patch-sum
new file mode 100644
index 00000000000..0a1379d7400
--- /dev/null
+++ b/databases/jdbc-postgresql/files/patch-sum
@@ -0,0 +1,3 @@
+$NetBSD: patch-sum,v 1.1 2000/06/07 14:58:57 jwise Exp $
+
+MD5 (patch-aa) = 7b80530f6b441d0e4bc5092dd2ed7e8b
diff --git a/databases/jdbc-postgresql/patches/patch-aa b/databases/jdbc-postgresql/patches/patch-aa
new file mode 100644
index 00000000000..77db0c9fefb
--- /dev/null
+++ b/databases/jdbc-postgresql/patches/patch-aa
@@ -0,0 +1,12 @@
+--- Makefile.orig Wed Jun 7 10:31:07 2000
++++ Makefile Wed Jun 7 10:33:52 2000
+@@ -83,8 +83,7 @@
+
+ # This rule builds the javadoc documentation
+ doc:
+- export CLASSPATH=.;\
+- $(JAVADOC) -public \
++ -$(JAVADOC) -public \
+ org.postgresql \
+ org.postgresql.fastpath \
+ org.postgresql.largeobject
diff --git a/databases/jdbc-postgresql/pkg/MESSAGE b/databases/jdbc-postgresql/pkg/MESSAGE
new file mode 100644
index 00000000000..9d3c082c07a
--- /dev/null
+++ b/databases/jdbc-postgresql/pkg/MESSAGE
@@ -0,0 +1,7 @@
+========================================================================
+
+ Please note that in this release of the JDBC drivers for PostgreSQL
+ the class names have changed from postgresql.* to org.postgresql.*
+ and update your code accordingly.
+
+========================================================================
diff --git a/databases/jdbc-postgresql/pkg/PLIST b/databases/jdbc-postgresql/pkg/PLIST
index 315a767f1c8..26d7c312363 100644
--- a/databases/jdbc-postgresql/pkg/PLIST
+++ b/databases/jdbc-postgresql/pkg/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2000/05/09 18:30:13 jwise Exp $
+@comment $NetBSD: PLIST,v 1.3 2000/06/07 14:58:58 jwise Exp $
lib/java/postgresql.jar
share/doc/java/jdbc-postgresql/README
share/doc/java/jdbc-postgresql/README_6.3
@@ -12,19 +12,21 @@ share/examples/java/jdbc-postgresql/metadata.java
share/examples/java/jdbc-postgresql/psql.java
share/examples/java/jdbc-postgresql/threadsafe.java
share/doc/java/jdbc-postgresql/api/AllNames.html
-share/doc/java/jdbc-postgresql/api/Package-postgresql.fastpath.html
-share/doc/java/jdbc-postgresql/api/Package-postgresql.html
-share/doc/java/jdbc-postgresql/api/Package-postgresql.largeobject.html
+share/doc/java/jdbc-postgresql/api/Package-org.postgresql.fastpath.html
+share/doc/java/jdbc-postgresql/api/Package-org.postgresql.html
+share/doc/java/jdbc-postgresql/api/Package-org.postgresql.largeobject.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.Connection.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.Driver.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.DriverClass.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.Field.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.PG_Stream.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.ResultSet.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.fastpath.Fastpath.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.fastpath.FastpathArg.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.largeobject.LargeObject.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.largeobject.LargeObjectManager.html
+share/doc/java/jdbc-postgresql/api/org.postgresql.largeobject.PGblob.html
share/doc/java/jdbc-postgresql/api/packages.html
-share/doc/java/jdbc-postgresql/api/postgresql.Connection.html
-share/doc/java/jdbc-postgresql/api/postgresql.Driver.html
-share/doc/java/jdbc-postgresql/api/postgresql.Field.html
-share/doc/java/jdbc-postgresql/api/postgresql.PG_Stream.html
-share/doc/java/jdbc-postgresql/api/postgresql.ResultSet.html
-share/doc/java/jdbc-postgresql/api/postgresql.fastpath.Fastpath.html
-share/doc/java/jdbc-postgresql/api/postgresql.fastpath.FastpathArg.html
-share/doc/java/jdbc-postgresql/api/postgresql.largeobject.LargeObject.html
-share/doc/java/jdbc-postgresql/api/postgresql.largeobject.LargeObjectManager.html
share/doc/java/jdbc-postgresql/api/tree.html
@dirrm share/doc/java/jdbc-postgresql/api
@dirrm share/doc/java/jdbc-postgresql