summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradam <adam>2017-02-13 17:44:01 +0000
committeradam <adam>2017-02-13 17:44:01 +0000
commit87821c2935d3c12945355ee6cd6ddb1eecaccec0 (patch)
tree1606866592c6d05a1d6aac5447dae18befc69bc0
parent59d742cb786862b134528fe93f633ae7200eb046 (diff)
downloadpkgsrc-87821c2935d3c12945355ee6cd6ddb1eecaccec0.tar.gz
SQLite Release 3.17.0 On 2017-02-13
* Approximately 25% better performance from the R-Tree extension. * Uses compiler built-ins (ex: __builtin_bswap32() or _byteswap_ulong()) for byteswapping when available. * Uses the sqlite3_blob key/value access object instead of SQL for pulling content out of R-Tree nodes * Other miscellaneous enhancements such as loop unrolling. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. Memory-sensitive applications can restore the old default at compile-time, start-time, or run-time. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. (All compiler built-ins can be omitted with the SQLITE_DISABLE_INTRINSIC compile-time option.) * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. Bug Fixes: * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. * Use the correct affinity for columns of automatic indexes. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows.
-rw-r--r--databases/sqlite3-docs/PLIST3
-rw-r--r--databases/sqlite3-docs/distinfo10
-rw-r--r--databases/sqlite3-tcl/distinfo10
-rw-r--r--databases/sqlite3/Makefile4
-rw-r--r--databases/sqlite3/Makefile.common4
-rw-r--r--databases/sqlite3/Makefile.version6
-rw-r--r--databases/sqlite3/distinfo10
-rw-r--r--devel/lemon/distinfo10
8 files changed, 29 insertions, 28 deletions
diff --git a/databases/sqlite3-docs/PLIST b/databases/sqlite3-docs/PLIST
index be6411b2174..87c5cf53b44 100644
--- a/databases/sqlite3-docs/PLIST
+++ b/databases/sqlite3-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.65 2017/01/07 10:23:00 adam Exp $
+@comment $NetBSD: PLIST,v 1.66 2017/02/13 17:44:01 adam Exp $
share/doc/sqlite3/34to35.html
share/doc/sqlite3/35to36.html
share/doc/sqlite3/about.html
@@ -576,6 +576,7 @@ share/doc/sqlite3/releaselog/3_15_2.html
share/doc/sqlite3/releaselog/3_16_0.html
share/doc/sqlite3/releaselog/3_16_1.html
share/doc/sqlite3/releaselog/3_16_2.html
+share/doc/sqlite3/releaselog/3_17_0.html
share/doc/sqlite3/releaselog/3_1_0.html
share/doc/sqlite3/releaselog/3_1_1.html
share/doc/sqlite3/releaselog/3_1_2.html
diff --git a/databases/sqlite3-docs/distinfo b/databases/sqlite3-docs/distinfo
index 5055d713f58..3e1c1dbbd77 100644
--- a/databases/sqlite3-docs/distinfo
+++ b/databases/sqlite3-docs/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.66 2017/01/07 10:23:00 adam Exp $
+$NetBSD: distinfo,v 1.67 2017/02/13 17:44:01 adam Exp $
-SHA1 (sqlite-doc-3160200.zip) = c3424040e2368dd78cf9aac801de8d8988549439
-RMD160 (sqlite-doc-3160200.zip) = 2d3c201abfdcd7ec4902ee5a299d99f9946e4cb5
-SHA512 (sqlite-doc-3160200.zip) = b79d21074d1ab154e3b324fb2943f24321ad5cdbc6e2030f1d21940ae46538462af049e0e0cd7c6cf96dec2c59708eaf70aa4cb3c84ba1a0e87238ffcf31fca2
-Size (sqlite-doc-3160200.zip) = 5521023 bytes
+SHA1 (sqlite-doc-3170000.zip) = bf3b479067d6eb36c8230b668a45994c9212d6cc
+RMD160 (sqlite-doc-3170000.zip) = eb92ad2b22af2bbaa3e76c8e04f475f763057902
+SHA512 (sqlite-doc-3170000.zip) = 6a7813be301416dc59401b7732733f44efad60b458ded0f4ed8d845aab0843a1123dd20d1e6f209dd32184a87bcd7e68e213e3676c43d1d05d2df5acc2c64b74
+Size (sqlite-doc-3170000.zip) = 5533032 bytes
diff --git a/databases/sqlite3-tcl/distinfo b/databases/sqlite3-tcl/distinfo
index be14e63e3c8..1f5b08c99a2 100644
--- a/databases/sqlite3-tcl/distinfo
+++ b/databases/sqlite3-tcl/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.79 2017/01/07 10:23:00 adam Exp $
+$NetBSD: distinfo,v 1.80 2017/02/13 17:44:01 adam Exp $
-SHA1 (sqlite-autoconf-3160200.tar.gz) = 64ca578ad44a94115b1db0406740e14288f74bb8
-RMD160 (sqlite-autoconf-3160200.tar.gz) = 86b351cfa4321a857fe6987694e188655226951f
-SHA512 (sqlite-autoconf-3160200.tar.gz) = 83bdd588504f265bbe93fb98a33a292aff5618c14f94d521c8557efbb5f777e82dfbb2d186cbfd4c628ee9522b1fcb73857e24ca2318fa34af3a3f9540e72b9a
-Size (sqlite-autoconf-3160200.tar.gz) = 2508179 bytes
+SHA1 (sqlite-autoconf-3170000.tar.gz) = 7bcff1c158ed9e2c0e159c1b4b6c36d4d65dff8c
+RMD160 (sqlite-autoconf-3170000.tar.gz) = c198f8c3f91894ba017b7e71a9d6e5c31a9ef12c
+SHA512 (sqlite-autoconf-3170000.tar.gz) = bebf2693ade1c99b6a178bbe663f64911bf7751932a2524506994cbbb19ab254e7febe3693a76084e55853c1ea85db9e4ece87192422583555fbe569915a2ca8
+Size (sqlite-autoconf-3170000.tar.gz) = 2515143 bytes
SHA1 (patch-aa) = 4a12a16498d04e1031dc0802fda731b73e98a32d
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index 6f54e6bf47e..62489b62ec8 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -1,6 +1,4 @@
-# $NetBSD: Makefile,v 1.113 2017/01/02 17:52:23 adam Exp $
-#
-# used by databases/sqlite3-tcl/Makefile
+# $NetBSD: Makefile,v 1.114 2017/02/13 17:44:01 adam Exp $
.include "Makefile.common"
diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common
index be99a4de646..096ec610f24 100644
--- a/databases/sqlite3/Makefile.common
+++ b/databases/sqlite3/Makefile.common
@@ -1,4 +1,6 @@
-# $NetBSD: Makefile.common,v 1.50 2016/10/22 00:18:39 kamil Exp $
+# $NetBSD: Makefile.common,v 1.51 2017/02/13 17:44:01 adam Exp $
+#
+# used by databases/sqlite3-tcl/Makefile
DISTNAME= sqlite-autoconf-${SQLITE3_DISTVERSION}
diff --git a/databases/sqlite3/Makefile.version b/databases/sqlite3/Makefile.version
index 1f7a44b90c7..25addc2d027 100644
--- a/databases/sqlite3/Makefile.version
+++ b/databases/sqlite3/Makefile.version
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile.version,v 1.29 2017/01/19 18:52:05 agc Exp $
+# $NetBSD: Makefile.version,v 1.30 2017/02/13 17:44:01 adam Exp $
#
# used by databases/sqlite3/Makefile
# used by databases/sqlite3-docs/Makefile
# used by databases/sqlite3-tcl/Makefile
# used by devel/lemon/Makefile
-SQLITE3_DISTVERSION= 3160200
-SQLITE3_VERSION= 3.16.2
+SQLITE3_DISTVERSION= 3170000
+SQLITE3_VERSION= 3.17.0
MASTER_SITES= http://www.hwaci.com/sw/sqlite/2017/
MASTER_SITES+= http://www.sqlite.org/2017/
diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo
index 5c831cbc917..5b712a03130 100644
--- a/databases/sqlite3/distinfo
+++ b/databases/sqlite3/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.131 2017/01/07 10:23:00 adam Exp $
+$NetBSD: distinfo,v 1.132 2017/02/13 17:44:01 adam Exp $
-SHA1 (sqlite-autoconf-3160200.tar.gz) = 64ca578ad44a94115b1db0406740e14288f74bb8
-RMD160 (sqlite-autoconf-3160200.tar.gz) = 86b351cfa4321a857fe6987694e188655226951f
-SHA512 (sqlite-autoconf-3160200.tar.gz) = 83bdd588504f265bbe93fb98a33a292aff5618c14f94d521c8557efbb5f777e82dfbb2d186cbfd4c628ee9522b1fcb73857e24ca2318fa34af3a3f9540e72b9a
-Size (sqlite-autoconf-3160200.tar.gz) = 2508179 bytes
+SHA1 (sqlite-autoconf-3170000.tar.gz) = 7bcff1c158ed9e2c0e159c1b4b6c36d4d65dff8c
+RMD160 (sqlite-autoconf-3170000.tar.gz) = c198f8c3f91894ba017b7e71a9d6e5c31a9ef12c
+SHA512 (sqlite-autoconf-3170000.tar.gz) = bebf2693ade1c99b6a178bbe663f64911bf7751932a2524506994cbbb19ab254e7febe3693a76084e55853c1ea85db9e4ece87192422583555fbe569915a2ca8
+Size (sqlite-autoconf-3170000.tar.gz) = 2515143 bytes
diff --git a/devel/lemon/distinfo b/devel/lemon/distinfo
index 7268d1d05e0..ca2114ccbc6 100644
--- a/devel/lemon/distinfo
+++ b/devel/lemon/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2017/01/07 10:23:00 adam Exp $
+$NetBSD: distinfo,v 1.8 2017/02/13 17:44:01 adam Exp $
-SHA1 (sqlite-src-3160200.zip) = fc216077093044e9161d9d27c68d0fba8ff19d3f
-RMD160 (sqlite-src-3160200.zip) = 0b704dbe2e26c3b6153ef2a8108d1b668fd419c0
-SHA512 (sqlite-src-3160200.zip) = db49551c09830cf4d8997f0a623deeed9f85db5f27e6ca9d8aa5812a23c1466bbcdf8bb56cf009511f72cafec8f09a305127123f54d90437b28770dac34a0897
-Size (sqlite-src-3160200.zip) = 10081950 bytes
+SHA1 (sqlite-src-3170000.zip) = 67368dfa74dac296cebfc4a8fe9bb92ef47e8b47
+RMD160 (sqlite-src-3170000.zip) = 1c0930021811f401c33b42ad93bbf3dd6174a6c4
+SHA512 (sqlite-src-3170000.zip) = e60381de33fbf566507454e4f1dfb7d3ada554e5c919f05f0dd2f96a6f266adaa62681437f21fdea1c24de57fb6141b798f97854918faa189b507f12f11e0d36
+Size (sqlite-src-3170000.zip) = 10120844 bytes