commit sqliteodbc for openSUSE:Factory

2020-08-17 Thread root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2020-08-17 12:09:51

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new.3399 (New)


Package is "sqliteodbc"

Mon Aug 17 12:09:51 2020 rev:10 rq:827269 version:0.9998

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2020-05-04 
18:43:18.141395630 +0200
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new.3399/sqliteodbc.changes  
2020-08-17 12:11:33.738900865 +0200
@@ -1,0 +2,14 @@
+Mon Aug 17 07:41:46 UTC 2020 - Dirk Mueller 
+
+- update to 0.9998
+  * update to SQLite 3.32.3
+  * make all comparisons for table names etc. in SQLTables()
+and friends case insensitive (thanks Kris Habraken for
+initial fix)
+  * update to SQLite 3.32.2
+  * fix info for SQL_OUTER_JOINS/SQL_OJ_CAPABILITIES
+  * provide more clean quote hints in type info
+  * improve SQLBulkOperations()
+  * better deal with auto column names in csvtable module
+
+---

Old:

  sqliteodbc-0.9996.tar.gz

New:

  sqliteodbc-0.9998.tar.gz



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.LRwfsC/_old  2020-08-17 12:11:34.662901352 +0200
+++ /var/tmp/diff_new_pack.LRwfsC/_new  2020-08-17 12:11:34.662901352 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sqliteodbc
-Version:0.9996
+Version:0.9998
 Release:0
 Summary:ODBC driver for SQLite
 License:BSD-2-Clause

++ sqliteodbc-0.9996.tar.gz -> sqliteodbc-0.9998.tar.gz ++
 2933 lines of diff (skipped)




commit sqliteodbc for openSUSE:Factory

2020-05-04 Thread root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2020-05-04 18:42:19

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new.2738 (New)


Package is "sqliteodbc"

Mon May  4 18:42:19 2020 rev:9 rq:800028 version:0.9996

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2019-03-19 
09:59:21.840079551 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new.2738/sqliteodbc.changes  
2020-05-04 18:43:18.141395630 +0200
@@ -1,0 +2,5 @@
+Mon May  4 11:18:46 UTC 2020 - Martin Pluskal 
+
+- Adjust scriplets to resolve boo#1171041 CVE-2020-12050
+
+---



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.mEiaou/_old  2020-05-04 18:43:20.217399912 +0200
+++ /var/tmp/diff_new_pack.mEiaou/_new  2020-05-04 18:43:20.217399912 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sqliteodbc
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,7 +22,7 @@
 Summary:ODBC driver for SQLite
 License:BSD-2-Clause
 Group:  Development/Libraries/C and C++
-Url:http://www.ch-werner.de/sqliteodbc
+URL:http://www.ch-werner.de/sqliteodbc
 Source0:http://www.ch-werner.de/sqliteodbc/%{name}-%{version}.tar.gz
 # This is not typical shared library but plugin for unixODBC
 Source1:%{name}-rpmlintrc
@@ -36,7 +36,6 @@
 Requires:   unixODBC
 Requires(post): unixODBC
 Requires(preun): unixODBC
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 ODBC driver for SQLite interfacing SQLite 3.x using the
@@ -63,7 +62,7 @@
 %build
 %configure \
--enable-static=no
-make %{?_smp_mflags} all doxy
+%make_build all doxy
 dos2unix README
 
 %install
@@ -72,44 +71,80 @@
 find %{buildroot} -type f \( -name '*.a' -o -name '*.la' \) -delete -print
 
 %post
+/sbin/ldconfig
 if [ -x %{_bindir}/odbcinst ] ; then
-   INST=/tmp/sqliteinst$$
+   INST=$(%{_bindir}/mktemp)
+
+   if [ -r %{_libdir}/libsqliteodbc.so ] ; then
+   %{_bindir}/cat > $INST <<- 'EOD'
+   [SQLITE]
+   Description=SQLite ODBC 2.X
+   Driver=%{_libdir}/libsqliteodbc.so
+   Setup=%{_libdir}/libsqliteodbc.so
+   Threading=2
+   FileUsage=1
+   EOD
+
+   %{_bindir}/odbcinst -q -d -n SQLITE | %{_bindir}/grep 
'^\[SQLITE\]' >/dev/null || {
+   %{_bindir}/odbcinst -i -d -n SQLITE -f $INST || true
+   }
+
+   %{_bindir}/cat > $INST <<- 'EOD'
+   [SQLite Datasource]
+   Driver=SQLITE
+   EOD
+
+   %{_bindir}/odbcinst -q -s -n "SQLite Datasource" | \
+   %{_bindir}/grep '^\[SQLite Datasource\]' >/dev/null || {
+   %{_bindir}/odbcinst -i -l -s -n "SQLite Datasource" -f 
$INST || true
+   }
+   fi
+
if [ -r %{_libdir}/libsqlite3odbc.so ] ; then
-  cat > $INST << 'EOD'
-[SQLITE3]
-Description=SQLite ODBC 3.X
-Driver=%{_libdir}/libsqlite3odbc.so
-Setup=%{_libdir}/libsqlite3odbc.so
-Threading=2
-FileUsage=1
-EOD
-  %{_bindir}/odbcinst -q -d -n SQLITE3 | grep '^\[SQLITE3\]' >/dev/null || 
{
+   %{_bindir}/cat > $INST <<- 'EOD'
+   [SQLITE3]
+   Description=SQLite ODBC 3.X
+   Driver=%{_libdir}/libsqlite3odbc.so
+   Setup=%{_libdir}/libsqlite3odbc.so
+   Threading=2
+   FileUsage=1
+   EOD
+
+   %{_bindir}/odbcinst -q -d -n SQLITE3 | %{_bindir}/grep 
'^\[SQLITE3\]' >/dev/null || {
 %{_bindir}/odbcinst -i -d -n SQLITE3 -f $INST || true
   }
-  cat > $INST << 'EOD'
-[SQLite3 Datasource]
-Driver=SQLITE3
-EOD
+
+   %{_bindir}/cat > $INST <<- 'EOD'
+   [SQLite3 Datasource]
+   Driver=SQLITE3
+   EOD
+
   %{_bindir}/odbcinst -q -s -n "SQLite3 Datasource" | \
-grep '^\[SQLite3 Datasource\]' >/dev/null || {
+   %{_bindir}/grep '^\[SQLite3 Datasource\]' >/dev/null || {
 %{_bindir}/odbcinst -i -l -s -n "SQLite3 Datasource" -f $INST || true
   }
fi
-   rm -f $INST || true
+
+   %{_bindir}/rm -f $INST || true
 fi
 
 %preun
 if [ "$1" = "0" ] ; then
 test -x %{_bindir}/odbcins

commit sqliteodbc for openSUSE:Factory

2019-03-19 Thread root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2019-03-19 09:59:21

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new.28833 (New)


Package is "sqliteodbc"

Tue Mar 19 09:59:21 2019 rev:8 rq:685965 version:0.9996

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2016-12-10 
18:29:15.833105529 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new.28833/sqliteodbc.changes 
2019-03-19 09:59:21.840079551 +0100
@@ -1,0 +2,8 @@
+Mon Mar 18 07:43:43 UTC 2019 - Tuukka Pasanen 
+
+- Update to version 0.9996
+   * update to SQLite 3.22.0
+   * fixes in handling DDL in SQLExecDirect() et.al., thanks Andre Mikulec 
for testing
+* cleanup utf8/unicode conversion functions
+
+---

Old:

  sqliteodbc-0.9995.tar.gz

New:

  sqliteodbc-0.9996.tar.gz



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.MOWVrw/_old  2019-03-19 09:59:23.228078994 +0100
+++ /var/tmp/diff_new_pack.MOWVrw/_new  2019-03-19 09:59:23.248078986 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sqliteodbc
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,12 +12,12 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   sqliteodbc
-Version:0.9995
+Version:0.9996
 Release:0
 Summary:ODBC driver for SQLite
 License:BSD-2-Clause

++ sqliteodbc-0.9995.tar.gz -> sqliteodbc-0.9996.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9995/ChangeLog 
new/sqliteodbc-0.9996/ChangeLog
--- old/sqliteodbc-0.9995/ChangeLog 2016-12-01 06:41:00.0 +0100
+++ new/sqliteodbc-0.9996/ChangeLog 2018-02-24 10:29:38.0 +0100
@@ -1,6 +1,13 @@
 SQLite ODBC Driver
 --
 
+Sat Feb 24 2018 version 0.9996 released
+
+   * update to SQLite 3.22.0
+   * fixes in handling DDL in SQLExecDirect() et.al., thanks
+ Andre Mikulec for testing
+   * cleanup utf8/unicode conversion functions
+
 Tue Dec 01 2016 version 0.9995 released
 
* update to SQLite 3.15.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9995/README new/sqliteodbc-0.9996/README
--- old/sqliteodbc-0.9995/README2016-12-01 06:14:16.0 +0100
+++ new/sqliteodbc-0.9996/README2018-02-24 10:30:07.0 +0100
@@ -13,7 +13,7 @@
 
 http://www.ch-werner.de/sqliteodbc/sqliteodbc.exe
 
-The binaries were made with SQLite 2.8.17, SQLite 3.15.2, MingW
+The binaries were made with SQLite 2.8.17, SQLite 3.22.0, MingW
 cross compiler and tested on Windows NT 4.0 with the query tool
 of MS Excel 97, with StarOffice 5.2 and OpenOffice 1.1 and 2.x.
 Execute the sqliteodbc.exe NSIS installer to unpack the necessary
@@ -26,7 +26,7 @@
 can be specified in the respective field. If empty a default value
 of 10 milliseconds is used.
 
-The Win64 installer (sqliteodbc_w64.exe) was made with SQLite 3.15.2,
+The Win64 installer (sqliteodbc_w64.exe) was made with SQLite 3.22.0,
 MingW cross compiler and only rudimentary tested on Windows Vista 64.
 
 Other tests were made on Linux with the "isql" command line tool
@@ -395,7 +395,7 @@
 - improve documentation
 
 
-2016-12-01
+2018-02-24
 Christian Werner
 mailto:c...@ch-werner.de
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9995/VERSION 
new/sqliteodbc-0.9996/VERSION
--- old/sqliteodbc-0.9995/VERSION   2016-12-01 06:14:30.0 +0100
+++ new/sqliteodbc-0.9996/VERSION   2017-06-10 09:17:50.0 +0200
@@ -1 +1 @@
-0.9995
+0.9996
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9995/debian/changelog 
new/sqliteodbc-0.9996/debian/changelog
--- old/sqliteodbc-0.9995/debian/changelog  2016-12-01 06:41:38.0 
+0100
+++ new/sqliteodbc-0.9996/debian/changelog  2018-02-24 10:30:57.0 
+0100
@@ -1,6 +1,6 @@
-sqliteodbc (0.9995-1) unstable; urgency=low
+sqliteodbc (0.9996-1) unstable; urgency=low
 
   * automatically recreated by configure
 
- -- Christian Wern

commit sqliteodbc for openSUSE:Factory

2016-04-06 Thread h_root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2016-04-06 11:52:14

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new (New)


Package is "sqliteodbc"

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2016-02-17 
12:25:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new/sqliteodbc.changes   
2016-04-06 11:52:16.0 +0200
@@ -1,0 +2,15 @@
+Mon Apr  4 06:48:00 UTC 2016 - tuukka.pasa...@ilmi.fi
+
+- Update to 0.9223
+  * update to SQLite 3.10.0
+  * fixes in SQLStatistic() for decting unique indices
+  * for SQLGetPrivateProfileString() try to load libodbcinst.so.2
+first, then libodbcinst.so.1
+  * eliminated some valgrind warnings regarding strcpy()
+  * increased max. length for data source name in Win32
+config dialog
+  * configure: detect presence of sqlite3_columndatabasename()
+and sqlite3_columnoriginname()
+- Doxygen.conf add 'HTML_TIMESTAMP = NO' (boo#969496)
+
+---

Old:

  sqliteodbc-0.9992.tar.gz

New:

  sqliteodbc-0.9993.tar.gz



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.fPQ8VN/_old  2016-04-06 11:52:17.0 +0200
+++ /var/tmp/diff_new_pack.fPQ8VN/_new  2016-04-06 11:52:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   sqliteodbc
-Version:0.9992
+Version:0.9993
 Release:0
 Summary:ODBC driver for SQLite
 License:BSD-2-Clause
@@ -56,6 +56,9 @@
 
 %prep
 %setup -q
+# Fix bug https://bugzilla.novell.com/show_bug.cgi?id=969496
+# No more changing time stamp for every time this builds
+echo "HTML_TIMESTAMP = NO" >> doxygen.conf
 
 %build
 %configure \

++ sqliteodbc-0.9992.tar.gz -> sqliteodbc-0.9993.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9992/ChangeLog 
new/sqliteodbc-0.9993/ChangeLog
--- old/sqliteodbc-0.9992/ChangeLog 2015-04-13 08:29:02.0 +0200
+++ new/sqliteodbc-0.9993/ChangeLog 2016-01-11 11:01:15.0 +0100
@@ -1,6 +1,18 @@
 SQLite ODBC Driver
 --
 
+Mon Jan 11 2016 version 0.9993 released
+
+   * update to SQLite 3.10.0
+   * fixes in SQLStatistic() for decting unique indices
+   * for SQLGetPrivateProfileString() try to load libodbcinst.so.2
+ first, then libodbcinst.so.1
+   * eliminated some valgrind warnings regarding strcpy()
+   * increased max. length for data source name in Win32
+ config dialog
+   * configure: detect presence of sqlite3_columndatabasename()
+ and sqlite3_columnoriginname()
+
 Mon Apr 13 2015 version 0.9992 released
 
* update to SQLite 3.8.9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9992/Makefile.in 
new/sqliteodbc-0.9993/Makefile.in
--- old/sqliteodbc-0.9992/Makefile.in   2013-06-19 10:33:26.0 +0200
+++ new/sqliteodbc-0.9993/Makefile.in   2015-09-18 08:50:38.0 +0200
@@ -18,6 +18,8 @@
 SQLITE3_INC =  @SQLITE3_INC@
 SQLITE3_LIB =  @SQLITE3_LIB@
 SQLITE3_FLAGS = -DHAVE_SQLITE3COLUMNTABLENAME=@SQLITE3_COLUMNTABLENAME@ \
+   -DHAVE_SQLITE3COLUMNDATABASENAME=@SQLITE3_COLUMNDATABASENAME@ \
+   -DHAVE_SQLITE3COLUMNORIGINNAME=@SQLITE3_COLUMNORIGINNAME@ \
-DHAVE_SQLITE3LOADEXTENSION=@SQLITE3_LOADEXTENSION@ \
-DHAVE_SQLITE3OVERLOADFUNCTION=@SQLITE3_OVERLOADFUNCTION@ \
-DHAVE_SQLITE3PREPAREV2=@SQLITE3_PREPARE_V2@ \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9992/Makefile.mingw-cross 
new/sqliteodbc-0.9993/Makefile.mingw-cross
--- old/sqliteodbc-0.9992/Makefile.mingw-cross  2014-09-14 20:20:50.0 
+0200
+++ new/sqliteodbc-0.9993/Makefile.mingw-cross  2015-09-23 10:07:19.0 
+0200
@@ -44,12 +44,15 @@
 SQLITE3_SRC =  sqlite3/src
 SQLITE3_LIB =  sqlite3/libsqlite3.a
 SQLITE3_FLAGS= -DHAVE_SQLITE3COLUMNTABLENAME=1 \
+   -DHAVE_SQLITE3COLUMNDATABASENAME=1 \
+   -DHAVE_SQLITE3COLUMNORIGINNAME=1 \
-DHAVE_SQLITE3LOADEXTENSION=1 \
-DHAVE_SQLITE3PREPAREV2=1 \
-DHAVE_SQLITE3VFS=1 \
-DHAVE_SQLITE3PROFILE=1 \
-DHAVE_SQLITE3CLOSEV2=1 \
-   -DHAVE_SQLITE3STRNICMP=1
+   -DHAVE_SQLITE3STRNICMP=1 \
+   -DHAVE_SQLITE3TABLECOLUMNMETADATA=1
 SQLITE3_A10N = sqlite3/sqlite3.c
 SQLITE3_A10N_FLAGS = \
-DWIN32=1 -DNDEBUG=1 -DNO_TCL -DTHREADSAFE=1 \
diff -urN '-

commit sqliteodbc for openSUSE:Factory

2016-02-17 Thread h_root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2016-02-17 10:26:09

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new (New)


Package is "sqliteodbc"

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2016-02-08 
09:47:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new/sqliteodbc.changes   
2016-02-17 12:25:03.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb  8 13:03:53 UTC 2016 - mplus...@suse.com
+
+- Fix removal of .la and .a files
+
+---



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.MBjSXc/_old  2016-02-17 12:25:04.0 +0100
+++ /var/tmp/diff_new_pack.MBjSXc/_new  2016-02-17 12:25:04.0 +0100
@@ -66,7 +66,7 @@
 %install
 mkdir -p %{buildroot}%{_libdir}
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
-find %{buildroot} -type f -name "*.a" -o -name "*.la" -delete -print
+find %{buildroot} -type f \( -name '*.a' -o -name '*.la' \) -delete -print
 
 %post
 if [ -x %{_bindir}/odbcinst ] ; then




commit sqliteodbc for openSUSE:Factory

2016-02-08 Thread h_root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2016-02-08 09:47:38

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new (New)


Package is "sqliteodbc"

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2015-12-24 
12:16:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new/sqliteodbc.changes   
2016-02-08 09:47:38.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb  3 22:38:21 UTC 2016 - mplus...@suse.com
+
+- Add missing build dependencies
+
+---



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.HA5hgw/_old  2016-02-08 09:47:39.0 +0100
+++ /var/tmp/diff_new_pack.HA5hgw/_new  2016-02-08 09:47:39.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package sqliteodbc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -29,8 +29,10 @@
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
 BuildRequires:  graphviz
+BuildRequires:  libxml2-devel
 BuildRequires:  sqlite3-devel
 BuildRequires:  unixODBC-devel
+BuildRequires:  zlib-devel
 Requires:   unixODBC
 Requires(post): unixODBC
 Requires(preun): unixODBC
@@ -64,8 +66,7 @@
 %install
 mkdir -p %{buildroot}%{_libdir}
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
-rm -f %{buildroot}%{_libdir}/libsqlite3odbc*.{a,la}
-rm -f %{buildroot}%{_libdir}/libsqlite3_mod_*.{a,la}
+find %{buildroot} -type f -name "*.a" -o -name "*.la" -delete -print
 
 %post
 if [ -x %{_bindir}/odbcinst ] ; then




commit sqliteodbc for openSUSE:Factory

2015-12-24 Thread h_root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2015-12-24 12:16:29

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new (New)


Package is "sqliteodbc"

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2015-04-18 
10:41:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new/sqliteodbc.changes   
2015-12-24 12:16:32.0 +0100
@@ -1,0 +2,6 @@
+Fri Dec 18 09:02:14 UTC 2015 - mplus...@suse.com
+
+- Add sqliteodbc-rpmlintrc
+  * this is not regular shared library but plugin for unixODBC 
+
+---

New:

  sqliteodbc-rpmlintrc



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.UmJM1m/_old  2015-12-24 12:16:33.0 +0100
+++ /var/tmp/diff_new_pack.UmJM1m/_new  2015-12-24 12:16:33.0 +0100
@@ -23,9 +23,12 @@
 License:BSD-2-Clause
 Group:  Development/Libraries/C and C++
 Url:http://www.ch-werner.de/sqliteodbc
-Source: http://www.ch-werner.de/sqliteodbc/%{name}-%{version}.tar.gz
+Source0:http://www.ch-werner.de/sqliteodbc/%{name}-%{version}.tar.gz
+# This is not typical shared library but plugin for unixODBC
+Source1:%{name}-rpmlintrc
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
+BuildRequires:  graphviz
 BuildRequires:  sqlite3-devel
 BuildRequires:  unixODBC-devel
 Requires:   unixODBC

++ sqliteodbc-rpmlintrc ++
# This is not typical shared library but plugin for unixODBC
addFilter("shlib-policy-missing-suffix .*")
addFilter("postin-without-ldconfig .*")
addFilter("library-without-ldconfig-postun .*")



commit sqliteodbc for openSUSE:Factory

2015-04-18 Thread h_root
Hello community,

here is the log from the commit of package sqliteodbc for openSUSE:Factory 
checked in at 2015-04-18 10:41:04

Comparing /work/SRC/openSUSE:Factory/sqliteodbc (Old)
 and  /work/SRC/openSUSE:Factory/.sqliteodbc.new (New)


Package is "sqliteodbc"

Changes:

--- /work/SRC/openSUSE:Factory/sqliteodbc/sqliteodbc.changes2015-02-12 
10:22:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.sqliteodbc.new/sqliteodbc.changes   
2015-04-18 10:41:06.0 +0200
@@ -1,0 +2,10 @@
+Fri Apr 17 13:16:23 UTC 2015 - mplus...@suse.com
+
+- Update to 0.9992
+  * update to SQLite 3.8.9
+  * fixed buffer length return in SQLGetStmtAttr*()
+  * report SQL_SC_SQL92_ENTRY level for 
+SQLGetInfo(...SQL_SQL_CONFORMANCE...)
+  * improved configure for cross-compiling
+
+---

Old:

  sqliteodbc-0.9991.tar.gz

New:

  sqliteodbc-0.9992.tar.gz



Other differences:
--
++ sqliteodbc.spec ++
--- /var/tmp/diff_new_pack.3LMX3o/_old  2015-04-18 10:41:06.0 +0200
+++ /var/tmp/diff_new_pack.3LMX3o/_new  2015-04-18 10:41:06.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sqliteodbc
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   sqliteodbc
-Version:0.9991
+Version:0.9992
 Release:0
 Summary:ODBC driver for SQLite
 License:BSD-2-Clause
@@ -53,7 +53,8 @@
 %setup -q
 
 %build
-%configure --enable-static=no
+%configure \
+   --enable-static=no
 make %{?_smp_mflags} all doxy
 dos2unix README
 

++ sqliteodbc-0.9991.tar.gz -> sqliteodbc-0.9992.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9991/ChangeLog 
new/sqliteodbc-0.9992/ChangeLog
--- old/sqliteodbc-0.9991/ChangeLog 2014-12-29 10:58:03.0 +0100
+++ new/sqliteodbc-0.9992/ChangeLog 2015-04-13 08:29:02.0 +0200
@@ -1,6 +1,14 @@
 SQLite ODBC Driver
 --
 
+Mon Apr 13 2015 version 0.9992 released
+
+   * update to SQLite 3.8.9
+   * fixed buffer length return in SQLGetStmtAttr*()
+   * report SQL_SC_SQL92_ENTRY level for
+ SQLGetInfo(...SQL_SQL_CONFORMANCE...)
+   * improved configure for cross-compiling
+
 Mon Dec 29 2014 version 0.9991 released
 
* update to SQLite 3.8.7.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sqliteodbc-0.9991/README new/sqliteodbc-0.9992/README
--- old/sqliteodbc-0.9991/README2014-12-29 09:44:41.0 +0100
+++ new/sqliteodbc-0.9992/README2015-04-13 08:29:27.0 +0200
@@ -1,10 +1,9 @@
 SQLite ODBC Driver
 --
 
-This is an open source ODBC driver for the wonderful
-SQLite 2.8.* and SQLite 3.* Database Engine/Library.
-The driver is usable but may contain bugs. Use it on
-your own risk.
+This is an open source ODBC driver for the wonderful SQLite 2.8.*
+and SQLite 3.* Database Engine/Library. The driver is usable but may
+contain bugs. Use it on your own risk.
 
 The current source can be downloaded from
 
@@ -14,7 +13,7 @@
 
 http://www.ch-werner.de/sqliteodbc/sqliteodbc.exe
 
-The binaries were made with SQLite 2.8.17, SQLite 3.8.7.4, MingW
+The binaries were made with SQLite 2.8.17, SQLite 3.8.9, MingW
 cross compiler and tested on Windows NT 4.0 with the query tool
 of MS Excel 97, with StarOffice 5.2 and OpenOffice 1.1 and 2.x.
 Execute the sqliteodbc.exe NSIS installer to unpack the necessary
@@ -27,7 +26,7 @@
 can be specified in the respective field. If empty a default value
 of 10 milliseconds is used.
 
-The Win64 installer (sqliteodbc_w64.exe) was made with SQLite 3.8.7.4,
+The Win64 installer (sqliteodbc_w64.exe) was made with SQLite 3.8.9,
 MingW cross compiler and only rudimentary tested on Windows Vista 64.
 
 Other tests were made on Linux with the "isql" command line tool
@@ -143,6 +142,54 @@
 Timeout=2000
 
 
+DSN-less connection to the driver
+
+  Using the SQLDriverConnect() API it is possible to connect to
+  a SQLite database with these strings (Win32 and UN*X)
+
+DSN=SQLite Datasource;Database=full-path-to-db;...
+DSN=SQLite3 Datasource;Database=full-path-to-db;...
+
+  alternatively
+
+  Win32:
+
+Driver=SQLite ODBC Driver;Database=full-path-to-db;...
+Driver=SQLite3 ODBC Driver;Database=full-path-to-db;...
+
+  UN*X (Linux RPM):
+
+Driver=SQLITE;Database=full-path-to-db;...
+Driver=SQLITE3;Database=