pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: adam
Date: Sun Mar 30 06:18:07 UTC 2025
Modified Files:
pkgsrc/databases/sqlite3: Makefile Makefile.common PLIST distinfo
options.mk
pkgsrc/databases/sqlite3-docs: PLIST distinfo
pkgsrc/databases/sqlite3-tcl: distinfo
pkgsrc/devel/lemon: distinfo
Removed Files:
pkgsrc/databases/sqlite3/patches: patch-configure
Log Message:
sqlite3: updated to 3.49.1
Prior changes from version 3.49.0 (2025-02-06):
Enhancements to the query planner:
Improve the query-time index optimization so that it works on WITHOUT ROWID tables.
Better query plans for large star-query joins. This fixes three different performance regressions that were reported on the SQLite Forum.
When two or more queries have the same estimated cost, use the one with the fewer bytes per row.
Enhance the iif() SQL function so that it can accept any number of arguments greater than or equal to two.
Enhance the session extension so that it works on databases that make use of generated columns.
Omit the SQLITE_USE_STDIO_FOR_CONSOLE compile-time option which was not implemented correctly and never worked right. In its place add the SQLITE_USE_W32_FOR_CONSOLE_IO compile-time option. This
option applies to command-line tools like the CLI only, not to the SQLite core. It causes Win32 APIs to be used for console I/O instead of stdio. This option affects Windows builds only.
Three new options to sqlite3_db_config(). All default to "on".
SQLITE_DBCONFIG_ENABLE_ATTACH_CREATE
SQLITE_DBCONFIG_ENABLE_ATTACH_WRITE
SQLITE_DBCONFIG_ENABLE_COMMENTS
Replace Autotools with Autosetup for the configure script used in the precompiled amalgamation tarball. The configure script for the canonical source code was changed to Autosetup in the previous
(3.48.0) release. Only the main SQLite configure script in the amalgamation tarball is changed. The (deprecated) configuration script use by TEA subdirectory of the amalgamation tarball still relies
on Autotools.
Various minor patches and fixes for problems seen in the 3.48.0 release.
Changes in this specific patch release, version 3.49.1 (2025-02-18):
Improve portability of makefiles and configure scripts.
Fix a bug in the concat_ws() function, introduced in version 3.44.0, that could lead to a memory error if the separator string is very large (hundreds of megabytes).
Enhanced the SQLITE_DBCONFIG_LOOKASIDE interface to make it more robust against misuse.
To generate a diff of this commit:
cvs rdiff -u -r1.163 -r1.164 pkgsrc/databases/sqlite3/Makefile
cvs rdiff -u -r1.116 -r1.117 pkgsrc/databases/sqlite3/Makefile.common
cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/sqlite3/PLIST
cvs rdiff -u -r1.210 -r1.211 pkgsrc/databases/sqlite3/distinfo
cvs rdiff -u -r1.9 -r1.10 pkgsrc/databases/sqlite3/options.mk
cvs rdiff -u -r1.139 -r1.140 pkgsrc/databases/sqlite3-docs/PLIST
cvs rdiff -u -r1.142 -r1.143 pkgsrc/databases/sqlite3-docs/distinfo
cvs rdiff -u -r1.156 -r1.157 pkgsrc/databases/sqlite3-tcl/distinfo
cvs rdiff -u -r1.5 -r0 pkgsrc/databases/sqlite3/patches/patch-configure
cvs rdiff -u -r1.83 -r1.84 pkgsrc/devel/lemon/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/sqlite3/Makefile
diff -u pkgsrc/databases/sqlite3/Makefile:1.163 pkgsrc/databases/sqlite3/Makefile:1.164
--- pkgsrc/databases/sqlite3/Makefile:1.163 Wed Feb 12 21:41:18 2025
+++ pkgsrc/databases/sqlite3/Makefile Sun Mar 30 06:18:06 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.163 2025/02/12 21:41:18 rillig Exp $
+# $NetBSD: Makefile,v 1.164 2025/03/30 06:18:06 adam Exp $
.include "Makefile.common"
@@ -11,15 +11,20 @@ COMMENT= SQL Database Engine in a C Libr
.include "options.mk"
+# For autosetup use jimsh instead of tclsh, as tcl requires sqlite3.
+TOOL_DEPENDS+= jimtcl>0:../../lang/jimtcl
+CONFIGURE_ENV+= autosetup_tclsh=${PREFIX}/bin/jimsh
+
+# Disable ccache; see autosetup/cc.tcl
+CONFIGURE_ENV+= CCACHE=none
+
USE_LIBTOOL= yes
USE_TOOLS+= gmake
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS+= --disable-static-shell
-
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
+CONFIGURE_ARGS+= --prefix=${PREFIX}
PKGCONFIG_OVERRIDE+= sqlite3.pc.in
-INSTALLATION_DIRS+= ${PKGMANDIR}/man1
-
.include "../../mk/bsd.prefs.mk"
# sqlite3 compile options are documented at:
@@ -54,8 +59,8 @@ INSTALLATION_DIRS+= ${PKGMANDIR}/man1
# Darwin < 9 (Mac OS X < 10.5 "Leopard") doesn't have gethostuuid(2)
# and lacks the zone memory allocator
.if !empty(MACHINE_PLATFORM:MDarwin-[0-8].*-*)
-CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0
-CFLAGS+= -DSQLITE_WITHOUT_ZONEMALLOC
+CFLAGS+= -DSQLITE_ENABLE_LOCKING_STYLE=0
+CFLAGS+= -DSQLITE_WITHOUT_ZONEMALLOC
.endif
### Performance optimizations
@@ -82,7 +87,7 @@ CONFIGURE_ARGS+= --enable-threadsafe
#
# https://www.sqlite.org/c3ref/column_database_name.html
# https://www.sqlite.org/compile.html#enable_column_metadata
-CFLAGS+= -DSQLITE_ENABLE_COLUMN_METADATA
+CFLAGS+= -DSQLITE_ENABLE_COLUMN_METADATA
# The DBSTAT virtual table provides information about disk space
# utilization, is required by lang/tcl's bin/sqlite3_analyzer, and is
@@ -90,7 +95,7 @@ CFLAGS+= -DSQLITE_ENABLE_COLUMN_METADAT
#
# https://www.sqlite.org/dbstat.html
# https://www.sqlite.org/compile.html#enable_dbstat_vtab
-CFLAGS+= -DSQLITE_ENABLE_DBSTAT_VTAB
+CFLAGS+= -DSQLITE_ENABLE_DBSTAT_VTAB
# Full-text search engines. There are two full-text search engines,
# fts3/4 and fts5. The options SQLITE_ENABLE_FTS3 and
@@ -110,15 +115,15 @@ CFLAGS+= -DSQLITE_ENABLE_DBSTAT_VTAB
# https://www.sqlite.org/compile.html#enable_fts3
# https://www.sqlite.org/compile.html#enable_fts4
# https://www.sqlite.org/compile.html#enable_fts5
-CONFIGURE_ARGS+= --enable-fts3 # -DSQLITE_ENABLE_FTS3
-CONFIGURE_ARGS+= --enable-fts4 # -DSQLITE_ENABLE_FTS4
-CONFIGURE_ARGS+= --enable-fts5 # -DSQLITE_ENABLE_FTS5
+CONFIGURE_ARGS+= --fts3 # -DSQLITE_ENABLE_FTS3
+CONFIGURE_ARGS+= --fts4 # -DSQLITE_ENABLE_FTS4
+CONFIGURE_ARGS+= --fts5 # -DSQLITE_ENABLE_FTS5
# Nested queries and AND/OR operators for fts3/4.
#
# https://www.sqlite.org/fts3.html#_set_operations_using_the_enhanced_query_syntax
# https://www.sqlite.org/compile.html#enable_fts3_parenthesis
-CFLAGS+= -DSQLITE_ENABLE_FTS3_PARENTHESIS
+CFLAGS+= -DSQLITE_ENABLE_FTS3_PARENTHESIS
# SQLITE_ENABLE_GEOPOLY, SQLITE_ENABLE_RTREE -- R*Tree and Geopoly
# interface for geospatial queries. Enabled by default since 2018. We
@@ -129,7 +134,8 @@ CFLAGS+= -DSQLITE_ENABLE_FTS3_PARENTHES
# https://www.sqlite.org/rtree.html
# https://www.sqlite.org/compile.html#enable_geopoly
# https://www.sqlite.org/compile.html#enable_rtree
-CONFIGURE_ARGS+= --enable-rtree
+CONFIGURE_ARGS+= --geopoly
+CONFIGURE_ARGS+= --rtree
# SQLITE_ENABLE_ICU -- unwieldy dependency, relegated to options.mk.
# https://www.sqlite.org/compile.html#enable_icu
@@ -144,7 +150,7 @@ CONFIGURE_ARGS+= --enable-rtree
#
# https://www.sqlite.org/vtab.html#hiddencol
# https://www.sqlite.org/compile.html#enable_hidden_columns
-CFLAGS+= -DSQLITE_ENABLE_HIDDEN_COLUMNS
+CFLAGS+= -DSQLITE_ENABLE_HIDDEN_COLUMNS
# SQLITE_ENABLE_JSON1 -- JSON1 support, built-in functions for
# manipulating JSON. Enabled by default since 2022, configure option
@@ -292,7 +298,7 @@ CONFIGURE_ARGS+= --enable-math
# https://www.sqlite.org/sessionintro.html
# https://www.sqlite.org/compile.html#enable_preupdate_hook
# https://www.sqlite.org/compile.html#enable_session
-CONFIGURE_ARGS+= --enable-session
+CONFIGURE_ARGS+= --session
# SQLITE_ENABLE_QPSG -- query planner stability guarantee. Off by
# default. This option turns it on by default. Applications can
@@ -340,7 +346,7 @@ CONFIGURE_ARGS+= --enable-session
#
# https://www.sqlite.org/stmt.html
# https://www.sqlite.org/compile.html#enable_stmtvtab
-CFLAGS+= -DSQLITE_ENABLE_STMTVTAB
+CFLAGS+= -DSQLITE_ENABLE_STMTVTAB
# SQLITE_RTREE_INT_ONLY
#
@@ -415,7 +421,7 @@ CFLAGS+= -DSQLITE_ENABLE_STMTVTAB
#
# https://www.sqlite.org/unlock_notify.html
# https://www.sqlite.org/compile.html#enable_unlock_notify
-CFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY
+CFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY
# SQLITE_INTROSPECTION_PRAGMAS
#
@@ -504,20 +510,26 @@ CFLAGS+= -DSQLITE_ENABLE_UNLOCK_NOTIFY
# on those platforms.)
#
# https://www.sqlite.org/compile.html#omit_load_extension
-CONFIGURE_ARGS+= --enable-dynamic-extensions
+CONFIGURE_ARGS+= --enable-load-extension
# Uses dlopen and friends but doesn't use -ldl on Linux.
# See http://www.sqlite.org/cvstrac/tktview?tn=3555
-LIBS+= ${BUILDLINK_LDADD.dl}
+LIBS+= ${BUILDLINK_LDADD.dl}
# Solaris needs -lrt for nanosleep, PR pkg/58714
-LIBS.SunOS+= -lrt
+LIBS.SunOS+= -lrt
.if ${OS_VARIANT} == "SCOOSR5"
LDFLAGS.SCO_SV+= -lpthread
.endif
+.if ${OPSYS} == "Darwin"
+post-install:
+ install_name_tool -id ${PREFIX}/lib/libsqlite3.dylib \
+ ${DESTDIR}${PREFIX}/lib/libsqlite3.dylib
+.endif
+
+.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/readline.buildlink3.mk"
-.include "../../mk/dlopen.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/databases/sqlite3/Makefile.common
diff -u pkgsrc/databases/sqlite3/Makefile.common:1.116 pkgsrc/databases/sqlite3/Makefile.common:1.117
--- pkgsrc/databases/sqlite3/Makefile.common:1.116 Wed Jan 15 15:23:41 2025
+++ pkgsrc/databases/sqlite3/Makefile.common Sun Mar 30 06:18:06 2025
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile.common,v 1.116 2025/01/15 15:23:41 adam Exp $
+# $NetBSD: Makefile.common,v 1.117 2025/03/30 06:18:06 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= 3480000
-SQLITE3_VERSION= 3.48.0
+SQLITE3_DISTVERSION= 3490100
+SQLITE3_VERSION= 3.49.1
MASTER_SITES= http://www.sqlite.org/2025/
MASTER_SITES+= http://www.hwaci.com/sw/sqlite/2025/
Index: pkgsrc/databases/sqlite3/PLIST
diff -u pkgsrc/databases/sqlite3/PLIST:1.6 pkgsrc/databases/sqlite3/PLIST:1.7
--- pkgsrc/databases/sqlite3/PLIST:1.6 Wed Aug 2 16:14:58 2017
+++ pkgsrc/databases/sqlite3/PLIST Sun Mar 30 06:18:06 2025
@@ -1,7 +1,10 @@
-@comment $NetBSD: PLIST,v 1.6 2017/08/02 16:14:58 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2025/03/30 06:18:06 adam Exp $
bin/sqlite3
include/sqlite3.h
include/sqlite3ext.h
-lib/libsqlite3.la
+lib/libsqlite3.a
+lib/libsqlite3.so.0
+lib/libsqlite3.so.${PKGVERSION}
+lib/libsqlite3.so
lib/pkgconfig/sqlite3.pc
man/man1/sqlite3.1
Index: pkgsrc/databases/sqlite3/distinfo
diff -u pkgsrc/databases/sqlite3/distinfo:1.210 pkgsrc/databases/sqlite3/distinfo:1.211
--- pkgsrc/databases/sqlite3/distinfo:1.210 Wed Jan 15 15:23:41 2025
+++ pkgsrc/databases/sqlite3/distinfo Sun Mar 30 06:18:06 2025
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.210 2025/01/15 15:23:41 adam Exp $
+$NetBSD: distinfo,v 1.211 2025/03/30 06:18:06 adam Exp $
-BLAKE2s (sqlite-autoconf-3480000.tar.gz) = 3b9e59650110335988510ae1cc310d00fe1c64f21ac177c6ece6fa023920c0d4
-SHA512 (sqlite-autoconf-3480000.tar.gz) = c607cbc58cdef6910a87ddb6ae8aeabdab2769d6cc33aad04f31fc428ecc5a8eaf19f5d3a3590591aae2c920b106a684891d38efef712f91631602245f6f4d3d
-Size (sqlite-autoconf-3480000.tar.gz) = 3337615 bytes
-SHA1 (patch-configure) = c0aa83bddc20d090b3cd2fd840ac69031f4396e4
+BLAKE2s (sqlite-autoconf-3490100.tar.gz) = 7aca8ebf5fa0d0c3fcc9182013969e923d67f7bc7bf457d0813061ff418fb3ba
+SHA512 (sqlite-autoconf-3490100.tar.gz) = ace92f20fb13a28a8be0eb3560ebf79e71e882611108179b45abba6e77ec0964d75a96c1e187c0e5f883b83896fd44074ef244e1f589288b6354bc9db85223ca
+Size (sqlite-autoconf-3490100.tar.gz) = 3226385 bytes
Index: pkgsrc/databases/sqlite3/options.mk
diff -u pkgsrc/databases/sqlite3/options.mk:1.9 pkgsrc/databases/sqlite3/options.mk:1.10
--- pkgsrc/databases/sqlite3/options.mk:1.9 Thu Dec 26 22:04:28 2024
+++ pkgsrc/databases/sqlite3/options.mk Sun Mar 30 06:18:06 2025
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2024/12/26 22:04:28 riastradh Exp $
+# $NetBSD: options.mk,v 1.10 2025/03/30 06:18:06 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.sqlite3
PKG_SUPPORTED_OPTIONS= icu
@@ -6,7 +6,7 @@ PKG_SUPPORTED_OPTIONS= icu
.include "../../mk/bsd.options.mk"
.if ${PKG_OPTIONS:Micu}
-CFLAGS+= -DSQLITE_ENABLE_ICU=1
-LDFLAGS+= -licui18n -licuuc -licudata
+CONFIGURE_ARGS+= --icu-collations
+CONFIGURE_ARGS+= --with-icu-ldflags='-licui18n -licuuc -licudata'
.include "../../textproc/icu/buildlink3.mk"
.endif
Index: pkgsrc/databases/sqlite3-docs/PLIST
diff -u pkgsrc/databases/sqlite3-docs/PLIST:1.139 pkgsrc/databases/sqlite3-docs/PLIST:1.140
--- pkgsrc/databases/sqlite3-docs/PLIST:1.139 Wed Jan 15 15:23:41 2025
+++ pkgsrc/databases/sqlite3-docs/PLIST Sun Mar 30 06:18:07 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.139 2025/01/15 15:23:41 adam Exp $
+@comment $NetBSD: PLIST,v 1.140 2025/03/30 06:18:07 adam Exp $
share/doc/sqlite3/34to35.html
share/doc/sqlite3/35to36.html
share/doc/sqlite3/about.html
@@ -348,9 +348,7 @@ share/doc/sqlite3/images/btreemodule_ove
share/doc/sqlite3/images/chart.wiki
share/doc/sqlite3/images/chw.jpg
share/doc/sqlite3/images/cpu-usage.jpg
-share/doc/sqlite3/images/dan1.jpg
share/doc/sqlite3/images/direct1b.gif
-share/doc/sqlite3/images/drh1.jpg
share/doc/sqlite3/images/faster-read-blobapi.jpg
share/doc/sqlite3/images/faster-read-mmap.jpg
share/doc/sqlite3/images/faster-read-sql.jpg
@@ -433,7 +431,6 @@ share/doc/sqlite3/images/fullscanb.gif
share/doc/sqlite3/images/harmony.gif
share/doc/sqlite3/images/index-ex1-x-b.gif
share/doc/sqlite3/images/indirect1b1.gif
-share/doc/sqlite3/images/joe1.jpg
share/doc/sqlite3/images/loc.jpg
share/doc/sqlite3/images/ne.gif
share/doc/sqlite3/images/ne.png
@@ -704,6 +701,8 @@ share/doc/sqlite3/releaselog/3_47_0.html
share/doc/sqlite3/releaselog/3_47_1.html
share/doc/sqlite3/releaselog/3_47_2.html
share/doc/sqlite3/releaselog/3_48_0.html
+share/doc/sqlite3/releaselog/3_49_0.html
+share/doc/sqlite3/releaselog/3_49_1.html
share/doc/sqlite3/releaselog/3_4_0.html
share/doc/sqlite3/releaselog/3_4_1.html
share/doc/sqlite3/releaselog/3_4_2.html
Index: pkgsrc/databases/sqlite3-docs/distinfo
diff -u pkgsrc/databases/sqlite3-docs/distinfo:1.142 pkgsrc/databases/sqlite3-docs/distinfo:1.143
--- pkgsrc/databases/sqlite3-docs/distinfo:1.142 Wed Jan 15 15:23:41 2025
+++ pkgsrc/databases/sqlite3-docs/distinfo Sun Mar 30 06:18:07 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.142 2025/01/15 15:23:41 adam Exp $
+$NetBSD: distinfo,v 1.143 2025/03/30 06:18:07 adam Exp $
-BLAKE2s (sqlite-doc-3480000.zip) = aa43d4e9a7a86da77229556b8f45632208d50a35413b05c3ca4a98e972a09eab
-SHA512 (sqlite-doc-3480000.zip) = d7cad0da8598a3abcacf0e05ba4e285ad1d790691e571e431f920abf1bf27c5a416408ff60ff051b01a65662c0e60bb63b9ba73872851fe63f379e834c5a0f04
-Size (sqlite-doc-3480000.zip) = 11391112 bytes
+BLAKE2s (sqlite-doc-3490100.zip) = 075317d53d5416273e6b4461204133f48b1dd2db9f3c7e5a8b86622b4b53ab16
+SHA512 (sqlite-doc-3490100.zip) = 0eb6af0483bca7f6efd6baf00210adcca1d23ea5b474728aa96614a93a868ec6f9257d9b5f29c452fed5323c64fc180ee3845695ddbbcd7836dac69aecdfc833
+Size (sqlite-doc-3490100.zip) = 11333315 bytes
Index: pkgsrc/databases/sqlite3-tcl/distinfo
diff -u pkgsrc/databases/sqlite3-tcl/distinfo:1.156 pkgsrc/databases/sqlite3-tcl/distinfo:1.157
--- pkgsrc/databases/sqlite3-tcl/distinfo:1.156 Wed Jan 15 15:23:41 2025
+++ pkgsrc/databases/sqlite3-tcl/distinfo Sun Mar 30 06:18:07 2025
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.156 2025/01/15 15:23:41 adam Exp $
+$NetBSD: distinfo,v 1.157 2025/03/30 06:18:07 adam Exp $
-BLAKE2s (sqlite-autoconf-3480000.tar.gz) = 3b9e59650110335988510ae1cc310d00fe1c64f21ac177c6ece6fa023920c0d4
-SHA512 (sqlite-autoconf-3480000.tar.gz) = c607cbc58cdef6910a87ddb6ae8aeabdab2769d6cc33aad04f31fc428ecc5a8eaf19f5d3a3590591aae2c920b106a684891d38efef712f91631602245f6f4d3d
-Size (sqlite-autoconf-3480000.tar.gz) = 3337615 bytes
+BLAKE2s (sqlite-autoconf-3490100.tar.gz) = 7aca8ebf5fa0d0c3fcc9182013969e923d67f7bc7bf457d0813061ff418fb3ba
+SHA512 (sqlite-autoconf-3490100.tar.gz) = ace92f20fb13a28a8be0eb3560ebf79e71e882611108179b45abba6e77ec0964d75a96c1e187c0e5f883b83896fd44074ef244e1f589288b6354bc9db85223ca
+Size (sqlite-autoconf-3490100.tar.gz) = 3226385 bytes
SHA1 (patch-Makefile.in) = 8f68039c9169bc69eb0da4bd0f910c7584aed2b5
SHA1 (patch-configure) = 31f4cdc68c30daa6fdc5fa2e0dab217016380136
Index: pkgsrc/devel/lemon/distinfo
diff -u pkgsrc/devel/lemon/distinfo:1.83 pkgsrc/devel/lemon/distinfo:1.84
--- pkgsrc/devel/lemon/distinfo:1.83 Wed Jan 15 15:23:42 2025
+++ pkgsrc/devel/lemon/distinfo Sun Mar 30 06:18:07 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.83 2025/01/15 15:23:42 adam Exp $
+$NetBSD: distinfo,v 1.84 2025/03/30 06:18:07 adam Exp $
-BLAKE2s (sqlite-src-3480000.zip) = e0cca205b9a6f5eca962781de2dcf603fe20acd20db05142296254b31d91da31
-SHA512 (sqlite-src-3480000.zip) = 854832e9a5dc486a81934e36c1f1678ce50db55b8bd3c48ed2d569fb0bb7ce23d4b490c0a0f699274ff11ddf2000db4a620e064557084c54b217e7fdd836f4e1
-Size (sqlite-src-3480000.zip) = 14350897 bytes
+BLAKE2s (sqlite-src-3490100.zip) = 9eec3fef2bbe6fa0c550303b537e277e93ee345adbf97164dd5b0b3d616a376f
+SHA512 (sqlite-src-3490100.zip) = 24c81cee52e5655f4e9d6496a366e4787352b5108ea27eb5ce3dc07ef3e1975205bb250584b0758fb2832add84ca922b09a4d925e0dc2f55dd3613a58b414ec3
+Size (sqlite-src-3490100.zip) = 14372402 bytes
Home |
Main Index |
Thread Index |
Old Index