Mon May 20 19:17:15 2013 UTC ()
Changes 3.7.17:
Add support for memory-mapped I/O.
Add the sqlite3_strglob() convenience interface.
Assigned the integer at offset 68 in the database header as the Application ID for when SQLite is used as an application file-format. Added the PRAGMA application_id command to query and set the Application ID.
Report rollback recovery in the error log as SQLITE_NOTICE_RECOVER_ROLLBACK. Change the error log code for WAL recover from SQLITE_OK to SQLITE_NOTICE_RECOVER_WAL.
Report the risky uses of unlinked database files and database filename aliasing as SQLITE_WARNING messages in the error log.
Added the SQLITE_TRACE_SIZE_LIMIT compile-time option.
Increase the default value of SQLITE_MAX_SCHEMA_RETRY to 50 and make sure that it is honored in every place that a schema change might force a statement retry.
Add a new test harness called "mptester" used to verify correct operation when multiple processes are using the same database file at the same time.
Enhance the extension loading mechanism to be more flexible (while still maintaining backwards compatibility) in two ways:
If the default entry point "sqlite3_extension_init" is not present in the loadable extension, also try an entry point "sqlite3_X_init" where "X" is based on the shared library filename. This allows every extension to have a different entry point, which allows them to be statically linked with no code changes.
The shared library filename passed to sqlite3_load_extension() may omit the filename suffix, and an appropriate architecture-dependent suffix (".so", ".dylib", or ".dll") will be added automatically.
Added many new loadable extensions to the source tree, including amatch, closure, fuzzer, ieee754, nextchar, regexp, spellfix, and wholenumber. See header comments on each extension source file for further information about what that extension does.
Enhance FTS3 to avoid using excess stack space when there are a huge number of terms on the right-hand side of the MATCH operator. A side-effect of this change is that the MATCH operator can only accommodate 12 NEAR operators at a time.
Enhance the fts4aux virtual table so that it can be a TEMP table.
Added the fts3tokenize virtual table to the full-text search logic.
Query planner enhancement: Use the transitive property of constraints to move constraints into the outer loops of a join whenever possible, thereby reducing the amount of work that needs to occur in inner loops.
Discontinue the use of posix_fallocate() on unix, as it does not work on all filesystems.
Improved tracing and debugging facilities in the Windows VFS.
Bug fix: Fix a potential database corruption bug in shared cache mode when one database connection is closed while another is in the middle of a write transaction.
Bug fix: Only consider AS names from the result set as candidates for resolving identifiers in the WHERE clause if there are no other matches. In the ORDER BY clause, AS names take priority over any column names.
Bug fix: Do not allow a virtual table to cancel the ORDER BY clause unless all outer loops are guaranteed to return no more than one row result.
Bug fix: Do not suppress the ORDER BY clause on a virtual table query if an IN constraint is used.
Bug fix: The command-line shell gives an exit code of 0 when terminated using the ".quit" command.
Bug fix: Make sure PRAGMA statements appear in sqlite3_trace() output.
Bug fix: When a compound query that uses an ORDER BY clause with a COLLATE operator, make sure that the sorting occurs according to the specified collation and that the comparisons associate with the compound query use the native collation.
Bug fix: Makes sure the authorizer callback gets a valid pointer to the string "ROWID" for the column-name parameter when doing an UPDATE that changes the rowid.
Bug fix: Do not move WHERE clause terms inside OR expressions that are contained within an ON clause of a LEFT JOIN.
Bug fix: Make sure an error is always reported when attempting to preform an operation that requires a collating sequence that is missing.


(adam)
diff -r1.65 -r1.66 pkgsrc/databases/sqlite3/Makefile
diff -r1.77 -r1.78 pkgsrc/databases/sqlite3/distinfo
diff -r1.19 -r1.20 pkgsrc/databases/sqlite3-docs/Makefile
diff -r1.17 -r1.18 pkgsrc/databases/sqlite3-docs/PLIST
diff -r1.17 -r1.18 pkgsrc/databases/sqlite3-docs/distinfo
diff -r1.46 -r1.47 pkgsrc/databases/sqlite3-tcl/Makefile
diff -r1.30 -r1.31 pkgsrc/databases/sqlite3-tcl/distinfo

cvs diff -r1.65 -r1.66 pkgsrc/databases/sqlite3/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3/Makefile 2013/05/09 07:39:05 1.65
+++ pkgsrc/databases/sqlite3/Makefile 2013/05/20 19:17:15 1.66
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.65 2013/05/09 07:39:05 adam Exp $ 1# $NetBSD: Makefile,v 1.66 2013/05/20 19:17:15 adam Exp $
2 2
3DISTNAME= sqlite-autoconf-3071602 3DISTNAME= sqlite-autoconf-3071700
4PKGNAME= sqlite3-3.7.16.2 4PKGNAME= sqlite3-3.7.17
5PKGREVISION= 1 
6CATEGORIES= databases 5CATEGORIES= databases
7MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
8 http://www.sqlite.org/2013/ 7 http://www.sqlite.org/2013/
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://www.sqlite.org/ 10HOMEPAGE= http://www.sqlite.org/
12COMMENT= SQL Database Engine in a C Library 11COMMENT= SQL Database Engine in a C Library
13LICENSE= public-domain 12LICENSE= public-domain
14 13
15.include "options.mk" 14.include "options.mk"
16 15
17USE_LIBTOOL= yes 16USE_LIBTOOL= yes
18USE_TOOLS+= gmake 17USE_TOOLS+= gmake

cvs diff -r1.77 -r1.78 pkgsrc/databases/sqlite3/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3/distinfo 2013/04/15 15:33:46 1.77
+++ pkgsrc/databases/sqlite3/distinfo 2013/05/20 19:17:15 1.78
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.77 2013/04/15 15:33:46 adam Exp $ 1$NetBSD: distinfo,v 1.78 2013/05/20 19:17:15 adam Exp $
2 2
3SHA1 (sqlite-autoconf-3071602.tar.gz) = 85bf857cf86f34831d55d7ba97606dba581b8d62 3SHA1 (sqlite-autoconf-3071700.tar.gz) = e31958e56b1d7bef9433b1ff2e875c8c290d37f4
4RMD160 (sqlite-autoconf-3071602.tar.gz) = 2e4a7661ec1cea4ad1f7a9f95b932d36e59f1a6a 4RMD160 (sqlite-autoconf-3071700.tar.gz) = bf8dc7ac0148733f2890ac4a49be26b01e3083ba
5Size (sqlite-autoconf-3071602.tar.gz) = 1854396 bytes 5Size (sqlite-autoconf-3071700.tar.gz) = 1876108 bytes

cvs diff -r1.19 -r1.20 pkgsrc/databases/sqlite3-docs/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-docs/Makefile 2013/04/24 10:06:48 1.19
+++ pkgsrc/databases/sqlite3-docs/Makefile 2013/05/20 19:17:15 1.20
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.19 2013/04/24 10:06:48 sbd Exp $ 1# $NetBSD: Makefile,v 1.20 2013/05/20 19:17:15 adam Exp $
2 2
3DISTNAME= sqlite-doc-3071602 3DISTNAME= sqlite-doc-3071700
4PKGNAME= sqlite3-docs-3.7.16.2 4PKGNAME= sqlite3-docs-3.7.17
5PKGREVISION= 1 
6CATEGORIES= databases 5CATEGORIES= databases
7MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
8 http://www.sqlite.org/2013/ 7 http://www.sqlite.org/2013/
9EXTRACT_SUFX= .zip 8EXTRACT_SUFX= .zip
10 9
11MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
12HOMEPAGE= http://sqlite.org/ 11HOMEPAGE= http://sqlite.org/
13COMMENT= SQL Database Engine in a C Library (docs package) 12COMMENT= SQL Database Engine in a C Library (docs package)
14# "Portions of the documentation and some code used as part of the 13# "Portions of the documentation and some code used as part of the
15# build process might fall under other licenses. We do not worry 14# build process might fall under other licenses. We do not worry
16# about the licensing of the documentation and build code so much 15# about the licensing of the documentation and build code so much
17# because none of these things are part of the core deliverable SQLite 16# because none of these things are part of the core deliverable SQLite
18# library." 17# library."

cvs diff -r1.17 -r1.18 pkgsrc/databases/sqlite3-docs/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-docs/PLIST 2013/04/15 15:33:46 1.17
+++ pkgsrc/databases/sqlite3-docs/PLIST 2013/05/20 19:17:15 1.18
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.17 2013/04/15 15:33:46 adam Exp $ 1@comment $NetBSD: PLIST,v 1.18 2013/05/20 19:17:15 adam Exp $
2share/doc/sqlite3/34to35.html 2share/doc/sqlite3/34to35.html
3share/doc/sqlite3/35to36.html 3share/doc/sqlite3/35to36.html
4share/doc/sqlite3/about.html 4share/doc/sqlite3/about.html
5share/doc/sqlite3/amalgamation.html 5share/doc/sqlite3/amalgamation.html
6share/doc/sqlite3/arch.html 6share/doc/sqlite3/arch.html
7share/doc/sqlite3/asyncvfs.html 7share/doc/sqlite3/asyncvfs.html
8share/doc/sqlite3/atomiccommit.html 8share/doc/sqlite3/atomiccommit.html
9share/doc/sqlite3/autoinc.html 9share/doc/sqlite3/autoinc.html
10share/doc/sqlite3/backup.html 10share/doc/sqlite3/backup.html
11share/doc/sqlite3/books.html 11share/doc/sqlite3/books.html
12share/doc/sqlite3/btreemodule.html 12share/doc/sqlite3/btreemodule.html
13share/doc/sqlite3/c3ref/aggregate_context.html 13share/doc/sqlite3/c3ref/aggregate_context.html
14share/doc/sqlite3/c3ref/aggregate_count.html 14share/doc/sqlite3/c3ref/aggregate_count.html
@@ -135,26 +135,27 @@ share/doc/sqlite3/c3ref/reset_auto_exten @@ -135,26 +135,27 @@ share/doc/sqlite3/c3ref/reset_auto_exten
135share/doc/sqlite3/c3ref/result_blob.html 135share/doc/sqlite3/c3ref/result_blob.html
136share/doc/sqlite3/c3ref/set_authorizer.html 136share/doc/sqlite3/c3ref/set_authorizer.html
137share/doc/sqlite3/c3ref/sleep.html 137share/doc/sqlite3/c3ref/sleep.html
138share/doc/sqlite3/c3ref/soft_heap_limit.html 138share/doc/sqlite3/c3ref/soft_heap_limit.html
139share/doc/sqlite3/c3ref/soft_heap_limit64.html 139share/doc/sqlite3/c3ref/soft_heap_limit64.html
140share/doc/sqlite3/c3ref/sql.html 140share/doc/sqlite3/c3ref/sql.html
141share/doc/sqlite3/c3ref/sqlite3.html 141share/doc/sqlite3/c3ref/sqlite3.html
142share/doc/sqlite3/c3ref/status.html 142share/doc/sqlite3/c3ref/status.html
143share/doc/sqlite3/c3ref/step.html 143share/doc/sqlite3/c3ref/step.html
144share/doc/sqlite3/c3ref/stmt.html 144share/doc/sqlite3/c3ref/stmt.html
145share/doc/sqlite3/c3ref/stmt_busy.html 145share/doc/sqlite3/c3ref/stmt_busy.html
146share/doc/sqlite3/c3ref/stmt_readonly.html 146share/doc/sqlite3/c3ref/stmt_readonly.html
147share/doc/sqlite3/c3ref/stmt_status.html 147share/doc/sqlite3/c3ref/stmt_status.html
 148share/doc/sqlite3/c3ref/strglob.html
148share/doc/sqlite3/c3ref/stricmp.html 149share/doc/sqlite3/c3ref/stricmp.html
149share/doc/sqlite3/c3ref/table_column_metadata.html 150share/doc/sqlite3/c3ref/table_column_metadata.html
150share/doc/sqlite3/c3ref/temp_directory.html 151share/doc/sqlite3/c3ref/temp_directory.html
151share/doc/sqlite3/c3ref/test_control.html 152share/doc/sqlite3/c3ref/test_control.html
152share/doc/sqlite3/c3ref/threadsafe.html 153share/doc/sqlite3/c3ref/threadsafe.html
153share/doc/sqlite3/c3ref/total_changes.html 154share/doc/sqlite3/c3ref/total_changes.html
154share/doc/sqlite3/c3ref/unlock_notify.html 155share/doc/sqlite3/c3ref/unlock_notify.html
155share/doc/sqlite3/c3ref/update_hook.html 156share/doc/sqlite3/c3ref/update_hook.html
156share/doc/sqlite3/c3ref/uri_boolean.html 157share/doc/sqlite3/c3ref/uri_boolean.html
157share/doc/sqlite3/c3ref/user_data.html 158share/doc/sqlite3/c3ref/user_data.html
158share/doc/sqlite3/c3ref/value.html 159share/doc/sqlite3/c3ref/value.html
159share/doc/sqlite3/c3ref/value_blob.html 160share/doc/sqlite3/c3ref/value_blob.html
160share/doc/sqlite3/c3ref/vfs.html 161share/doc/sqlite3/c3ref/vfs.html
@@ -184,26 +185,27 @@ share/doc/sqlite3/custombuild.html @@ -184,26 +185,27 @@ share/doc/sqlite3/custombuild.html
184share/doc/sqlite3/cvstrac.css 185share/doc/sqlite3/cvstrac.css
185share/doc/sqlite3/datatype3.html 186share/doc/sqlite3/datatype3.html
186share/doc/sqlite3/datatypes.html 187share/doc/sqlite3/datatypes.html
187share/doc/sqlite3/dev.html 188share/doc/sqlite3/dev.html
188share/doc/sqlite3/different.html 189share/doc/sqlite3/different.html
189share/doc/sqlite3/doc_backlink_crossref.html 190share/doc/sqlite3/doc_backlink_crossref.html
190share/doc/sqlite3/doc_keyword_crossref.html 191share/doc/sqlite3/doc_keyword_crossref.html
191share/doc/sqlite3/doc_pagelink_crossref.html 192share/doc/sqlite3/doc_pagelink_crossref.html
192share/doc/sqlite3/doc_target_crossref.html 193share/doc/sqlite3/doc_target_crossref.html
193share/doc/sqlite3/doclist.html 194share/doc/sqlite3/doclist.html
194share/doc/sqlite3/docs.html 195share/doc/sqlite3/docs.html
195share/doc/sqlite3/download.html 196share/doc/sqlite3/download.html
196share/doc/sqlite3/eqp.html 197share/doc/sqlite3/eqp.html
 198share/doc/sqlite3/errlog.html
197share/doc/sqlite3/famous.html 199share/doc/sqlite3/famous.html
198share/doc/sqlite3/faq.html 200share/doc/sqlite3/faq.html
199share/doc/sqlite3/favicon.ico 201share/doc/sqlite3/favicon.ico
200share/doc/sqlite3/features.html 202share/doc/sqlite3/features.html
201share/doc/sqlite3/fileformat2.html 203share/doc/sqlite3/fileformat2.html
202share/doc/sqlite3/fileio.html 204share/doc/sqlite3/fileio.html
203share/doc/sqlite3/footprint.html 205share/doc/sqlite3/footprint.html
204share/doc/sqlite3/foreignkeys.html 206share/doc/sqlite3/foreignkeys.html
205share/doc/sqlite3/formatchng.html 207share/doc/sqlite3/formatchng.html
206share/doc/sqlite3/fts3.html 208share/doc/sqlite3/fts3.html
207share/doc/sqlite3/howtocompile.html 209share/doc/sqlite3/howtocompile.html
208share/doc/sqlite3/howtocorrupt.html 210share/doc/sqlite3/howtocorrupt.html
209share/doc/sqlite3/images/2005osaward.gif 211share/doc/sqlite3/images/2005osaward.gif
@@ -344,26 +346,27 @@ share/doc/sqlite3/images/qp/idx2.gif @@ -344,26 +346,27 @@ share/doc/sqlite3/images/qp/idx2.gif
344share/doc/sqlite3/images/qp/idx2lu1.gif 346share/doc/sqlite3/images/qp/idx2lu1.gif
345share/doc/sqlite3/images/qp/idx3.gif 347share/doc/sqlite3/images/qp/idx3.gif
346share/doc/sqlite3/images/qp/idx3lu1.gif 348share/doc/sqlite3/images/qp/idx3lu1.gif
347share/doc/sqlite3/images/qp/idx3lu2.gif 349share/doc/sqlite3/images/qp/idx3lu2.gif
348share/doc/sqlite3/images/qp/idx4.gif 350share/doc/sqlite3/images/qp/idx4.gif
349share/doc/sqlite3/images/qp/idx4lu1.gif 351share/doc/sqlite3/images/qp/idx4lu1.gif
350share/doc/sqlite3/images/qp/obfruitidx1.gif 352share/doc/sqlite3/images/qp/obfruitidx1.gif
351share/doc/sqlite3/images/qp/obfruitidx4.gif 353share/doc/sqlite3/images/qp/obfruitidx4.gif
352share/doc/sqlite3/images/qp/obfruitnoidx.gif 354share/doc/sqlite3/images/qp/obfruitnoidx.gif
353share/doc/sqlite3/images/qp/obrowid.gif 355share/doc/sqlite3/images/qp/obrowid.gif
354share/doc/sqlite3/images/qp/orquery.gif 356share/doc/sqlite3/images/qp/orquery.gif
355share/doc/sqlite3/images/qp/rowidlu.gif 357share/doc/sqlite3/images/qp/rowidlu.gif
356share/doc/sqlite3/images/qp/tab.gif 358share/doc/sqlite3/images/qp/tab.gif
 359share/doc/sqlite3/images/qp/tpchq8.gif
357share/doc/sqlite3/images/se.gif 360share/doc/sqlite3/images/se.gif
358share/doc/sqlite3/images/se.png 361share/doc/sqlite3/images/se.png
359share/doc/sqlite3/images/shane1.jpg 362share/doc/sqlite3/images/shane1.jpg
360share/doc/sqlite3/images/shared.gif 363share/doc/sqlite3/images/shared.gif
361share/doc/sqlite3/images/sqlite370.jpg 364share/doc/sqlite3/images/sqlite370.jpg
362share/doc/sqlite3/images/sqlite370_banner.gif 365share/doc/sqlite3/images/sqlite370_banner.gif
363share/doc/sqlite3/images/src_logo.gif 366share/doc/sqlite3/images/src_logo.gif
364share/doc/sqlite3/images/sw.gif 367share/doc/sqlite3/images/sw.gif
365share/doc/sqlite3/images/sw.png 368share/doc/sqlite3/images/sw.png
366share/doc/sqlite3/images/syntax/alter-table-stmt.gif 369share/doc/sqlite3/images/syntax/alter-table-stmt.gif
367share/doc/sqlite3/images/syntax/analyze-stmt.gif 370share/doc/sqlite3/images/syntax/analyze-stmt.gif
368share/doc/sqlite3/images/syntax/attach-stmt.gif 371share/doc/sqlite3/images/syntax/attach-stmt.gif
369share/doc/sqlite3/images/syntax/begin-stmt.gif 372share/doc/sqlite3/images/syntax/begin-stmt.gif
@@ -445,41 +448,44 @@ share/doc/sqlite3/lang_explain.html @@ -445,41 +448,44 @@ share/doc/sqlite3/lang_explain.html
445share/doc/sqlite3/lang_expr.html 448share/doc/sqlite3/lang_expr.html
446share/doc/sqlite3/lang_indexedby.html 449share/doc/sqlite3/lang_indexedby.html
447share/doc/sqlite3/lang_insert.html 450share/doc/sqlite3/lang_insert.html
448share/doc/sqlite3/lang_keywords.html 451share/doc/sqlite3/lang_keywords.html
449share/doc/sqlite3/lang_naming.html 452share/doc/sqlite3/lang_naming.html
450share/doc/sqlite3/lang_reindex.html 453share/doc/sqlite3/lang_reindex.html
451share/doc/sqlite3/lang_replace.html 454share/doc/sqlite3/lang_replace.html
452share/doc/sqlite3/lang_savepoint.html 455share/doc/sqlite3/lang_savepoint.html
453share/doc/sqlite3/lang_select.html 456share/doc/sqlite3/lang_select.html
454share/doc/sqlite3/lang_transaction.html 457share/doc/sqlite3/lang_transaction.html
455share/doc/sqlite3/lang_update.html 458share/doc/sqlite3/lang_update.html
456share/doc/sqlite3/lang_vacuum.html 459share/doc/sqlite3/lang_vacuum.html
457share/doc/sqlite3/limits.html 460share/doc/sqlite3/limits.html
 461share/doc/sqlite3/loadext.html
458share/doc/sqlite3/lockingv3.html 462share/doc/sqlite3/lockingv3.html
459share/doc/sqlite3/malloc.html 463share/doc/sqlite3/malloc.html
460share/doc/sqlite3/mingw.html 464share/doc/sqlite3/mingw.html
 465share/doc/sqlite3/mmap.html
461share/doc/sqlite3/mostdeployed.html 466share/doc/sqlite3/mostdeployed.html
462share/doc/sqlite3/news.html 467share/doc/sqlite3/news.html
463share/doc/sqlite3/nulls.html 468share/doc/sqlite3/nulls.html
464share/doc/sqlite3/oldnews.html 469share/doc/sqlite3/oldnews.html
465share/doc/sqlite3/omitted.html 470share/doc/sqlite3/omitted.html
466share/doc/sqlite3/onefile.html 471share/doc/sqlite3/onefile.html
467share/doc/sqlite3/opcode.html 472share/doc/sqlite3/opcode.html
468share/doc/sqlite3/optoverview.html 473share/doc/sqlite3/optoverview.html
469share/doc/sqlite3/pragma.html 474share/doc/sqlite3/pragma.html
470share/doc/sqlite3/pressrelease-20071212.html 475share/doc/sqlite3/pressrelease-20071212.html
471share/doc/sqlite3/privatebranch.html 476share/doc/sqlite3/privatebranch.html
472share/doc/sqlite3/psow.html 477share/doc/sqlite3/psow.html
 478share/doc/sqlite3/queryplanner-ng.html
473share/doc/sqlite3/queryplanner.html 479share/doc/sqlite3/queryplanner.html
474share/doc/sqlite3/quickstart.html 480share/doc/sqlite3/quickstart.html
475share/doc/sqlite3/releaselog/3_0_0.html 481share/doc/sqlite3/releaselog/3_0_0.html
476share/doc/sqlite3/releaselog/3_0_1.html 482share/doc/sqlite3/releaselog/3_0_1.html
477share/doc/sqlite3/releaselog/3_0_2.html 483share/doc/sqlite3/releaselog/3_0_2.html
478share/doc/sqlite3/releaselog/3_0_3.html 484share/doc/sqlite3/releaselog/3_0_3.html
479share/doc/sqlite3/releaselog/3_0_4.html 485share/doc/sqlite3/releaselog/3_0_4.html
480share/doc/sqlite3/releaselog/3_0_5.html 486share/doc/sqlite3/releaselog/3_0_5.html
481share/doc/sqlite3/releaselog/3_0_6.html 487share/doc/sqlite3/releaselog/3_0_6.html
482share/doc/sqlite3/releaselog/3_0_7.html 488share/doc/sqlite3/releaselog/3_0_7.html
483share/doc/sqlite3/releaselog/3_0_8.html 489share/doc/sqlite3/releaselog/3_0_8.html
484share/doc/sqlite3/releaselog/3_1_0.html 490share/doc/sqlite3/releaselog/3_1_0.html
485share/doc/sqlite3/releaselog/3_1_1.html 491share/doc/sqlite3/releaselog/3_1_1.html
@@ -564,26 +570,27 @@ share/doc/sqlite3/releaselog/3_7_1.html @@ -564,26 +570,27 @@ share/doc/sqlite3/releaselog/3_7_1.html
564share/doc/sqlite3/releaselog/3_7_10.html 570share/doc/sqlite3/releaselog/3_7_10.html
565share/doc/sqlite3/releaselog/3_7_11.html 571share/doc/sqlite3/releaselog/3_7_11.html
566share/doc/sqlite3/releaselog/3_7_12.html 572share/doc/sqlite3/releaselog/3_7_12.html
567share/doc/sqlite3/releaselog/3_7_12_1.html 573share/doc/sqlite3/releaselog/3_7_12_1.html
568share/doc/sqlite3/releaselog/3_7_13.html 574share/doc/sqlite3/releaselog/3_7_13.html
569share/doc/sqlite3/releaselog/3_7_14.html 575share/doc/sqlite3/releaselog/3_7_14.html
570share/doc/sqlite3/releaselog/3_7_14_1.html 576share/doc/sqlite3/releaselog/3_7_14_1.html
571share/doc/sqlite3/releaselog/3_7_15.html 577share/doc/sqlite3/releaselog/3_7_15.html
572share/doc/sqlite3/releaselog/3_7_15_1.html 578share/doc/sqlite3/releaselog/3_7_15_1.html
573share/doc/sqlite3/releaselog/3_7_15_2.html 579share/doc/sqlite3/releaselog/3_7_15_2.html
574share/doc/sqlite3/releaselog/3_7_16.html 580share/doc/sqlite3/releaselog/3_7_16.html
575share/doc/sqlite3/releaselog/3_7_16_1.html 581share/doc/sqlite3/releaselog/3_7_16_1.html
576share/doc/sqlite3/releaselog/3_7_16_2.html 582share/doc/sqlite3/releaselog/3_7_16_2.html
 583share/doc/sqlite3/releaselog/3_7_17.html
577share/doc/sqlite3/releaselog/3_7_2.html 584share/doc/sqlite3/releaselog/3_7_2.html
578share/doc/sqlite3/releaselog/3_7_3.html 585share/doc/sqlite3/releaselog/3_7_3.html
579share/doc/sqlite3/releaselog/3_7_4.html 586share/doc/sqlite3/releaselog/3_7_4.html
580share/doc/sqlite3/releaselog/3_7_5.html 587share/doc/sqlite3/releaselog/3_7_5.html
581share/doc/sqlite3/releaselog/3_7_6.html 588share/doc/sqlite3/releaselog/3_7_6.html
582share/doc/sqlite3/releaselog/3_7_6_1.html 589share/doc/sqlite3/releaselog/3_7_6_1.html
583share/doc/sqlite3/releaselog/3_7_6_2.html 590share/doc/sqlite3/releaselog/3_7_6_2.html
584share/doc/sqlite3/releaselog/3_7_6_3.html 591share/doc/sqlite3/releaselog/3_7_6_3.html
585share/doc/sqlite3/releaselog/3_7_7.html 592share/doc/sqlite3/releaselog/3_7_7.html
586share/doc/sqlite3/releaselog/3_7_7_1.html 593share/doc/sqlite3/releaselog/3_7_7_1.html
587share/doc/sqlite3/releaselog/3_7_8.html 594share/doc/sqlite3/releaselog/3_7_8.html
588share/doc/sqlite3/releaselog/3_7_9.html 595share/doc/sqlite3/releaselog/3_7_9.html
589share/doc/sqlite3/requirements.html 596share/doc/sqlite3/requirements.html

cvs diff -r1.17 -r1.18 pkgsrc/databases/sqlite3-docs/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-docs/distinfo 2013/04/15 15:33:46 1.17
+++ pkgsrc/databases/sqlite3-docs/distinfo 2013/05/20 19:17:15 1.18
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.17 2013/04/15 15:33:46 adam Exp $ 1$NetBSD: distinfo,v 1.18 2013/05/20 19:17:15 adam Exp $
2 2
3SHA1 (sqlite-doc-3071602.zip) = 998df3d9ada4a4a8a048bcf20613d1d02be77731 3SHA1 (sqlite-doc-3071700.zip) = 6b533b0a9a21eb2c2d1c9f278b8defbeb5a432a7
4RMD160 (sqlite-doc-3071602.zip) = a1757659a67d4be0ca2d6da226e062ebe7c9cd2a 4RMD160 (sqlite-doc-3071700.zip) = 0c55a80b653380fdd006987160b64cf76057aeef
5Size (sqlite-doc-3071602.zip) = 4135295 bytes 5Size (sqlite-doc-3071700.zip) = 4193621 bytes

cvs diff -r1.46 -r1.47 pkgsrc/databases/sqlite3-tcl/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-tcl/Makefile 2013/05/09 07:39:32 1.46
+++ pkgsrc/databases/sqlite3-tcl/Makefile 2013/05/20 19:17:15 1.47
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.46 2013/05/09 07:39:32 adam Exp $ 1# $NetBSD: Makefile,v 1.47 2013/05/20 19:17:15 adam Exp $
2 2
3DISTNAME= sqlite-autoconf-3071602 3DISTNAME= sqlite-autoconf-3071700
4PKGNAME= sqlite3-tcl-3.7.16.2 4PKGNAME= sqlite3-tcl-3.7.17
5PKGREVISION= 1 
6CATEGORIES= databases 5CATEGORIES= databases
7MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
8 http://www.sqlite.org/2013/ 7 http://www.sqlite.org/2013/
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://www.sqlite.org/ 10HOMEPAGE= http://www.sqlite.org/
12COMMENT= SQL Database Engine in a C Library (TCL extension) 11COMMENT= SQL Database Engine in a C Library (TCL extension)
13LICENSE= public-domain 12LICENSE= public-domain
14 13
15WRKSRC= ${WRKDIR}/${DISTNAME}/tea 14WRKSRC= ${WRKDIR}/${DISTNAME}/tea
16 15
17USE_TOOLS+= gmake 16USE_TOOLS+= gmake
18GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes

cvs diff -r1.30 -r1.31 pkgsrc/databases/sqlite3-tcl/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-tcl/distinfo 2013/04/15 15:33:47 1.30
+++ pkgsrc/databases/sqlite3-tcl/distinfo 2013/05/20 19:17:15 1.31
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.30 2013/04/15 15:33:47 adam Exp $ 1$NetBSD: distinfo,v 1.31 2013/05/20 19:17:15 adam Exp $
2 2
3SHA1 (sqlite-autoconf-3071602.tar.gz) = 85bf857cf86f34831d55d7ba97606dba581b8d62 3SHA1 (sqlite-autoconf-3071700.tar.gz) = e31958e56b1d7bef9433b1ff2e875c8c290d37f4
4RMD160 (sqlite-autoconf-3071602.tar.gz) = 2e4a7661ec1cea4ad1f7a9f95b932d36e59f1a6a 4RMD160 (sqlite-autoconf-3071700.tar.gz) = bf8dc7ac0148733f2890ac4a49be26b01e3083ba
5Size (sqlite-autoconf-3071602.tar.gz) = 1854396 bytes 5Size (sqlite-autoconf-3071700.tar.gz) = 1876108 bytes
6SHA1 (patch-aa) = d4d0424eec39ede995c2c408dcf51876072d3fea 6SHA1 (patch-aa) = d4d0424eec39ede995c2c408dcf51876072d3fea
7SHA1 (patch-ab) = 64a4352b9a8ed0518784837e390541cd4e1bc9aa 7SHA1 (patch-ab) = 64a4352b9a8ed0518784837e390541cd4e1bc9aa