Sun Oct 19 20:37:48 2014 UTC ()
Changes 3.8.7:

Performance Enhancements:
* Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. The cumulative performance increase since version 3.8.0 is 61%. (Measured using cachegrind on the speedtest1.c workload on Ubuntu 13.10 x64 with gcc 4.8.1 and -Os. Your performance may vary.)
* The sorter can use auxiliary helper threads to increase real-time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option.
* Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index.
* Improved optimization of CAST operators.
* Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs.

New Features:
* Added new interfaces with 64-bit length parameters: sqlite3_malloc64(), sqlite3_realloc64(), sqlite3_bind_blob64(), sqlite3_result_blob64(), sqlite3_bind_text64(), and sqlite3_result_text64().
* Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants.
* Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads.
* The spellfix1 extension allows the application to optionally specify the rowid for each INSERT.
* Added the User Authentication extension.

Bug Fixes:
* Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view.
* Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause.
* Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared.
* Fix a faulty assert() statement.


(adam)
diff -r1.83 -r1.84 pkgsrc/databases/sqlite3/Makefile
diff -r1.92 -r1.93 pkgsrc/databases/sqlite3/distinfo
diff -r1.32 -r1.33 pkgsrc/databases/sqlite3-docs/Makefile
diff -r1.30 -r1.31 pkgsrc/databases/sqlite3-docs/PLIST
diff -r1.30 -r1.31 pkgsrc/databases/sqlite3-docs/distinfo
diff -r1.63 -r1.64 pkgsrc/databases/sqlite3-tcl/Makefile
diff -r1.43 -r1.44 pkgsrc/databases/sqlite3-tcl/distinfo

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

--- pkgsrc/databases/sqlite3/Makefile 2014/10/07 16:47:10 1.83
+++ pkgsrc/databases/sqlite3/Makefile 2014/10/19 20:37:47 1.84
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.83 2014/10/07 16:47:10 adam Exp $ 1# $NetBSD: Makefile,v 1.84 2014/10/19 20:37:47 adam Exp $
2 2
3DISTNAME= sqlite-autoconf-3080600 3DISTNAME= sqlite-autoconf-3080700
4PKGNAME= sqlite3-3.8.6 4PKGNAME= sqlite3-3.8.7
5PKGREVISION= 1 
6CATEGORIES= databases 5CATEGORIES= databases
7MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \
8 http://www.sqlite.org/2014/ 7 http://www.sqlite.org/2014/
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.92 -r1.93 pkgsrc/databases/sqlite3/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3/distinfo 2014/08/17 08:16:06 1.92
+++ pkgsrc/databases/sqlite3/distinfo 2014/10/19 20:37:47 1.93
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.92 2014/08/17 08:16:06 adam Exp $ 1$NetBSD: distinfo,v 1.93 2014/10/19 20:37:47 adam Exp $
2 2
3SHA1 (sqlite-autoconf-3080600.tar.gz) = c4b2911bc4a6e1dc2b411aa21d8c4f524113eb64 3SHA1 (sqlite-autoconf-3080700.tar.gz) = 8b773b006db46f3ffcbabe065e927823d13bf5c0
4RMD160 (sqlite-autoconf-3080600.tar.gz) = 31a5c239174e4cf74fd0e9cf4324fa0e6282aaab 4RMD160 (sqlite-autoconf-3080700.tar.gz) = 6a08748fffa7e5e504e250a9dba69c15fefa98da
5Size (sqlite-autoconf-3080600.tar.gz) = 1968379 bytes 5Size (sqlite-autoconf-3080700.tar.gz) = 1998217 bytes

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

--- pkgsrc/databases/sqlite3-docs/Makefile 2014/08/17 08:16:06 1.32
+++ pkgsrc/databases/sqlite3-docs/Makefile 2014/10/19 20:37:47 1.33
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1# $NetBSD: Makefile,v 1.32 2014/08/17 08:16:06 adam Exp $ 1# $NetBSD: Makefile,v 1.33 2014/10/19 20:37:47 adam Exp $
2 2
3DISTNAME= sqlite-doc-3080600 3DISTNAME= sqlite-doc-3080700
4PKGNAME= sqlite3-docs-3.8.6 4PKGNAME= sqlite3-docs-3.8.7
5CATEGORIES= databases 5CATEGORIES= databases
6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \
7 http://www.sqlite.org/2014/ 7 http://www.sqlite.org/2014/
8EXTRACT_SUFX= .zip 8EXTRACT_SUFX= .zip
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://sqlite.org/ 11HOMEPAGE= http://sqlite.org/
12COMMENT= SQL Database Engine in a C Library (docs package) 12COMMENT= SQL Database Engine in a C Library (docs package)
13# "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
14# build process might fall under other licenses. We do not worry 14# build process might fall under other licenses. We do not worry
15# about the licensing of the documentation and build code so much 15# about the licensing of the documentation and build code so much
16# 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
17# library." 17# library."

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

--- pkgsrc/databases/sqlite3-docs/PLIST 2014/08/17 08:16:06 1.30
+++ pkgsrc/databases/sqlite3-docs/PLIST 2014/10/19 20:37:47 1.31
@@ -1,17 +1,18 @@ @@ -1,17 +1,18 @@
1@comment $NetBSD: PLIST,v 1.30 2014/08/17 08:16:06 adam Exp $ 1@comment $NetBSD: PLIST,v 1.31 2014/10/19 20:37:47 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/affcase1.html
5share/doc/sqlite3/amalgamation.html 6share/doc/sqlite3/amalgamation.html
6share/doc/sqlite3/appfileformat.html 7share/doc/sqlite3/appfileformat.html
7share/doc/sqlite3/arch.html 8share/doc/sqlite3/arch.html
8share/doc/sqlite3/asyncvfs.html 9share/doc/sqlite3/asyncvfs.html
9share/doc/sqlite3/atomiccommit.html 10share/doc/sqlite3/atomiccommit.html
10share/doc/sqlite3/autoinc.html 11share/doc/sqlite3/autoinc.html
11share/doc/sqlite3/backup.html 12share/doc/sqlite3/backup.html
12share/doc/sqlite3/books.html 13share/doc/sqlite3/books.html
13share/doc/sqlite3/btreemodule.html 14share/doc/sqlite3/btreemodule.html
14share/doc/sqlite3/c3ref/aggregate_context.html 15share/doc/sqlite3/c3ref/aggregate_context.html
15share/doc/sqlite3/c3ref/aggregate_count.html 16share/doc/sqlite3/c3ref/aggregate_count.html
16share/doc/sqlite3/c3ref/auto_extension.html 17share/doc/sqlite3/c3ref/auto_extension.html
17share/doc/sqlite3/c3ref/backup.html 18share/doc/sqlite3/c3ref/backup.html
@@ -235,26 +236,27 @@ share/doc/sqlite3/images/ac/multi-2.gif @@ -235,26 +236,27 @@ share/doc/sqlite3/images/ac/multi-2.gif
235share/doc/sqlite3/images/ac/multi-3.gif 236share/doc/sqlite3/images/ac/multi-3.gif
236share/doc/sqlite3/images/ac/multi-4.gif 237share/doc/sqlite3/images/ac/multi-4.gif
237share/doc/sqlite3/images/ac/multi-5.gif 238share/doc/sqlite3/images/ac/multi-5.gif
238share/doc/sqlite3/images/ac/rollback-0.gif 239share/doc/sqlite3/images/ac/rollback-0.gif
239share/doc/sqlite3/images/ac/rollback-1.gif 240share/doc/sqlite3/images/ac/rollback-1.gif
240share/doc/sqlite3/images/ac/rollback-2.gif 241share/doc/sqlite3/images/ac/rollback-2.gif
241share/doc/sqlite3/images/ac/rollback-3.gif 242share/doc/sqlite3/images/ac/rollback-3.gif
242share/doc/sqlite3/images/ac/rollback-4.gif 243share/doc/sqlite3/images/ac/rollback-4.gif
243share/doc/sqlite3/images/ac/rollback-5.gif 244share/doc/sqlite3/images/ac/rollback-5.gif
244share/doc/sqlite3/images/apple-touch-icon.png 245share/doc/sqlite3/images/apple-touch-icon.png
245share/doc/sqlite3/images/arch.gif 246share/doc/sqlite3/images/arch.gif
246share/doc/sqlite3/images/arch.png 247share/doc/sqlite3/images/arch.png
247share/doc/sqlite3/images/arch2.gif 248share/doc/sqlite3/images/arch2.gif
 249share/doc/sqlite3/images/books/aditya.jpg
248share/doc/sqlite3/images/books/das.jpg 250share/doc/sqlite3/images/books/das.jpg
249share/doc/sqlite3/images/books/droessler.jpg 251share/doc/sqlite3/images/books/droessler.jpg
250share/doc/sqlite3/images/books/haldar.gif 252share/doc/sqlite3/images/books/haldar.gif
251share/doc/sqlite3/images/books/kreibich.gif 253share/doc/sqlite3/images/books/kreibich.gif
252share/doc/sqlite3/images/books/newman.jpg 254share/doc/sqlite3/images/books/newman.jpg
253share/doc/sqlite3/images/books/nishizawa2.jpg 255share/doc/sqlite3/images/books/nishizawa2.jpg
254share/doc/sqlite3/images/books/owens.jpg 256share/doc/sqlite3/images/books/owens.jpg
255share/doc/sqlite3/images/books/symbiansql.jpg 257share/doc/sqlite3/images/books/symbiansql.jpg
256share/doc/sqlite3/images/books/vanderLans.jpg 258share/doc/sqlite3/images/books/vanderLans.jpg
257share/doc/sqlite3/images/btreemodule_balance_deeper.svg 259share/doc/sqlite3/images/btreemodule_balance_deeper.svg
258share/doc/sqlite3/images/btreemodule_balance_quick.svg 260share/doc/sqlite3/images/btreemodule_balance_quick.svg
259share/doc/sqlite3/images/btreemodule_balance_shallower.svg 261share/doc/sqlite3/images/btreemodule_balance_shallower.svg
260share/doc/sqlite3/images/btreemodule_delete1.svg 262share/doc/sqlite3/images/btreemodule_delete1.svg
@@ -470,26 +472,27 @@ share/doc/sqlite3/lang_savepoint.html @@ -470,26 +472,27 @@ share/doc/sqlite3/lang_savepoint.html
470share/doc/sqlite3/lang_select.html 472share/doc/sqlite3/lang_select.html
471share/doc/sqlite3/lang_transaction.html 473share/doc/sqlite3/lang_transaction.html
472share/doc/sqlite3/lang_update.html 474share/doc/sqlite3/lang_update.html
473share/doc/sqlite3/lang_vacuum.html 475share/doc/sqlite3/lang_vacuum.html
474share/doc/sqlite3/lang_with.html 476share/doc/sqlite3/lang_with.html
475share/doc/sqlite3/limits.html 477share/doc/sqlite3/limits.html
476share/doc/sqlite3/loadext.html 478share/doc/sqlite3/loadext.html
477share/doc/sqlite3/lockingv3.html 479share/doc/sqlite3/lockingv3.html
478share/doc/sqlite3/malloc.html 480share/doc/sqlite3/malloc.html
479share/doc/sqlite3/mingw.html 481share/doc/sqlite3/mingw.html
480share/doc/sqlite3/mmap.html 482share/doc/sqlite3/mmap.html
481share/doc/sqlite3/mostdeployed.html 483share/doc/sqlite3/mostdeployed.html
482share/doc/sqlite3/news.html 484share/doc/sqlite3/news.html
 485share/doc/sqlite3/not-found.html
483share/doc/sqlite3/nulls.html 486share/doc/sqlite3/nulls.html
484share/doc/sqlite3/oldnews.html 487share/doc/sqlite3/oldnews.html
485share/doc/sqlite3/omitted.html 488share/doc/sqlite3/omitted.html
486share/doc/sqlite3/onefile.html 489share/doc/sqlite3/onefile.html
487share/doc/sqlite3/opcode.html 490share/doc/sqlite3/opcode.html
488share/doc/sqlite3/optoverview.html 491share/doc/sqlite3/optoverview.html
489share/doc/sqlite3/partialindex.html 492share/doc/sqlite3/partialindex.html
490share/doc/sqlite3/pragma.html 493share/doc/sqlite3/pragma.html
491share/doc/sqlite3/pressrelease-20071212.html 494share/doc/sqlite3/pressrelease-20071212.html
492share/doc/sqlite3/privatebranch.html 495share/doc/sqlite3/privatebranch.html
493share/doc/sqlite3/psow.html 496share/doc/sqlite3/psow.html
494share/doc/sqlite3/queryplanner-ng.html 497share/doc/sqlite3/queryplanner-ng.html
495share/doc/sqlite3/queryplanner.html 498share/doc/sqlite3/queryplanner.html
@@ -612,45 +615,106 @@ share/doc/sqlite3/releaselog/3_7_9.html @@ -612,45 +615,106 @@ share/doc/sqlite3/releaselog/3_7_9.html
612share/doc/sqlite3/releaselog/3_8_0.html 615share/doc/sqlite3/releaselog/3_8_0.html
613share/doc/sqlite3/releaselog/3_8_0_1.html 616share/doc/sqlite3/releaselog/3_8_0_1.html
614share/doc/sqlite3/releaselog/3_8_0_2.html 617share/doc/sqlite3/releaselog/3_8_0_2.html
615share/doc/sqlite3/releaselog/3_8_1.html 618share/doc/sqlite3/releaselog/3_8_1.html
616share/doc/sqlite3/releaselog/3_8_2.html 619share/doc/sqlite3/releaselog/3_8_2.html
617share/doc/sqlite3/releaselog/3_8_3.html 620share/doc/sqlite3/releaselog/3_8_3.html
618share/doc/sqlite3/releaselog/3_8_3_1.html 621share/doc/sqlite3/releaselog/3_8_3_1.html
619share/doc/sqlite3/releaselog/3_8_4.html 622share/doc/sqlite3/releaselog/3_8_4.html
620share/doc/sqlite3/releaselog/3_8_4_1.html 623share/doc/sqlite3/releaselog/3_8_4_1.html
621share/doc/sqlite3/releaselog/3_8_4_2.html 624share/doc/sqlite3/releaselog/3_8_4_2.html
622share/doc/sqlite3/releaselog/3_8_4_3.html 625share/doc/sqlite3/releaselog/3_8_4_3.html
623share/doc/sqlite3/releaselog/3_8_5.html 626share/doc/sqlite3/releaselog/3_8_5.html
624share/doc/sqlite3/releaselog/3_8_6.html 627share/doc/sqlite3/releaselog/3_8_6.html
 628share/doc/sqlite3/releaselog/3_8_7.html
625share/doc/sqlite3/releaselog/current.html 629share/doc/sqlite3/releaselog/current.html
626share/doc/sqlite3/requirements.html 630share/doc/sqlite3/requirements.html
627share/doc/sqlite3/rescode.html 631share/doc/sqlite3/rescode.html
628share/doc/sqlite3/robots.txt 632share/doc/sqlite3/robots.txt
629share/doc/sqlite3/rtree.html 633share/doc/sqlite3/rtree.html
630share/doc/sqlite3/selfcontained.html 634share/doc/sqlite3/selfcontained.html
631share/doc/sqlite3/serverless.html 635share/doc/sqlite3/serverless.html
632share/doc/sqlite3/session.html 636share/doc/sqlite3/session.html
633share/doc/sqlite3/session/constlist.html 637share/doc/sqlite3/session/constlist.html
634share/doc/sqlite3/session/funclist.html 638share/doc/sqlite3/session/funclist.html
635share/doc/sqlite3/session/intro.html 639share/doc/sqlite3/session/intro.html
636share/doc/sqlite3/session/objlist.html 640share/doc/sqlite3/session/objlist.html
637share/doc/sqlite3/sharedcache.html 641share/doc/sqlite3/sharedcache.html
638share/doc/sqlite3/shortnames.html 642share/doc/sqlite3/shortnames.html
639share/doc/sqlite3/sitemap.html 643share/doc/sqlite3/sitemap.html
640share/doc/sqlite3/speed.html 644share/doc/sqlite3/speed.html
641share/doc/sqlite3/spellfix1.html 645share/doc/sqlite3/spellfix1.html
642share/doc/sqlite3/sqlite.html 646share/doc/sqlite3/sqlite.html
643share/doc/sqlite3/support.html 647share/doc/sqlite3/support.html
 648share/doc/sqlite3/syntax.html
 649share/doc/sqlite3/syntax/alter-table-stmt.html
 650share/doc/sqlite3/syntax/analyze-stmt.html
 651share/doc/sqlite3/syntax/attach-stmt.html
 652share/doc/sqlite3/syntax/begin-stmt.html
 653share/doc/sqlite3/syntax/column-constraint.html
 654share/doc/sqlite3/syntax/column-def.html
 655share/doc/sqlite3/syntax/comment-syntax.html
 656share/doc/sqlite3/syntax/commit-stmt.html
 657share/doc/sqlite3/syntax/common-table-expression.html
 658share/doc/sqlite3/syntax/compound-operator.html
 659share/doc/sqlite3/syntax/compound-select-stmt.html
 660share/doc/sqlite3/syntax/conflict-clause.html
 661share/doc/sqlite3/syntax/create-index-stmt.html
 662share/doc/sqlite3/syntax/create-table-stmt.html
 663share/doc/sqlite3/syntax/create-trigger-stmt.html
 664share/doc/sqlite3/syntax/create-view-stmt.html
 665share/doc/sqlite3/syntax/create-virtual-table-stmt.html
 666share/doc/sqlite3/syntax/cte-table-name.html
 667share/doc/sqlite3/syntax/delete-stmt-limited.html
 668share/doc/sqlite3/syntax/delete-stmt.html
 669share/doc/sqlite3/syntax/detach-stmt.html
 670share/doc/sqlite3/syntax/drop-index-stmt.html
 671share/doc/sqlite3/syntax/drop-table-stmt.html
 672share/doc/sqlite3/syntax/drop-trigger-stmt.html
 673share/doc/sqlite3/syntax/drop-view-stmt.html
 674share/doc/sqlite3/syntax/expr.html
 675share/doc/sqlite3/syntax/factored-select-stmt.html
 676share/doc/sqlite3/syntax/foreign-key-clause.html
 677share/doc/sqlite3/syntax/indexed-column.html
 678share/doc/sqlite3/syntax/insert-stmt.html
 679share/doc/sqlite3/syntax/join-clause.html
 680share/doc/sqlite3/syntax/join-constraint.html
 681share/doc/sqlite3/syntax/join-operator.html
 682share/doc/sqlite3/syntax/literal-value.html
 683share/doc/sqlite3/syntax/numeric-literal.html
 684share/doc/sqlite3/syntax/ordering-term.html
 685share/doc/sqlite3/syntax/pragma-stmt.html
 686share/doc/sqlite3/syntax/pragma-value.html
 687share/doc/sqlite3/syntax/qualified-table-name.html
 688share/doc/sqlite3/syntax/raise-function.html
 689share/doc/sqlite3/syntax/recursive-cte.html
 690share/doc/sqlite3/syntax/reindex-stmt.html
 691share/doc/sqlite3/syntax/release-stmt.html
 692share/doc/sqlite3/syntax/result-column.html
 693share/doc/sqlite3/syntax/rollback-stmt.html
 694share/doc/sqlite3/syntax/savepoint-stmt.html
 695share/doc/sqlite3/syntax/select-core.html
 696share/doc/sqlite3/syntax/select-stmt.html
 697share/doc/sqlite3/syntax/signed-number.html
 698share/doc/sqlite3/syntax/simple-select-stmt.html
 699share/doc/sqlite3/syntax/sql-stmt-list.html
 700share/doc/sqlite3/syntax/sql-stmt.html
 701share/doc/sqlite3/syntax/table-constraint.html
 702share/doc/sqlite3/syntax/table-or-subquery.html
 703share/doc/sqlite3/syntax/type-name.html
 704share/doc/sqlite3/syntax/update-stmt-limited.html
 705share/doc/sqlite3/syntax/update-stmt.html
 706share/doc/sqlite3/syntax/vacuum-stmt.html
 707share/doc/sqlite3/syntax/with-clause.html
644share/doc/sqlite3/syntaxdiagrams.html 708share/doc/sqlite3/syntaxdiagrams.html
645share/doc/sqlite3/tclsqlite.html 709share/doc/sqlite3/tclsqlite.html
646share/doc/sqlite3/tempfiles.html 710share/doc/sqlite3/tempfiles.html
647share/doc/sqlite3/testing.html 711share/doc/sqlite3/testing.html
648share/doc/sqlite3/th3.html 712share/doc/sqlite3/th3.html
649share/doc/sqlite3/threadsafe.html 713share/doc/sqlite3/threadsafe.html
650share/doc/sqlite3/transactional.html 714share/doc/sqlite3/transactional.html
651share/doc/sqlite3/unlock_notify.html 715share/doc/sqlite3/unlock_notify.html
652share/doc/sqlite3/uri.html 716share/doc/sqlite3/uri.html
653share/doc/sqlite3/vdbe.html 717share/doc/sqlite3/vdbe.html
654share/doc/sqlite3/version3.html 718share/doc/sqlite3/version3.html
655share/doc/sqlite3/vfs.html 719share/doc/sqlite3/vfs.html
656share/doc/sqlite3/vtab.html 720share/doc/sqlite3/vtab.html

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

--- pkgsrc/databases/sqlite3-docs/distinfo 2014/08/17 08:16:06 1.30
+++ pkgsrc/databases/sqlite3-docs/distinfo 2014/10/19 20:37:47 1.31
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.30 2014/08/17 08:16:06 adam Exp $ 1$NetBSD: distinfo,v 1.31 2014/10/19 20:37:47 adam Exp $
2 2
3SHA1 (sqlite-doc-3080600.zip) = 8c3d3a9f97b10fb43d6fce61079ed1ab93472913 3SHA1 (sqlite-doc-3080700.zip) = b091631340c051455e349e651d9c24579e00f669
4RMD160 (sqlite-doc-3080600.zip) = daf74c6bdb1775eb349220bdab45d236c77e31d0 4RMD160 (sqlite-doc-3080700.zip) = aa480c654d319cbb25ec3fe97b4edbdf0a0e196c
5Size (sqlite-doc-3080600.zip) = 4736026 bytes 5Size (sqlite-doc-3080700.zip) = 4901008 bytes

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

--- pkgsrc/databases/sqlite3-tcl/Makefile 2014/10/07 16:47:21 1.63
+++ pkgsrc/databases/sqlite3-tcl/Makefile 2014/10/19 20:37:47 1.64
@@ -1,18 +1,17 @@ @@ -1,18 +1,17 @@
1# $NetBSD: Makefile,v 1.63 2014/10/07 16:47:21 adam Exp $ 1# $NetBSD: Makefile,v 1.64 2014/10/19 20:37:47 adam Exp $
2 2
3DISTNAME= sqlite-autoconf-3080600 3DISTNAME= sqlite-autoconf-3080700
4PKGNAME= sqlite3-tcl-3.8.6 4PKGNAME= sqlite3-tcl-3.8.7
5PKGREVISION= 1 
6CATEGORIES= databases 5CATEGORIES= databases
7MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \ 6MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \
8 http://www.sqlite.org/2014/ 7 http://www.sqlite.org/2014/
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.43 -r1.44 pkgsrc/databases/sqlite3-tcl/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/sqlite3-tcl/distinfo 2014/08/17 08:16:06 1.43
+++ pkgsrc/databases/sqlite3-tcl/distinfo 2014/10/19 20:37:47 1.44
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.43 2014/08/17 08:16:06 adam Exp $ 1$NetBSD: distinfo,v 1.44 2014/10/19 20:37:47 adam Exp $
2 2
3SHA1 (sqlite-autoconf-3080600.tar.gz) = c4b2911bc4a6e1dc2b411aa21d8c4f524113eb64 3SHA1 (sqlite-autoconf-3080700.tar.gz) = 8b773b006db46f3ffcbabe065e927823d13bf5c0
4RMD160 (sqlite-autoconf-3080600.tar.gz) = 31a5c239174e4cf74fd0e9cf4324fa0e6282aaab 4RMD160 (sqlite-autoconf-3080700.tar.gz) = 6a08748fffa7e5e504e250a9dba69c15fefa98da
5Size (sqlite-autoconf-3080600.tar.gz) = 1968379 bytes 5Size (sqlite-autoconf-3080700.tar.gz) = 1998217 bytes
6SHA1 (patch-aa) = 4a12a16498d04e1031dc0802fda731b73e98a32d 6SHA1 (patch-aa) = 4a12a16498d04e1031dc0802fda731b73e98a32d