pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/unixodbc Update unixodbc pakcage to 2.2.14, ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/86ae128731a8
branches:  trunk
changeset: 400309:86ae128731a8
user:      taca <taca%pkgsrc.org@localhost>
date:      Sat Oct 17 01:59:14 2009 +0000

description:
Update unixodbc pakcage to 2.2.14, adding LICENSE.


19th-Nov-2008
2.2.14

        * missing protype in 2.2.13 made the build fail on some platforms

18th-Nov-2008
2.2.13

        * There was a mutex around iconv that needed adding. Without this,
          there was a potential thread problem
        * Fix problem with SQLGetDiagRec/Field returning double driver
          errors
        * odbctest was using the wrong handle for SQLGetConnectOption
        * remove startup thread race condition
        * fix descriptor memory leak with UNICODE only drivers (thanks Ian)
        * Alter the default 64bit build mode, and change the flag to
          BUILD_LEGACY_64_BIT_MODE
        * Fix a couple of 64bit problems
        * create unixodbc_conf.h on install to contain compile settings
        * Allow the GUI parts to build with qt4
        * try and deal with drivers that call internal W functions and
          end up in the driver manager (informix for example). Enabled
          by --enable-handlemap=yes when configuring
        * Fix leak of iconv handles
        * Allow the setup API to call through to the wide driver functions
        * Fix potential seg fault in SQLGetPrivateProfileString
        * Fix a couple of broken casts, and some MS 64bit changes
        * Add check for postgres driver getting into a spin wait
        * Fix logging that reported the setting of env attrs failing
        * Add isql option to wrap strings with quotes
        * Add isql option -3 to make isql use ODBC 3 calls instead of 2
        * Add timestamp to logging output
        * Pull any errors from driver whern SQLBrowseConnect returns SQL_NEED_DATA
        * isql now displays any warnings from SQLMoreResults
        * Add include path to odbc_config --cflags output
        * Fix some SQLLEN/SQLINTEGER conflicts in the cursor lib
        * isql now checks if the driver has SQLMoreResults before calling it
        * A couple of tweeks in the txt driver
        * Fix More than 1 log msg relevant in odbcinst now
        * Changed UI plugin technique for odbcinst see...
          ODBCConfig > main.cpp, and
          odbcinst > SQLManageDataSources.c and
          odbcinstQ4 > SQLManageDataSources.cpp
        * Add more 64 bit changes, remove SQLROWCOUNT and its frends from 64 bit
          land
        * Couple of descriptor typo's fixed (Thanks Jess)
        * Add odbcinstQ4 to support pure Qt4 SQLCreateDataSource and
          SQLManageDataSources
        * Add ODBCCreateDataSourceQ4 as Qt4 based exec to SQLCreateDataSource
        * Add ODBCManageDataSourcesQ4 as Qt4 based exec to SQLManageDataSources
        * Add "-c" option to odbcinst to call SQLCreateDataSource
        * Add "-m" option to odbcinst to call SQLManageDataSources
        * Add ODBCDataManagerQ4
        * Add Wrappers (C++, QtCore 4, QtGui 4 - thin wrappers to ODBC)
        * Add more complete set of driver config options to GUI config
        * Fix incorrect export file in odbcinstQ
        * Added some extra features to isql (thanks to Ron Norman for the
          ideas)
        * Add diag support lib for driver development  and possibly DM
          This is very 'black-boxed' on purpose.
        * Fix Replaced diag code in txt driver to use new diag lib.
        * Add New odbctrac library.
        * Add Threading can not be config via Qt(4) based GUI
        * Add New ODBCString library.
        * Add odbcinst.ini -> ODBC -> TraceLibrary and corresponding GUI Qt(4)
          config.
        * prevent the cursor lib from seg faulting if the query isn't a select
        * Add SQLULEN size display to the output of odbcinst -j
        * Add mutexes in odbcinst/_logging.c
        * Remove the MySQL Driver, its woefully out of date now
        * Remove incorrect path in vms_odbc.opt
        * rename trace.h to odbctrace.h to avoid potential name conflicts
          and move to include dir
        * update unixODBC.spec file
        * Add README.CYGWIN
        * Fix build problem with QT4 without QWizard support
        * Alter how the Ansi-Unicode mapping is done, so a unicode function can be
          passed to the driver (if it supports it) even if a non unicode connect was done
        * Fix buffer overrun in SQLDriverConnectW and SQLColAttributesW
        * I have cut back on a lot of the GUI parts that are being added. The goal is to
          create a distinct set of files that contains these and other parts that are
          not part of the core goal of providing ODBC. Likewise the drivers will go on the
          next release, as most DB's now have their own folk working on their drivers
          and they all interoperate with unixODBC so its just adding confusion including them
          here (IMHO that is)
        * Prevent a potential buffer overrun in the DM
        * The processing of --enable-rtldgroup had been dropped, back now
        * Allow the cursor lib to handle multiple result sets

diffstat:

 databases/unixodbc/Makefile         |   6 +++---
 databases/unixodbc/PLIST            |   3 +--
 databases/unixodbc/distinfo         |  12 ++++++------
 databases/unixodbc/patches/patch-aa |   6 +++---
 databases/unixodbc/patches/patch-ab |   8 ++++----
 5 files changed, 17 insertions(+), 18 deletions(-)

diffs (91 lines):

diff -r fb0877480419 -r 86ae128731a8 databases/unixodbc/Makefile
--- a/databases/unixodbc/Makefile       Sat Oct 17 01:51:34 2009 +0000
+++ b/databases/unixodbc/Makefile       Sat Oct 17 01:59:14 2009 +0000
@@ -1,14 +1,14 @@
-# $NetBSD: Makefile,v 1.23 2009/05/20 00:58:11 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2009/10/17 01:59:14 taca Exp $
 
-DISTNAME=      unixODBC-2.2.12
+DISTNAME=      unixODBC-2.2.14
 PKGNAME=       ${DISTNAME:S/ODBC/odbc/}
-PKGREVISION=   2
 CATEGORIES=    databases
 MASTER_SITES=  http://www.unixodbc.org/
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      http://www.unixodbc.org/
 COMMENT=       ODBC 2.x/3.x driver manager
+LICENSE=       gnu-lgpl-v2.1
 
 PKG_DESTDIR_SUPPORT=   user-destdir
 
diff -r fb0877480419 -r 86ae128731a8 databases/unixodbc/PLIST
--- a/databases/unixodbc/PLIST  Sat Oct 17 01:51:34 2009 +0000
+++ b/databases/unixodbc/PLIST  Sat Oct 17 01:59:14 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.7 2009/06/14 17:43:26 joerg Exp $
+@comment $NetBSD: PLIST,v 1.8 2009/10/17 01:59:14 taca Exp $
 bin/dltest
 bin/isql
 bin/iusql
@@ -28,7 +28,6 @@
 ${UNIXODBC_DRIVERS_DIR}/libodbcnnS.la
 ${UNIXODBC_DRIVERS_DIR}/libodbcpsql.la
 ${UNIXODBC_DRIVERS_DIR}/libodbcpsqlS.la
-${UNIXODBC_DRIVERS_DIR}/libodbctxt.la
 ${UNIXODBC_DRIVERS_DIR}/libodbctxtS.la
 ${UNIXODBC_DRIVERS_DIR}/liboplodbcS.la
 ${UNIXODBC_DRIVERS_DIR}/liboraodbcS.la
diff -r fb0877480419 -r 86ae128731a8 databases/unixodbc/distinfo
--- a/databases/unixodbc/distinfo       Sat Oct 17 01:51:34 2009 +0000
+++ b/databases/unixodbc/distinfo       Sat Oct 17 01:59:14 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.6 2009/04/23 19:43:05 schwarz Exp $
+$NetBSD: distinfo,v 1.7 2009/10/17 01:59:15 taca Exp $
 
-SHA1 (unixODBC-2.2.12.tar.gz) = d1cb286fb538c664549153165e2b9183b58a627b
-RMD160 (unixODBC-2.2.12.tar.gz) = 13c9ec87c3fff4a1fceb45ff7a552a0fa8666b16
-Size (unixODBC-2.2.12.tar.gz) = 2798077 bytes
-SHA1 (patch-aa) = c83d0febf01dc079b9bfcdffb7ec5b022cbb9d90
-SHA1 (patch-ab) = 76209187c65256a6fd7157c87600be6ce44ad407
+SHA1 (unixODBC-2.2.14.tar.gz) = ab18464c83d30d7b38b8bb58e1dd01e3ec211488
+RMD160 (unixODBC-2.2.14.tar.gz) = e2a2d2de636a8b2ee1002cac809ba2a38d7eb4de
+Size (unixODBC-2.2.14.tar.gz) = 2189755 bytes
+SHA1 (patch-aa) = 7be18cbd46160aaf0bc1f2db56cb8089970b403a
+SHA1 (patch-ab) = 7a35dcbc76b7d8b6b50bb1685180874f70c51141
 SHA1 (patch-ac) = 2e754242b2a1c90fb07e4cabb0bd537fd8eeb1a2
diff -r fb0877480419 -r 86ae128731a8 databases/unixodbc/patches/patch-aa
--- a/databases/unixodbc/patches/patch-aa       Sat Oct 17 01:51:34 2009 +0000
+++ b/databases/unixodbc/patches/patch-aa       Sat Oct 17 01:59:14 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.3 2008/02/09 07:06:33 adam Exp $
+$NetBSD: patch-aa,v 1.4 2009/10/17 01:59:15 taca Exp $
 
---- Makefile.in.orig   2006-08-31 14:24:44.000000000 +0200
+--- Makefile.in.orig   2008-11-20 01:11:38.000000000 +0900
 +++ Makefile.in
-@@ -791,7 +791,7 @@ install-data: install-data-recursive
+@@ -615,7 +615,7 @@ install-data: install-data-recursive
  uninstall: uninstall-recursive
  
  install-am: all-am
diff -r fb0877480419 -r 86ae128731a8 databases/unixodbc/patches/patch-ab
--- a/databases/unixodbc/patches/patch-ab       Sat Oct 17 01:51:34 2009 +0000
+++ b/databases/unixodbc/patches/patch-ab       Sat Oct 17 01:59:14 2009 +0000
@@ -1,12 +1,12 @@
-$NetBSD: patch-ab,v 1.1 2008/10/03 16:43:27 joerg Exp $
+$NetBSD: patch-ab,v 1.2 2009/10/17 01:59:15 taca Exp $
 
---- Drivers/Makefile.in.orig   2008-10-03 18:00:19.000000000 +0200
+--- Drivers/Makefile.in.orig   2008-11-20 01:11:03.000000000 +0900
 +++ Drivers/Makefile.in
-@@ -205,7 +205,6 @@ subdirs = @subdirs@
+@@ -224,7 +224,6 @@ subdirs = @subdirs@
  sysconfdir = @sysconfdir@
  target_alias = @target_alias@
  @DRIVERS_TRUE@SUBDIRS = \
 -@DRIVERS_TRUE@    PostgreSQL \
  @DRIVERS_TRUE@    Postgre7.1 \
- @DRIVERS_TRUE@    txt \
  @DRIVERS_TRUE@    odbc \
+ @DRIVERS_TRUE@    template \



Home | Main Index | Thread Index | Old Index